diff --git a/OptionsDialog.cpp b/OptionsDialog.cpp index 45d6942..d8d0dd3 100644 --- a/OptionsDialog.cpp +++ b/OptionsDialog.cpp @@ -299,31 +299,16 @@ void OptionsDialog::setupRadioButtons() void OptionsDialog::setupInterfaceSettings() { settings->beginGroup("Startup"); - bool alwaysUseMessageFont = settings->value("AlwaysUseMessageFont", false).toBool(); - ui->cbAlwaysUseMessageFont->setChecked(alwaysUseMessageFont); -#ifdef Q_OS_WIN - if (QSysInfo::windowsVersion() >= 0x0080) - { - ui->gbFont->setVisible(false); - ui->cbAlwaysUseMessageFont->setVisible(false); - } -#else - ui->gbFont->setVisible(false); - ui->cbAlwaysUseMessageFont->setVisible(false); -#endif - QString currentStyle = QApplication::style()->objectName(); - QString appStyle = settings->value("AppStyle", currentStyle).toString(); + const QString currentStyle = QApplication::style()->objectName(); + const QString appStyle = settings->value("AppStyle", currentStyle).toString(); bool customStyle = settings->value("CustomStyle", false).toBool(); const QStringList availableStyles = QStyleFactory::keys(); ui->cbStyleList->addItems(availableStyles); - if (availableStyles.contains(appStyle, Qt::CaseInsensitive)) - { + if (availableStyles.contains(appStyle, Qt::CaseInsensitive)) { // use 'for' for select to be sure it's case insensitive int currentIndex = 0; - for (QString currentStyleFF : availableStyles) - { - if (currentStyleFF.toLower() == appStyle.toLower()) - { + for (const QString ¤tStyleFF : availableStyles) { + if (currentStyleFF.toLower() == appStyle.toLower()) { ui->cbStyleList->setCurrentIndex(currentIndex); } currentIndex++; @@ -331,23 +316,24 @@ void OptionsDialog::setupInterfaceSettings() } else { - if (availableStyles.contains(currentStyle, Qt::CaseInsensitive)) - { + if (availableStyles.contains(currentStyle, Qt::CaseInsensitive)) { int currentIndex = 0; - for (QString currentStyleFF : availableStyles) - { - if (currentStyleFF.toLower() == currentStyle.toLower()) - { + for (const QString ¤tStyleFF : availableStyles) { + if (currentStyleFF.toLower() == currentStyle.toLower()) { ui->cbStyleList->setCurrentIndex(currentIndex); } currentIndex++; } } } - if (customStyle) - { - ui->cbDefaultStyle->setChecked(false); - } + ui->cbDefaultStyle->setChecked(!customStyle); + ui->cbStyleList->setEnabled(customStyle); + const QFont currentFont = QApplication::font(); + const QFont appFont = qvariant_cast(settings->value("AppFont", currentFont)); + bool customFont = settings->value("CustomFont", false).toBool(); + ui->cbDefaultFont->setChecked(!customFont); + ui->cbFont->setEnabled(customFont); + ui->cbFont->setCurrentFont(appFont); settings->endGroup(); } @@ -426,18 +412,25 @@ void OptionsDialog::applySettings() bool defaultStyle = ui->cbDefaultStyle->isChecked(); settings->beginGroup("Startup"); - if (!defaultStyle) - { + if (!defaultStyle) { QString newStyle = ui->cbStyleList->currentText(); settings->setValue("CustomStyle", true); settings->setValue("AppStyle", newStyle); QApplication::setStyle(QStyleFactory::create(newStyle)); } - else - { + else { settings->setValue("CustomStyle", false); } - settings->setValue("AlwaysUseMessageFont", ui->cbAlwaysUseMessageFont->isChecked()); + bool defaultFont = ui->cbDefaultFont->isChecked(); + if (!defaultFont) { + QFont newFont = ui->cbFont->currentFont(); + settings->setValue("CustomFont", true); + settings->setValue("AppFont", newFont); + QApplication::setFont(newFont); + } + else { + settings->setValue("CustomFont", false); + } settings->endGroup(); #ifdef GTA5SYNC_TELEMETRY @@ -753,6 +746,11 @@ void OptionsDialog::on_cbDefaultStyle_toggled(bool checked) ui->cbStyleList->setDisabled(checked); } +void OptionsDialog::on_cbDefaultFont_toggled(bool checked) +{ + ui->cbFont->setDisabled(checked); +} + void OptionsDialog::on_cmdCopyStatsID_clicked() { #ifdef GTA5SYNC_TELEMETRY diff --git a/OptionsDialog.h b/OptionsDialog.h index aacf1af..c2cb0c2 100644 --- a/OptionsDialog.h +++ b/OptionsDialog.h @@ -47,6 +47,7 @@ private slots: void on_cbIgnoreAspectRatio_toggled(bool checked); void on_cmdExploreFolder_clicked(); void on_cbDefaultStyle_toggled(bool checked); + void on_cbDefaultFont_toggled(bool checked); void on_cmdCopyStatsID_clicked(); signals: diff --git a/OptionsDialog.ui b/OptionsDialog.ui index 5eca565..2fbe6a2 100644 --- a/OptionsDialog.ui +++ b/OptionsDialog.ui @@ -7,7 +7,7 @@ 0 0 435 - 474 + 524 @@ -20,7 +20,7 @@ - 0 + 5 @@ -690,12 +690,39 @@ - + - Always use Message Font (Windows 2003 and earlier) + Use Default Font (Restart) + + + true + + + + + + Font: + + + + + + + false + + + + 0 + 0 + + + + + + diff --git a/main.cpp b/main.cpp index 32e5de8..c6d95ac 100644 --- a/main.cpp +++ b/main.cpp @@ -96,26 +96,27 @@ int main(int argc, char *argv[]) bool isFirstStart = settings.value("IsFirstStart", true).toBool(); bool customStyle = settings.value("CustomStyle", false).toBool(); - QString appStyle = settings.value("AppStyle", "Default").toString(); - - if (customStyle) - { - if (QStyleFactory::keys().contains(appStyle, Qt::CaseInsensitive)) - { + if (customStyle) { + const QString appStyle = settings.value("AppStyle", "Default").toString(); + if (QStyleFactory::keys().contains(appStyle, Qt::CaseInsensitive)) { a.setStyle(QStyleFactory::create(appStyle)); } } #ifdef Q_OS_WIN #if QT_VERSION >= 0x050400 - bool alwaysUseMessageFont = settings.value("AlwaysUseMessageFont", false).toBool(); - if (QSysInfo::windowsVersion() >= 0x0080 || alwaysUseMessageFont) - { + if (QSysInfo::windowsVersion() >= 0x0080) { a.setFont(QApplication::font("QMenu")); } #endif #endif + bool customFont = settings.value("CustomFont", false).toBool(); + if (customFont) { + const QFont appFont = qvariant_cast(settings.value("AppFont", a.font())); + a.setFont(appFont); + } + QStringList applicationArgs = a.arguments(); QString selectedAction; QString arg1; diff --git a/res/gta5sync.ts b/res/gta5sync.ts index a466866..f9609b1 100644 --- a/res/gta5sync.ts +++ b/res/gta5sync.ts @@ -742,26 +742,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 - - - - - - - - + + + + + + + + Language: %1 @@ -782,7 +782,7 @@ Y: %2 - + Participate in %1 User Statistics @@ -818,8 +818,8 @@ Y: %2 - - + + Participation ID: %1 @@ -873,27 +873,32 @@ Y: %2 - Always use Message Font (Windows 2003 and earlier) + Use Default Font (Restart) - + + Font: + + + + Apply changes - + &OK OK, Cancel, Apply - + Discard changes - + &Cancel OK, Cancel, Apply @@ -932,62 +937,62 @@ Y: %2 - + %1 %1 - + The new Custom Folder will initialise after you restart %1. - + No Profile No Profile, as default - - - + + + Profile: %1 - + View %1 User Statistics Online - + Not registered - - - - + + + + Yes - - + + No - - + + OS defined - - + + Steam defined @@ -1659,7 +1664,7 @@ Press 1 for Default View QApplication - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? @@ -2236,22 +2241,22 @@ Press 1 for Default View TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? - + %1 User Statistics - + Yes, I want include personal usage data. - + &OK @@ -2391,7 +2396,7 @@ Press 1 for Default View - + Select GTA V Folder... diff --git a/res/gta5sync_de.qm b/res/gta5sync_de.qm index 3add06c..bc43bfa 100644 Binary files a/res/gta5sync_de.qm and b/res/gta5sync_de.qm differ diff --git a/res/gta5sync_de.ts b/res/gta5sync_de.ts index ff17787..d46e6f5 100644 --- a/res/gta5sync_de.ts +++ b/res/gta5sync_de.ts @@ -754,26 +754,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 Gefunden: %1 - - - - - - - - + + + + + + + + Language: %1 Sprache: %1 @@ -794,7 +794,7 @@ Y: %2 - + Participate in %1 User Statistics An %1 Benutzerstatistik teilnehmen @@ -825,8 +825,8 @@ Y: %2 - - + + Participation ID: %1 Teilnahme ID: %1 @@ -861,9 +861,8 @@ Y: %2 Schrift - Always use Message Font (Windows 2003 and earlier) - Immer Nachrichtenschrift nutzen (Windows 2003 und früher) + Immer Nachrichtenschrift nutzen (Windows 2003 und früher) @@ -889,29 +888,39 @@ Y: %2 Aktuell: %1 - + + Use Default Font (Restart) + Benutze Standard Schrift (Neustart) + + + + Font: + Schrift: + + + Apply changes Änderungen übernehmen - + &OK OK, Cancel, Apply &OK - + Discard changes Änderungen verwerfen - + &Cancel OK, Cancel, Apply Abbre&chen - + %1 %1 %1 @@ -950,56 +959,56 @@ Y: %2 %1 (Sprachenpriorität) - + The new Custom Folder will initialise after you restart %1. Der eigene Ordner wird initialisiert sobald du %1 neugestartet hast. - + View %1 User Statistics Online %1 Benutzerstatistik Online ansehen - + Not registered Nicht registriert - - - - + + + + Yes Ja - - + + No Nein - - + + OS defined OS-defined - - + + Steam defined Steam-definiert - + No Profile No Profile, as default Kein Profil - - - + + + Profile: %1 Profil: %1 @@ -1682,7 +1691,7 @@ Drücke 1 für Standardmodus QApplication - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? <h4>Willkommen zu %1!</h4>Möchtest du %1 einstellen bevor du es nutzt? @@ -2261,22 +2270,22 @@ Drücke 1 für Standardmodus TelemetryDialog - + %1 User Statistics %1 Benutzerstatistik - + You want help %1 to improve in the future by including personal usage data in your submission? Sollen bei Einreichungen Persönliche Nutzungsdaten einbezogen werden um %1 in der Zukunft zu unterstützen? - + Yes, I want include personal usage data. Ja, ich möchte Persönliche Nutzungsdaten einbeziehen. - + &OK &OK @@ -2435,7 +2444,7 @@ Drücke 1 für Standardmodus - + Select GTA V Folder... diff --git a/res/gta5sync_en_US.ts b/res/gta5sync_en_US.ts index a1a81c3..caee784 100644 --- a/res/gta5sync_en_US.ts +++ b/res/gta5sync_en_US.ts @@ -742,26 +742,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 - - - - - - - - + + + + + + + + Language: %1 @@ -777,7 +777,7 @@ Y: %2 - + Participate in %1 User Statistics @@ -798,8 +798,8 @@ Y: %2 - - + + Participation ID: %1 @@ -828,11 +828,6 @@ Y: %2 Font - - - Always use Message Font (Windows 2003 and earlier) - - Interface @@ -877,23 +872,33 @@ Y: %2 - + + Use Default Font (Restart) + + + + + Font: + + + + Apply changes - + &OK OK, Cancel, Apply - + Discard changes - + &Cancel OK, Cancel, Apply @@ -932,62 +937,62 @@ Y: %2 - + %1 %1 - + The new Custom Folder will initialise after you restart %1. The new Custom Folder will initialize after you restart %1. - + No Profile No Profile, as default - - - + + + Profile: %1 - + View %1 User Statistics Online - + Not registered - - - - + + + + Yes - - + + No - - + + OS defined - - + + Steam defined @@ -1659,7 +1664,7 @@ Press 1 for Default View QApplication - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? @@ -2236,22 +2241,22 @@ Press 1 for Default View TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? - + %1 User Statistics - + Yes, I want include personal usage data. - + &OK @@ -2386,7 +2391,7 @@ Press 1 for Default View - + Select GTA V Folder... diff --git a/res/gta5sync_fr.qm b/res/gta5sync_fr.qm index fad75db..f059bff 100644 Binary files a/res/gta5sync_fr.qm and b/res/gta5sync_fr.qm differ diff --git a/res/gta5sync_fr.ts b/res/gta5sync_fr.ts index 50fc55d..ba36413 100644 --- a/res/gta5sync_fr.ts +++ b/res/gta5sync_fr.ts @@ -754,26 +754,26 @@ Y : %2 - - - - - - + + + + + + Found: %1 Trouvé : %1 - - - - - - - - + + + + + + + + Language: %1 Langue : %1 @@ -794,7 +794,7 @@ Y : %2 - + Participate in %1 User Statistics Participer aux statistiques d'usage %1 @@ -825,8 +825,8 @@ Y : %2 - - + + Participation ID: %1 ID de participation : %1 @@ -856,9 +856,8 @@ Y : %2 Police - Always use Message Font (Windows 2003 and earlier) - Toujours utiliser la police Message (Windows 2003 et précédent) + Toujours utiliser la police Message (Windows 2003 et précédent) @@ -889,23 +888,33 @@ Y : %2 Utiliser le Style par Défaut (rédémarrage requis) - + + Use Default Font (Restart) + + + + + Font: + Police: + + + Apply changes Appliquer les changements - + &OK OK, Cancel, Apply &OK - + Discard changes Annuler les changements - + &Cancel OK, Cancel, Apply &Annuler @@ -944,62 +953,62 @@ Y : %2 %1 (Priorité de la langue) - + %1 %1 %1 - + The new Custom Folder will initialise after you restart %1. Le nouveau Dossier personnalisé sera initialisé au redémarrage de %1. - + View %1 User Statistics Online Voir les statistiques d'usage %1 en ligne - + Not registered Pas enregistré - - - - + + + + Yes Oui - - + + No Non - - + + OS defined Défini par le système d'exploitation - - + + Steam defined Défini par Steam - + No Profile No Profile, as default Aucun profil - - - + + + Profile: %1 Profil : %1 @@ -1691,7 +1700,7 @@ Appuyer sur 1 pour le mode par défaut Police sélectionnée : %1 - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? <h4>Bienvenue sur %1!</h4>Voulez-vous configurer %1 avant de l'utiliser t? @@ -2272,22 +2281,22 @@ Appuyer sur 1 pour le mode par défaut TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? Voulez-vous aider au développement de %1 en transmettant vos données d'utilisation ? - + %1 User Statistics Statistiques utilisateurs %1 - + Yes, I want include personal usage data. Oui, je veux partager mes données d'utilisation. - + &OK &OK @@ -2404,7 +2413,7 @@ Appuyer sur 1 pour le mode par défaut - + Select GTA V Folder... diff --git a/res/gta5sync_ko.qm b/res/gta5sync_ko.qm index 45d0e62..5e8b7f4 100644 Binary files a/res/gta5sync_ko.qm and b/res/gta5sync_ko.qm differ diff --git a/res/gta5sync_ko.ts b/res/gta5sync_ko.ts index afbb94e..861cd2e 100644 --- a/res/gta5sync_ko.ts +++ b/res/gta5sync_ko.ts @@ -761,26 +761,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 찾음: %1 - - - - - - - - + + + + + + + + Language: %1 언어: %1 @@ -801,7 +801,7 @@ Y: %2 - + Participate in %1 User Statistics 사용자 통계 참가 %1 @@ -837,8 +837,8 @@ Y: %2 - - + + Participation ID: %1 참여 아이디: %1 @@ -878,7 +878,7 @@ Y: %2 Use Default Style (Restart) - 기본 스타일을 사용합니다.(다시 시작 필요) + 기본 스타일을 사용합니다 (재시작 필요) @@ -892,28 +892,37 @@ Y: %2 - Always use Message Font (Windows 2003 and earlier) - 항상 메시지 글꼴을 사용합니다.(Windows 2003 및 이전 버전) + Use Default Font (Restart) + 기본 폰트 사용 (재시작 필요) - + + Font: + 폰트: + + + Always use Message Font (Windows 2003 and earlier) + 항상 메시지 글꼴을 사용합니다.(Windows 2003 및 이전 버전) + + + Apply changes 변경 사항 적용 - + &OK OK, Cancel, Apply 확인, 취소, 적용 확인(&O) - + Discard changes 변경 사항 취소 - + &Cancel OK, Cancel, Apply 확인, 취소, 적용 @@ -956,64 +965,64 @@ Y: %2 %1 (인터페이스와 가까운 언어) - + %1 %1 %1 %1 - + The new Custom Folder will initialise after you restart %1. 다시 시작한 후 새 사용자 지정 폴더가 초기화됩니다. %1. - + No Profile No Profile, as default 프로필 없음 (기본값) 프로필 없음 - - - + + + Profile: %1 프로필: %1 - + View %1 User Statistics Online 온라인 %1 사용자 통계 보기 - + Not registered 등록되지 않았습니다. - - - - + + + + Yes - - + + No 아니요 - - + + OS defined OS 정의 - - + + Steam defined 스팀 정의 @@ -1710,7 +1719,7 @@ Press 1 for Default View 선택된 폰트: %1 - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? <h4>%1에 오신 것을 환영합니다!</h4>%1을 사용하기 전에 설정 창을 여시겠습니까? @@ -2294,22 +2303,22 @@ Press 1 for Default View TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? 개인 사용 데이터를 제출에 포함시켜 %1이(가) 개선되기를 원합니까? - + %1 User Statistics %1 사용자 통계 - + Yes, I want include personal usage data. 예, 개인 사용 데이터를 포함시키고 싶습니다. - + &OK 확인(&O) @@ -2450,7 +2459,7 @@ Press 1 for Default View - + Select GTA V Folder... diff --git a/res/gta5sync_ru.qm b/res/gta5sync_ru.qm index 8f84bc6..ad6f3d1 100644 Binary files a/res/gta5sync_ru.qm and b/res/gta5sync_ru.qm differ diff --git a/res/gta5sync_ru.ts b/res/gta5sync_ru.ts index e2e9c67..3a61e34 100644 --- a/res/gta5sync_ru.ts +++ b/res/gta5sync_ru.ts @@ -761,26 +761,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 Найдено: %1 - - - - - - - - + + + + + + + + Language: %1 Язык: %1 @@ -801,7 +801,7 @@ Y: %2 - + Participate in %1 User Statistics Участвовать в пользовательской статистике %1 @@ -834,8 +834,8 @@ Y: %2 - - + + Participation ID: %1 Номер участника: %1 @@ -867,9 +867,8 @@ Y: %2 Шрифт - Always use Message Font (Windows 2003 and earlier) - Всегда использовать шрифт сообщений (Windows 2003 и ранние) + Всегда использовать шрифт сообщений (Windows 2003 и ранние) @@ -900,23 +899,33 @@ Y: %2 Использовать стандартный стиль (Перезапуск) - + + Use Default Font (Restart) + + + + + Font: + Шрифт: + + + Apply changes Применить изменения - + &OK OK, Cancel, Apply &ОК - + Discard changes Отвергнуть изменения - + &Cancel OK, Cancel, Apply От&мена @@ -955,62 +964,62 @@ Y: %2 %1 (Приоритетный язык) - + %1 %1 %1 - + The new Custom Folder will initialise after you restart %1. Другая папка будет загружена после перезапуска %1. - + View %1 User Statistics Online Посмотреть пользовательскую статистику %1 онлайн - + Not registered Не зарегистрирован - - - - + + + + Yes Да - - + + No Нет - - + + OS defined Настройка от ОС - - + + Steam defined Настройка от Steam - + No Profile No Profile, as default Нет профиля - - - + + + Profile: %1 Профиль: %1 @@ -1697,7 +1706,7 @@ Press 1 for Default View QApplication - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? <h4>Добро пожаловать в %1!</h4>Хочешь изменить настройки %1 перед использованием? @@ -2276,22 +2285,22 @@ Press 1 for Default View TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? Разрешишь нам собирать статистику о пользовании тобой %1? Это поможет нам в разработке. - + %1 User Statistics %1 Пользовательская статистика - + Yes, I want include personal usage data. Да, передавать данные о пользовании программой. - + &OK &ОК @@ -2450,7 +2459,7 @@ Press 1 for Default View - + Select GTA V Folder... diff --git a/res/gta5sync_uk.qm b/res/gta5sync_uk.qm index a4c2fb6..0446502 100644 Binary files a/res/gta5sync_uk.qm and b/res/gta5sync_uk.qm differ diff --git a/res/gta5sync_uk.ts b/res/gta5sync_uk.ts index 46a8aa2..aa1dc7e 100644 --- a/res/gta5sync_uk.ts +++ b/res/gta5sync_uk.ts @@ -757,26 +757,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 Знайдено:%1 - - - - - - - - + + + + + + + + Language: %1 Мова: %1 @@ -798,7 +798,7 @@ Y: %2 - + Participate in %1 User Statistics Опитування %1 про устаткування ПК @@ -834,8 +834,8 @@ Y: %2 - - + + Participation ID: %1 ID учасника : %1 @@ -889,27 +889,36 @@ Y: %2 - Always use Message Font (Windows 2003 and earlier) - Завжди використовуйте шрифт повідомлень (Windows 2003 і раніше) + Use Default Font (Restart) + - + + Font: + Шрифт: + + + Always use Message Font (Windows 2003 and earlier) + Завжди використовуйте шрифт повідомлень (Windows 2003 і раніше) + + + Apply changes Застосувати зміни - + &OK OK, Cancel, Apply &OK - + Discard changes Скасувати зміни - + &Cancel OK, Cancel, Apply &Скасувати @@ -948,62 +957,62 @@ Y: %2 %1 (пріоритет мови) - + %1 %1 %1 - + The new Custom Folder will initialise after you restart %1. Нова користувацька папка буде ініціалізована після перезапуску %1. - + No Profile No Profile, as default Жодного - - - + + + Profile: %1 Профіль: %1 - + View %1 User Statistics Online Переглянути користувацьку статистику %1 онлайн - + Not registered Не зареєстрований - - - - + + + + Yes Так - - + + No Ні - - + + OS defined Визначається ОС - - + + Steam defined Визначається Steam @@ -1695,7 +1704,7 @@ Press 1 for Default View Вибраний шрифт:%1 - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? <h4>Ласкаво просимо до %1!</h4>Ви хочете налаштувати %1 перед використанням? @@ -2274,22 +2283,22 @@ Press 1 for Default View TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? Ви хочете допомогти %1 покращитись у майбутньому, включивши дані особистого користування? - + %1 User Statistics %1 Статистика користувачів - + Yes, I want include personal usage data. Так, я хочу включити дані особистого користування. - + &OK &OK &OK @@ -2430,7 +2439,7 @@ Press 1 for Default View - + Select GTA V Folder... diff --git a/res/gta5sync_zh_TW.qm b/res/gta5sync_zh_TW.qm index 02f5861..9d3e618 100644 Binary files a/res/gta5sync_zh_TW.qm and b/res/gta5sync_zh_TW.qm differ diff --git a/res/gta5sync_zh_TW.ts b/res/gta5sync_zh_TW.ts index 8c095fa..90bfffa 100644 --- a/res/gta5sync_zh_TW.ts +++ b/res/gta5sync_zh_TW.ts @@ -752,26 +752,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 找到: %1 - - - - - - - - + + + + + + + + Language: %1 語言: %1 @@ -792,7 +792,7 @@ Y: %2 - + Participate in %1 User Statistics 參與 %1 使用者統計 @@ -828,8 +828,8 @@ Y: %2 - - + + Participation ID: %1 參與 ID: %1 @@ -883,27 +883,36 @@ Y: %2 - Always use Message Font (Windows 2003 and earlier) - 總是使用訊息字體 (Windows 2003 和更早版本) + Use Default Font (Restart) + - + + Font: + 字體: + + + Always use Message Font (Windows 2003 and earlier) + 總是使用訊息字體 (Windows 2003 和更早版本) + + + Apply changes 套用變更 - + &OK OK, Cancel, Apply 確定(&O) - + Discard changes 捨棄變更 - + &Cancel OK, Cancel, Apply 取消(&C) @@ -942,62 +951,62 @@ Y: %2 %1 (遊戲語言) - + %1 %1 %1 - + The new Custom Folder will initialise after you restart %1. 自訂資料夾將在 %1 重新啟動後初始化. - + No Profile No Profile, as default - - - + + + Profile: %1 設定檔: %1 - + View %1 User Statistics Online 檢視 %1 使用者統計資訊 - + Not registered 未註冊參與 - - - - + + + + Yes - - + + No - - + + OS defined 系統定義 - - + + Steam defined Steam 定義 @@ -1677,7 +1686,7 @@ Press 1 for Default View QApplication - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? <h4>歡迎使用 %1!</h4> 你想在開始前先設定 %1 嗎? @@ -2256,22 +2265,22 @@ Press 1 for Default View TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? 你希望通過收集資料來幫助改善 %1 嗎? - + %1 User Statistics %1 使用者統計 - + Yes, I want include personal usage data. 是的,我想幫忙. - + &OK 確定(&O) @@ -2411,7 +2420,7 @@ Press 1 for Default View - + Select GTA V Folder...