diff --git a/ImageEditorDialog.cpp b/ImageEditorDialog.cpp
index a4ab3eb..6ce6d84 100644
--- a/ImageEditorDialog.cpp
+++ b/ImageEditorDialog.cpp
@@ -37,6 +37,7 @@ ImageEditorDialog::ImageEditorDialog(SnapmaticPicture *picture, QString profileN
setWindowFlags(windowFlags()^Qt::WindowContextHelpButtonHint);
ui->setupUi(this);
+ ui->cmdClose->setDefault(true);
ui->cmdClose->setFocus();
// Set Icon for Close Button
diff --git a/JsonEditorDialog.cpp b/JsonEditorDialog.cpp
index 62c1636..ed89dd3 100644
--- a/JsonEditorDialog.cpp
+++ b/JsonEditorDialog.cpp
@@ -37,6 +37,7 @@ JsonEditorDialog::JsonEditorDialog(SnapmaticPicture *picture, QWidget *parent) :
setWindowFlags(windowFlags()^Qt::WindowContextHelpButtonHint^Qt::WindowMinMaxButtonsHint);
ui->setupUi(this);
+ ui->cmdClose->setDefault(true);
ui->cmdClose->setFocus();
// Set Icon for Close Button
diff --git a/OptionsDialog.cpp b/OptionsDialog.cpp
index be952e9..24b7a74 100644
--- a/OptionsDialog.cpp
+++ b/OptionsDialog.cpp
@@ -55,6 +55,7 @@ OptionsDialog::OptionsDialog(ProfileDatabase *profileDB, QWidget *parent) :
ui->setupUi(this);
ui->tabWidget->setCurrentIndex(0);
ui->labPicCustomRes->setVisible(false);
+ ui->cmdCancel->setDefault(true);
ui->cmdCancel->setFocus();
QRect desktopResolution = QApplication::desktop()->screenGeometry(this);
@@ -406,6 +407,7 @@ void OptionsDialog::applySettings()
#ifdef GTA5SYNC_TELEMETRY
settings->beginGroup("Telemetry");
settings->setValue("PushAppConf", ui->cbAppConfigStats->isChecked());
+ settings->setValue("PushUsageData", ui->cbUsageData->isChecked());
if (!Telemetry->isStateForced()) { settings->setValue("IsEnabled", ui->cbParticipateStats->isChecked()); }
settings->endGroup();
Telemetry->refresh();
@@ -549,17 +551,10 @@ void OptionsDialog::setupStatisticsSettings()
ui->cbParticipateStats->setText(tr("Participate in %1 User Statistics").arg(GTA5SYNC_APPSTR));
ui->labUserStats->setText(QString("%1").arg(tr("View %1 User Statistics Online").arg(GTA5SYNC_APPSTR), TelemetryClass::getWebURL().toString()));
- ui->gbUserFeedback->setVisible(false);
- // settings->beginGroup("Startup");
- // if (settings->value("IsFirstStart", true).toBool() == true)
- // {
- // ui->gbUserFeedback->setVisible(false);
- // }
- // settings->endGroup();
-
settings->beginGroup("Telemetry");
ui->cbParticipateStats->setChecked(Telemetry->isEnabled());
ui->cbAppConfigStats->setChecked(settings->value("PushAppConf", false).toBool());
+ ui->cbUsageData->setChecked(settings->value("PushUsageData", false).toBool());
settings->endGroup();
if (Telemetry->isStateForced())
@@ -640,25 +635,6 @@ void OptionsDialog::on_cbDefaultStyle_toggled(bool checked)
ui->cbStyleList->setDisabled(checked);
}
-void OptionsDialog::on_cmdUserFeedbackSend_clicked()
-{
-#ifdef GTA5SYNC_TELEMETRY
- if (ui->txtUserFeedback->toPlainText().length() < 1024 && ui->txtUserFeedback->toPlainText().length() >= 3)
- {
- QJsonDocument feedback;
- QJsonObject feedbackObject;
- feedbackObject["Message"] = ui->txtUserFeedback->toPlainText();
- feedback.setObject(feedbackObject);
- Telemetry->push(TelemetryCategory::UserFeedback, feedback);
- ui->txtUserFeedback->setPlainText(QString());
- }
- else
- {
- QMessageBox::information(this, tr("User Feedback"), tr("A feedback message have to between 3-1024 characters long"));
- }
-#endif
-}
-
void OptionsDialog::on_cmdCopyStatsID_clicked()
{
#ifdef GTA5SYNC_TELEMETRY
diff --git a/OptionsDialog.h b/OptionsDialog.h
index 4d35ca7..85ecfa1 100644
--- a/OptionsDialog.h
+++ b/OptionsDialog.h
@@ -47,7 +47,6 @@ private slots:
void on_cbIgnoreAspectRatio_toggled(bool checked);
void on_cmdExploreFolder_clicked();
void on_cbDefaultStyle_toggled(bool checked);
- void on_cmdUserFeedbackSend_clicked();
void on_cmdCopyStatsID_clicked();
signals:
diff --git a/OptionsDialog.ui b/OptionsDialog.ui
index 9f1b0fb..6b47ffe 100644
--- a/OptionsDialog.ui
+++ b/OptionsDialog.ui
@@ -420,11 +420,11 @@
-
+ Categories
-
+
@@ -458,6 +458,13 @@
+
+
+
+ Personal Usage Data
+
+
+
@@ -466,74 +473,32 @@
Other
-
+
-
-
-
- 0
- 0
-
-
-
- Participation ID: %1
-
-
- true
-
-
- Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse
-
-
-
-
-
-
- &Copy
-
-
- false
-
-
-
-
-
-
-
-
-
- User Feedback
-
-
-
-
-
-
-
+
-
+
+
+
+ 0
+ 0
+
+
- Limit: 1 message/day
+ Participation ID: %1
+
+
+ true
+
+
+ Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse
-
-
- Qt::Horizontal
-
-
-
- 0
- 0
-
-
-
-
-
-
+
- &Send
+ &Copyfalse
diff --git a/PlayerListDialog.cpp b/PlayerListDialog.cpp
index 337d61b..1e61647 100644
--- a/PlayerListDialog.cpp
+++ b/PlayerListDialog.cpp
@@ -35,6 +35,7 @@ PlayerListDialog::PlayerListDialog(QStringList players, ProfileDatabase *profile
listUpdated = false;
ui->setupUi(this);
+ ui->cmdCancel->setDefault(true);
ui->cmdCancel->setFocus();
// Set Icon for Apply Button
diff --git a/SnapmaticEditor.cpp b/SnapmaticEditor.cpp
index 18f481f..adef8e7 100644
--- a/SnapmaticEditor.cpp
+++ b/SnapmaticEditor.cpp
@@ -38,6 +38,7 @@ SnapmaticEditor::SnapmaticEditor(CrewDatabase *crewDB, ProfileDatabase *profileD
setWindowFlags(windowFlags()^Qt::WindowContextHelpButtonHint);
ui->setupUi(this);
+ ui->cmdCancel->setDefault(true);
ui->cmdCancel->setFocus();
// Set Icon for Apply Button
diff --git a/res/gta5sync_de.qm b/res/gta5sync_de.qm
index 75ed2bc..cc3ebac 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 c7ee247..903c521 100644
--- a/res/gta5sync_de.ts
+++ b/res/gta5sync_de.ts
@@ -176,9 +176,9 @@ Snapmatic Bilder und Spielständen
ImageEditorDialog
-
-
-
+
+
+ Snapmatic Image EditorSnapmatic Bild Editor
@@ -189,7 +189,7 @@ Snapmatic Bilder und Spielständen
-
+ Capacity: %1Kapazität: %1
@@ -214,17 +214,17 @@ Snapmatic Bilder und Spielständen
S&chließen
-
+ Patching of Snapmatic Image failed because of I/O ErrorPatchen von Snapmatic Bild fehlgeschlagen wegen I/O Fehler
-
+ Patching of Snapmatic Image failed because of Image ErrorPatchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler
-
+ Every taken Snapmatic have a different Capacity, a Snapmatic with higher Capacity can store a picture with better quality.Jedes geschossene Snapmatic hat seine eigene Kapazität, ein Snapmatic mit besserer Kapazität kann ein Bild mit besserer Qualität beinhalten.
@@ -368,7 +368,7 @@ Wenn du es als Avatar verwenden möchtest wird es abgetrennt!
S&chließen
-
+ JSON ErrorJSON Fehler
@@ -557,22 +557,17 @@ Y: %2
ParticipationTeilnahme
+
+
+
+ Participate in %1 User Statistics
+ An %1 Benutzerstatistik teilnehmen
+ CategoriesKategorien
-
-
- &Send
- &Senden
-
-
-
-
- Participate in %1 User Statistics
- An %1 Benutzerstatistik teilnehmen
- Hardware, Application and OS Specification
@@ -589,163 +584,152 @@ Y: %2
Anwendungseinstellungen
-
+ OtherSonstiges
-
-
-
+
+
+ Participation ID: %1Teilnahme ID: %1
-
+ &Copy&Kopieren
-
-
- User Feedback
- Benutzer Feedback
-
-
-
- Limit: 1 message/day
- Limit: 1 Nachricht/Tag
-
-
-
+ Language for AreasSprache für Standorte
-
+ StyleStil
-
+ Use Default Style (Restart)Benutze Standard Stil (Neustart)
-
+ Style:Stil:
-
+ FontSchrift
-
+ Always use Message Font (Windows 2003 and earlier)Immer Nachrichtenschrift nutzen (Windows 2003 und früher)
-
+ InterfaceOberfläche
-
+
+ Personal Usage Data
+ Persönliche Nutzungsdaten
+
+
+ Language for InterfaceSprache für Oberfläche
-
-
-
-
+
+
+
+ Current: %1Aktuell: %1
-
+ Apply changesÄnderungen übernehmen
-
+ &OKOK, Cancel, Apply&OK
-
+ Discard changesÄnderungen verwerfen
-
+ &CancelOK, Cancel, ApplyAbbre&chen
-
+ %1%1%1
-
+ %1 (Next Closest Language)First language a person can talk with a different person/application. "Native" or "Not Native".%1 (Erste näheste Sprache)
-
+ SystemSystem in context of System defaultSystem
-
+ %1 (Closest to Interface)Next closest language compared to the Interface%1 (Näheste zur Oberfläche)
-
+ AutoAutomatic language choice.Automatisch
-
+ 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 registeredNicht registriert
-
- A feedback message have to between 3-1024 characters long
- Eine Feedback Nachricht hat zwischen 3-1024 Zeichen lang zu sein
-
-
-
+ No ProfileNo Profile, as defaultKein Profil
-
-
+
+ Profile: %1Profil: %1
@@ -854,7 +838,7 @@ Pfeiltasten - Navigieren
-
+ No PlayersKeine Spieler
@@ -1002,28 +986,28 @@ Drücke 1 für Standardmodus
Abbre&chen
-
+ Add Players...Spieler hinzufügen...
-
+ Failed to add more Players because the limit of Players are %1!Fehlgeschlagen beim Hinzufügen von mehr Spielern weil der Limit von Spielern %1 ist!
-
-
+
+ Add Player...Spieler hinzufügen...
-
+ Enter Social Club Player IDSocial Club Spieler ID eingeben
-
+ Failed to add Player %1 because Player %1 is already added!Fehlgeschlagen beim Hinzufügen vom Spieler %1 weil Spieler %1 bereits hinzugefügt wurde!
@@ -1082,7 +1066,7 @@ Drücke 1 für Standardmodus
<h4>Folgende Snapmatic Bilder wurden repariert</h4>%1
-
+
@@ -1090,9 +1074,9 @@ Drücke 1 für Standardmodus
Importieren...
-
-
-
+
+
+
@@ -1131,14 +1115,14 @@ Drücke 1 für Standardmodus
Importfähige Dateien (%1)
-
+ All image files (%1)Alle Bilddateien (%1)
-
+
@@ -1173,14 +1157,14 @@ Drücke 1 für Standardmodus
Fehler beim Lesen von Spielstanddatei
-
+ Can't import %1 because file can't be openKann %1 nicht importieren weil die Datei nicht geöffnet werden kann
-
+ Can't import %1 because file can't be parsed properly
@@ -1636,12 +1620,12 @@ Drücke 1 für Standardmodus
-
-
-
-
+
+
+
+
-
+ Snapmatic PropertiesSnapmatic Eigenschaften
@@ -1683,7 +1667,7 @@ Drücke 1 für Standardmodus
-
+ Snapmatic TitleSnapmatic Titel
@@ -1693,30 +1677,30 @@ Drücke 1 für Standardmodus
Snapmatic Werte
-
+ Crew: %1 (%2)Crew: %1 (%2)
-
+ Title: %1 (%2)Titel: %1 (%2)
-
+ Players: %1 (%2)Multiple Player are inserted hereSpieler: %1 (%2)
-
+ Player: %1 (%2)One Player is inserted hereSpieler: %1 (%2)
-
-
+
+ Appropriate: %1Angemessen: %1
@@ -1746,62 +1730,62 @@ Drücke 1 für Standardmodus
Abbre&chen
-
-
-
+
+
+ EditBearbeiten
-
+ YesYes, should work fineJa
-
+ NoNo, could lead to issuesNein
-
+ <h4>Unsaved changes detected</h4>You want to save the JSON content before you quit?<h4>Ungespeicherte Änderungen erkannt</h4>Möchtest du den JSON Inhalt speichern bevor du verlässt?
-
+ Patching of Snapmatic Properties failed because of %1Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen %1
-
+ Patching of Snapmatic Properties failed because of JSON ErrorPatchen von Snapmatic Eigenschaften fehlgeschlagen wegen JSON Fehler
-
+
-
+ Patching of Snapmatic Properties failed because of I/O ErrorPatchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler
-
+ New Snapmatic title:Neuer Snapmatic Titel:
-
+ Snapmatic CrewSnapmatic Crew
-
+ New Snapmatic crew:Neue Snapmatic Crew:
@@ -1855,19 +1839,19 @@ Drücke 1 für Standardmodus
Datei lesen von %1 weil %2
-
+ JSON is incomplete and malformedJSON ist unvollständig und Fehlerhaft
-
+ JSON is incompleteJSON ist unvollständig
-
+ JSON is malformedJSON ist Fehlerhaft
@@ -2174,7 +2158,7 @@ Drücke 1 für Standardmodus
-
+ Select GTA V Folder...
diff --git a/res/gta5sync_en_US.qm b/res/gta5sync_en_US.qm
index 5ebdda8..0892020 100644
Binary files a/res/gta5sync_en_US.qm and b/res/gta5sync_en_US.qm differ
diff --git a/res/gta5sync_en_US.ts b/res/gta5sync_en_US.ts
index f723784..75349ea 100644
--- a/res/gta5sync_en_US.ts
+++ b/res/gta5sync_en_US.ts
@@ -166,9 +166,9 @@ Pictures and Savegames
ImageEditorDialog
-
-
-
+
+
+ Snapmatic Image Editor
@@ -179,7 +179,7 @@ Pictures and Savegames
-
+ Capacity: %1
@@ -204,17 +204,17 @@ Pictures and Savegames
-
+ Patching of Snapmatic Image failed because of I/O Error
-
+ Patching of Snapmatic Image failed because of Image Error
-
+ Every taken Snapmatic have a different Capacity, a Snapmatic with higher Capacity can store a picture with better quality.
@@ -357,7 +357,7 @@ When you want to use it as Avatar the image will be detached!
-
+ JSON Error
@@ -542,7 +542,7 @@ Y: %2
-
+ Participate in %1 User Statistics
@@ -557,60 +557,49 @@ Y: %2
-
+ Other
-
-
-
+
+
+ Participation ID: %1
-
+ &Copy
-
-
- User Feedback
-
-
-
-
- Limit: 1 message/day
-
-
-
-
+ Language for Areas
-
+ Style
-
+ Style:
-
+ Font
-
+ Always use Message Font (Windows 2003 and earlier)
-
+ Interface
@@ -630,113 +619,108 @@ Y: %2
-
- &Send
-
+
+ Personal Usage Data
+
-
+ Language for Interface
-
-
-
-
+
+
+
+ Current: %1
-
+ Use Default Style (Restart)
-
+ Apply changes
-
+ &OKOK, Cancel, Apply
-
+ Discard changes
-
+ &CancelOK, Cancel, Apply
-
+ %1 (Next Closest Language)First language a person can talk with a different person/application. "Native" or "Not Native".
-
+ SystemSystem in context of System default
-
+ %1 (Closest to Interface)Next closest language compared to the Interface
-
+ AutoAutomatic language choice.
-
+ %1%1
-
+ The new Custom Folder will initialise after you restart %1.The new Custom Folder will initialize after you restart %1.
-
+ No ProfileNo Profile, as default
-
-
+
+ Profile: %1
-
+ View %1 User Statistics Online
-
+ Not registered
-
-
- A feedback message have to between 3-1024 characters long
-
- PictureDialog
@@ -825,7 +809,7 @@ Arrow Keys - Navigate
-
+ No Players
@@ -984,28 +968,28 @@ Press 1 for Default View
-
+ Add Players...
-
+ Failed to add more Players because the limit of Players are %1!
-
-
+
+ Add Player...
-
+ Enter Social Club Player ID
-
+ Failed to add Player %1 because Player %1 is already added!
@@ -1075,7 +1059,7 @@ Press 1 for Default View
-
+
@@ -1083,9 +1067,9 @@ Press 1 for Default View
-
-
-
+
+
+
@@ -1130,14 +1114,14 @@ Press 1 for Default View
-
+ All image files (%1)
-
+
@@ -1177,14 +1161,14 @@ Press 1 for Default View
-
+ Can't import %1 because file can't be open
-
+ Can't import %1 because file can't be parsed properly
@@ -1611,12 +1595,12 @@ Press 1 for Default View
-
-
-
-
+
+
+
+
-
+ Snapmatic Properties
@@ -1662,30 +1646,30 @@ Press 1 for Default View
-
+ Crew: %1 (%2)
-
+ Title: %1 (%2)
-
+ Players: %1 (%2)Multiple Player are inserted here
-
+ Player: %1 (%2)One Player is inserted here
-
-
+
+ Appropriate: %1
@@ -1715,68 +1699,68 @@ Press 1 for Default View
-
-
-
+
+
+ Edit
-
+ YesYes, should work fine
-
+ NoNo, could lead to issues
-
+ <h4>Unsaved changes detected</h4>You want to save the JSON content before you quit?
-
+ Patching of Snapmatic Properties failed because of %1
-
+ Patching of Snapmatic Properties failed because of JSON Error
-
+
-
+ Patching of Snapmatic Properties failed because of I/O Error
-
+ Snapmatic Title
-
+ New Snapmatic title:
-
+ Snapmatic Crew
-
+ New Snapmatic crew:
@@ -1830,19 +1814,19 @@ Press 1 for Default View
-
+ JSON is incomplete and malformed
-
+ JSON is incomplete
-
+ JSON is malformed
@@ -1975,16 +1959,16 @@ Press 1 for Default View
TelemetryDialog
-
-
- %1 User Statistics
-
- 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.
@@ -1993,7 +1977,7 @@ Press 1 for Default View
&OK
-
+
@@ -2125,7 +2109,7 @@ Press 1 for Default View
-
+ Select GTA V Folder...
diff --git a/res/gta5sync_fr.qm b/res/gta5sync_fr.qm
index 2fa3468..3cd7d13 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 6b1e0df..debd501 100644
--- a/res/gta5sync_fr.ts
+++ b/res/gta5sync_fr.ts
@@ -176,9 +176,9 @@ et les fichiers de sauvegarde de Grand Theft Auto V
ImageEditorDialog
-
-
-
+
+
+ Snapmatic Image EditorÉditeur d'images Snapmatic
@@ -189,7 +189,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V
-
+ Capacity: %1Capacité : %1
@@ -214,17 +214,17 @@ et les fichiers de sauvegarde de Grand Theft Auto V
&Fermer
-
+ Patching of Snapmatic Image failed because of I/O ErrorÉchec du patch Snapmatic : I/O Error
-
+ Patching of Snapmatic Image failed because of Image ErrorÉchec du patch Snapmatic : Image Error
-
+ Every taken Snapmatic have a different Capacity, a Snapmatic with higher Capacity can store a picture with better quality.Tous les Snapmatic ont une Capacité différente, un Snapmatic avec une haute Capacité peut stocker une image de meilleure qualité.
@@ -368,7 +368,7 @@ Si vous l'utilisez comme Avatar, l'image sera détachée !&Fermer
-
+ JSON ErrorErreur JSON
@@ -559,7 +559,7 @@ Y : %2
-
+ Participate in %1 User StatisticsParticiper aux statistiques d'usage %1
@@ -584,168 +584,152 @@ Y : %2
Configuration de l'application
-
+ OtherAutres
-
-
-
+
+
+ Participation ID: %1ID de participation : %1
-
+ &Copy&Copier
-
-
- User Feedback
- Feedback utilisateur
-
-
-
- Limit: 1 message/day
- Limite : 1 message/jour
-
-
-
- &Send
- &Envoyer
-
-
-
+ Language for AreasLangage des Zones
-
+ StyleStyle
-
+ Style:Style :
-
+ FontPolice
-
+ Always use Message Font (Windows 2003 and earlier)Toujours utiliser la police Message (Windows 2003 et précédent)
-
+ InterfaceInterface
-
+
+ Personal Usage Data
+
+
+
+ Language for InterfaceLangage de l'interface
-
-
-
-
+
+
+
+ Current: %1Actuel : %1
-
+ Use Default Style (Restart)Utiliser le Style par Défaut (rédémarrage requis)
-
+ Apply changesAppliquer les changements
-
+ &OKOK, Cancel, Apply&OK
-
+ Discard changesAnnuler les changements
-
+ &CancelOK, Cancel, Apply&Annuler
-
+ %1 (Next Closest Language)First language a person can talk with a different person/application. "Native" or "Not Native".%1 (Langage proche)
-
+ SystemSystem in context of System defaultSystème
-
+ %1 (Closest to Interface)Next closest language compared to the Interface%1 (Langage proche de l'interface)
-
+ AutoAutomatic language choice.Automatique
-
+ %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 OnlineVoir les statistiques d'usage %1 en ligne
-
+ Not registeredPas enregistré
-
- A feedback message have to between 3-1024 characters long
- Un message doit contenir 3 à 1024 charactères
-
-
-
+ No ProfileNo Profile, as defaultAucun profil
-
-
+
+ Profile: %1Profil : %1
@@ -934,7 +918,7 @@ Touches fléchées - Naviguer
-
+ No PlayersAucun joueurs
@@ -1002,28 +986,28 @@ Appuyer sur 1 pour le mode par défaut
A&nnuler
-
+ Add Players...Ajouter des joueurs...
-
+ Failed to add more Players because the limit of Players are %1!Échec de l'ajout de joueurs : la limite de %1 est atteinte !
-
-
+
+ Add Player...Ajouter un joueur...
-
+ Enter Social Club Player IDEntrer l'ID Social Club du joueur
-
+ Failed to add Player %1 because Player %1 is already added!Échec de l'ajout du joueur %1 car le joueur %1 est déjà ajouté !
@@ -1093,7 +1077,7 @@ Appuyer sur 1 pour le mode par défaut
<h4>Les Snapmatic suivants ont été répaés</h4>%1
-
+
@@ -1101,9 +1085,9 @@ Appuyer sur 1 pour le mode par défaut
Importer...
-
-
-
+
+
+
@@ -1137,14 +1121,14 @@ Appuyer sur 1 pour le mode par défaut
Photos Snapmatic (PGTA*)
-
+ All image files (%1)Toutes les images (%1)
-
+
@@ -1191,14 +1175,14 @@ Appuyer sur 1 pour le mode par défaut
Impossible de lire le fichier de sauvegarde
-
+ Can't import %1 because file can't be openImpossible d'importer %1, le fichier ne peut pas être ouvert
-
+ Can't import %1 because file can't be parsed properly
@@ -1637,12 +1621,12 @@ Appuyer sur 1 pour le mode par défaut
-
-
-
-
+
+
+
+
-
+ Snapmatic PropertiesPropriétés Snapmatic
@@ -1684,7 +1668,7 @@ Appuyer sur 1 pour le mode par défaut
-
+ Snapmatic TitleTitre Snapmatic
@@ -1694,30 +1678,30 @@ Appuyer sur 1 pour le mode par défaut
Valeurs Snapmatic
-
+ Crew: %1 (%2)Crew : %1 (%2)
-
+ Title: %1 (%2)Titre : %1 (%2)
-
+ Players: %1 (%2)Multiple Player are inserted hereJoueurs : %1 (%2)
-
+ Player: %1 (%2)One Player is inserted hereJoueur : %1 (%2)
-
-
+
+ Appropriate: %1Valide : %1
@@ -1747,64 +1731,64 @@ Appuyer sur 1 pour le mode par défaut
A&nnuler
-
-
-
+
+
+ EditÉditer
-
+ YesYes, should work fineOui, devrait fonctionnerOui
-
+ NoNo, could lead to issuesNon, pourrait causer des erreursNon
-
+ <h4>Unsaved changes detected</h4>You want to save the JSON content before you quit?<h4>Modifications détectées</h4>Voulez-vous sauvegarder le contenu JSON avant de quitter ?
-
+ Patching of Snapmatic Properties failed because of %1Patch des propriétés Snapmatic échoué : %1
-
+ Patching of Snapmatic Properties failed because of JSON ErrorPatch des propriétés Snapmatic échoué : erreur JSON
-
+
-
+ Patching of Snapmatic Properties failed because of I/O ErrorLa modification des propriétés Snapmatic a échoué : erreur d'entrée/sortie
-
+ New Snapmatic title:Nouveau titre Snapmatic :
-
+ Snapmatic CrewCrew Snapmatic
-
+ New Snapmatic crew:Nouveau crew Snapmatic :
@@ -1858,19 +1842,19 @@ Appuyer sur 1 pour le mode par défaut
lecture du fichier %1 : %2
-
+ JSON is incomplete and malformedJSON incomplet ou incorrect
-
+ JSON is incompleteJSON incomplet
-
+ JSON is malformedJSON incorrect
@@ -2003,16 +1987,16 @@ Appuyer sur 1 pour le mode par défaut
TelemetryDialog
-
-
- %1 User Statistics
- %1 Statistiques d'usage
- 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.
@@ -2021,7 +2005,7 @@ Appuyer sur 1 pour le mode par défaut
&OK
- &OK
+ &OK
@@ -2135,7 +2119,7 @@ Appuyer sur 1 pour le mode par défaut
-
+ Select GTA V Folder...
diff --git a/res/gta5sync_ru.qm b/res/gta5sync_ru.qm
index 061cd2a..16d302c 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 3ff5289..3758948 100644
--- a/res/gta5sync_ru.ts
+++ b/res/gta5sync_ru.ts
@@ -178,9 +178,9 @@ Pictures and Savegames
ImageEditorDialog
-
-
-
+
+
+ Snapmatic Image EditorРедактор картинок Snapmatic
@@ -191,7 +191,7 @@ Pictures and Savegames
-
+ Capacity: %1Величина: %1
@@ -216,17 +216,17 @@ Pictures and Savegames
&Закрыть
-
+ Patching of Snapmatic Image failed because of I/O ErrorНе удалось изменить картинку Snapmatic из-за ошибки ввода-вывода
-
+ Patching of Snapmatic Image failed because of Image ErrorНе удалось изменить картинку Snapmatic из-за ошибки Image Error
-
+ Every taken Snapmatic have a different Capacity, a Snapmatic with higher Capacity can store a picture with better quality.У каждого отснятого Snapmatic фото есть своя величина, в зависимости от которой можно сохранить картинку с более высоким качеством.
@@ -371,7 +371,7 @@ When you want to use it as Avatar the image will be detached!
&Закрыть
-
+ JSON ErrorОшибка JSON
@@ -562,7 +562,7 @@ Y: %2
-
+ Participate in %1 User StatisticsУчаствовать в пользовательской статистике %1
@@ -588,169 +588,153 @@ Y: %2
Настройки программы
-
+ OtherДругое
-
-
-
+
+
+ Participation ID: %1Номер участника: %1
-
+ &Copy&Копировать
-
-
- User Feedback
- Форма обратной связи
-
-
-
- Limit: 1 message/day
- Ограничение: 1 сообщение в день
-
-
-
- &Send
- &Отправить
-
-
-
+ Language for AreasЯзык для местоположений?Язык перевода местоположений
-
+ StyleСтиль
-
+ Style:Стиль:
-
+ FontШрифт
-
+ Always use Message Font (Windows 2003 and earlier)Всегда использовать шрифт сообщений (Windows 2003 и ранние)
-
+ InterfaceИнтерфейс
-
+
+ Personal Usage Data
+
+
+
+ Language for InterfaceЯзык интерфейса
-
-
-
-
+
+
+
+ Current: %1Сейчас: %1
-
+ Use Default Style (Restart)Использовать стандартный стиль (Перезапуск)
-
+ Apply changesПрименить изменения
-
+ &OKOK, Cancel, Apply&ОК
-
+ Discard changesОтвергнуть изменения
-
+ &CancelOK, Cancel, ApplyОт&мена
-
+ %1 (Next Closest Language)First language a person can talk with a different person/application. "Native" or "Not Native".
-
+ SystemSystem in context of System defaultСистема
-
+ %1 (Closest to Interface)Next closest language compared to the Interface%1 (Совпадает с интерфейсом)
-
+ AutoAutomatic language choice.Автоматически
-
+ %1%1%1
-
+ The new Custom Folder will initialise after you restart %1.Другая папка будет загружена после перезапуска %1.
-
+ View %1 User Statistics OnlineПосмотреть пользовательскую статистику %1 онлайн
-
+ Not registeredНе зарегистрирован
-
- A feedback message have to between 3-1024 characters long
- Сообщение обратное связи не должно быть длинее 1024 символов
-
-
-
+ No ProfileNo Profile, as defaultНет профиля
-
-
+
+ Profile: %1Профиль: %1
@@ -859,7 +843,7 @@ Arrow Keys - Navigate
-
+ No PlayersИгроков нет
@@ -1007,28 +991,28 @@ Press 1 for Default View
&Отмена
-
+ Add Players...Добавить игроков...
-
+ Failed to add more Players because the limit of Players are %1!Невозможно добавить больше игроков из-за ограничения в %1!
-
-
+
+ Add Player...Добавить игрока...
-
+ Enter Social Club Player IDВведите идентификатор игрока из Social Club
-
+ Failed to add Player %1 because Player %1 is already added!Нельзя повторно добавить игрока %1, %1 уже добавлен!
@@ -1087,7 +1071,7 @@ Press 1 for Default View
<h4>Нижеследующие картинки Snapmatic были восстановлены</h4>%1
-
+
@@ -1095,9 +1079,9 @@ Press 1 for Default View
Импортировать...
-
-
-
+
+
+
@@ -1131,7 +1115,7 @@ Press 1 for Default View
Картинка Snapmatic (PGTA*)
-
+
@@ -1183,21 +1167,21 @@ Press 1 for Default View
Файлы для импорта (%1)
-
+ All image files (%1)Все файлы изображений (%1)
-
+ Can't import %1 because file can't be openНе удалось открыть %1, файл не может быть открыт
-
+ Can't import %1 because file can't be parsed properly
@@ -1643,12 +1627,12 @@ Press 1 for Default View
-
-
-
-
+
+
+
+
-
+ Snapmatic PropertiesСвойства Snapmatic
@@ -1689,7 +1673,7 @@ Press 1 for Default View
Значения в Snapmatic
-
+ Crew: %1 (%2)Банда: %1 (%2)
@@ -1700,30 +1684,30 @@ Press 1 for Default View
-
+ Snapmatic TitleЗаголовок Snapmatic
-
+ Title: %1 (%2)Заголовок: %1 (%2)
-
+ Players: %1 (%2)Multiple Player are inserted hereИгроки: %1 (%2)
-
+ Player: %1 (%2)One Player is inserted hereИгрок: %1 (%2)
-
-
+
+ Appropriate: %1Подходит: %1
@@ -1753,62 +1737,62 @@ Press 1 for Default View
&Отмена
-
-
-
+
+
+ EditПравка
-
+ YesYes, should work fineДа
-
+ NoNo, could lead to issuesНет
-
+ <h4>Unsaved changes detected</h4>You want to save the JSON content before you quit?<h4>Несохранённые изменения</h4>Сохранить изменения в JSON перед выходом?
-
+ Patching of Snapmatic Properties failed because of %1Не удалось изменить свойства Snapmatic из-за %1
-
+ Patching of Snapmatic Properties failed because of JSON ErrorНе удалось измененить свойства Snapmatic из-за ошибки JSON
-
+
-
+ Patching of Snapmatic Properties failed because of I/O ErrorНе удалось измененить свойства Snapmatic из-за проблемы ввода/вывода
-
+ New Snapmatic title:Новый заголовок Snapmatic:
-
+ Snapmatic CrewБанда на Snapmatic
-
+ New Snapmatic crew:Новая банда на Snapmatic:
@@ -1862,19 +1846,19 @@ Press 1 for Default View
Чтение из файла %1 из-за %2
-
+ JSON is incomplete and malformedJSON не полный и повреждён
-
+ JSON is incompleteJSON частично отсутствует
-
+ JSON is malformedJSON повреждён
@@ -2007,16 +1991,16 @@ Press 1 for Default View
TelemetryDialog
-
-
- %1 User Statistics
- %1 пользовательская статистика
- 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.
@@ -2025,7 +2009,7 @@ Press 1 for Default View
&OK
- &ОК
+ &ОК
@@ -2181,7 +2165,7 @@ Press 1 for Default View
-
+ Select GTA V Folder...
diff --git a/res/gta5sync_uk.qm b/res/gta5sync_uk.qm
index 151097e..6285e03 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 d929df7..9410a39 100644
--- a/res/gta5sync_uk.ts
+++ b/res/gta5sync_uk.ts
@@ -182,7 +182,7 @@ Pictures and Savegames
-
+ Capacity: %1Величина: %1
@@ -207,24 +207,24 @@ Pictures and Savegames
&Закрити
-
-
-
+
+
+ Snapmatic Image EditorРедактор Snapmatic зображень
-
+ Patching of Snapmatic Image failed because of I/O ErrorВиправлення Snapmatic зображення не вдалося через I/O Error
-
+ Patching of Snapmatic Image failed because of Image ErrorВиправлення Snapmatic зображення не вдалося через помилку картинки
-
+ Every taken Snapmatic have a different Capacity, a Snapmatic with higher Capacity can store a picture with better quality.Кожен знятий Snapmatic має різну величину, в залежності від якої можна зберігати зображення більш високої якості.
@@ -368,7 +368,7 @@ When you want to use it as Avatar the image will be detached!
&Закрити
-
+ JSON ErrorJSON помилка
@@ -559,7 +559,7 @@ Y: %2
-
+ Participate in %1 User StatisticsОпитування %1 про устаткування ПК
@@ -584,171 +584,155 @@ Y: %2
Налаштування програми
-
+
+ Personal Usage Data
+
+
+
+ OtherІнше
-
-
-
+
+
+ Participation ID: %1ID учасника : %1
-
+ &Copy&Копіювати
-
-
- User Feedback
- Відгук користувача
-
-
-
- Limit: 1 message/day
- Ліміт: 1 повідомлення / день
-
-
-
- &Send
- &Надіслати
-
-
-
+ InterfaceІнтерфейс
-
+ Language for InterfaceМова інтерфейсу
-
-
-
-
+
+
+
+ Current: %1Зараз: %1
-
+ Language for AreasМова перекладу розташування
-
+ StyleСтиль
-
+ Use Default Style (Restart)Використовувати стандартний стиль (Перезапуск)
-
+ Style:Стиль:
-
+ FontШрифт
-
+ Always use Message Font (Windows 2003 and earlier)Завжди використовуйте шрифт повідомлень (Windows 2003 і раніше)
-
+ Apply changesЗастосувати зміни
-
+ &OKOK, Cancel, Apply&OK
-
+ Discard changesСкасувати зміни
-
+ &CancelOK, Cancel, Apply&Скасувати
-
+ %1 (Next Closest Language)First language a person can talk with a different person/application. "Native" or "Not Native".%1 (або наступна найближча мова)
-
+ SystemSystem in context of System defaultЯк у системи
-
+ %1 (Closest to Interface)Next closest language compared to the Interface%1 (Співпадає з інтерфейсом)
-
+ AutoAutomatic language choice.Автоматично
-
+ %1%1%1
-
+ The new Custom Folder will initialise after you restart %1.Нова користувацька папка буде ініціалізована після перезапуску %1.
-
+ No ProfileNo Profile, as defaultЖодного
-
-
+
+ Profile: %1Профіль: %1
-
+ View %1 User Statistics OnlineПереглянути користувацьку статистику %1 онлайн
-
+ Not registeredНе зареєстрований
-
-
- A feedback message have to between 3-1024 characters long
- Повідомлення відгуку має становити від 3-1024 символів
- PictureDialog
@@ -848,7 +832,7 @@ Arrow Keys - Navigate
-
+ No PlayersГравців немає
@@ -1002,28 +986,28 @@ Press 1 for Default View
&Скасувати
-
+ Add Players...Додати гравців...
-
+ Failed to add more Players because the limit of Players are %1!Не вдалося додати більше гравців, бо ліміт %1!
-
-
+
+ Add Player...Додати гравця...
-
+ Enter Social Club Player IDВведіть ID гравця Social Club
-
+ Failed to add Player %1 because Player %1 is already added!Не вдалося додати гравця %1, оскільки %1 вже доданий!
@@ -1073,7 +1057,7 @@ Press 1 for Default View
Експортується файл %1 з %2 файлів
-
+
@@ -1081,9 +1065,9 @@ Press 1 for Default View
Імпортування...
-
-
-
+
+
+
@@ -1105,14 +1089,14 @@ Press 1 for Default View
Імпорт
-
+ All image files (%1)Файли зображень (%1)
-
+
@@ -1120,14 +1104,14 @@ Press 1 for Default View
Усі файли (**)
-
+ Can't import %1 because file can't be openНеможливо імпортувати %1, оскільки файл не може бути відкритий
-
+ Can't import %1 because file can't be parsed properly
@@ -1637,12 +1621,12 @@ Press 1 for Default View
-
-
-
-
+
+
+
+
-
+ Snapmatic PropertiesВластивості Snapmatic
@@ -1713,96 +1697,96 @@ Press 1 for Default View
&Скасувати
-
+ <h4>Unsaved changes detected</h4>You want to save the JSON content before you quit?<h4> Виявлені незбережені зміни </h4> Ви хочете зберегти вміст JSON перед тим, як вийти?
-
+ Patching of Snapmatic Properties failed because of %1Змінити властивості Snapmatic не вдалося тому що%1
-
+
-
+ Patching of Snapmatic Properties failed because of I/O ErrorЗмінити властивості Snapmatic не вдалося через I/O Помилку
-
+ Patching of Snapmatic Properties failed because of JSON ErrorЗмінити властивості Snapmatic не вдалося через JSON Помилку
-
+ Snapmatic CrewSnapmatic банда
-
+ New Snapmatic crew:Нова Snapmatic банда:
-
+ Snapmatic TitleSnapmatic назва
-
+ New Snapmatic title:Новий Snapmatic заголовок:
-
-
-
+
+
+ EditПравка
-
+ Players: %1 (%2)Multiple Player are inserted hereГравці: %1 (%2)
-
+ Player: %1 (%2)One Player is inserted hereГравець: %1 (%2)
-
+ Title: %1 (%2)Назва: %1 (%2)
-
-
+
+ Appropriate: %1Підходить: %1
-
+ YesYes, should work fineТак
-
+ NoNo, could lead to issuesНі
-
+ Crew: %1 (%2)Банда: %1 (%2)
@@ -1810,19 +1794,19 @@ Press 1 for Default View
SnapmaticPicture
-
+ JSON is incomplete and malformedJSON неповний та неправильний
-
+ JSON is incompleteJSON неповний
-
+ JSON is malformedJSON неправильний
@@ -2001,16 +1985,16 @@ Press 1 for Default View
TelemetryDialog
-
-
- %1 User Statistics
- %1 Статистика користувачів
- 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.
@@ -2019,7 +2003,7 @@ Press 1 for Default View
&OK
- &OK
+ &OK
@@ -2156,7 +2140,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 90b338e..46c5e09 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 85bb948..a2b7b76 100644
--- a/res/gta5sync_zh_TW.ts
+++ b/res/gta5sync_zh_TW.ts
@@ -181,7 +181,7 @@ Pictures and Savegames
-
+ Capacity: %1大小: %1
@@ -206,24 +206,24 @@ Pictures and Savegames
關閉(&C)
-
-
-
+
+
+ Snapmatic Image EditorSnapmatic 圖片編輯器
-
+ Patching of Snapmatic Image failed because of I/O ErrorI/O 錯誤,Snapmatic 圖片更新失敗
-
+ Patching of Snapmatic Image failed because of Image Error圖片錯誤,Snapmatic 圖片更新失敗
-
+ Every taken Snapmatic have a different Capacity, a Snapmatic with higher Capacity can store a picture with better quality.每張 Snapmatic 大小皆不同,通常較大的 Snapmatic 圖片品質較佳。
@@ -366,7 +366,7 @@ When you want to use it as Avatar the image will be detached!
關閉(&C)
-
+ JSON ErrorJSON 錯誤
@@ -557,7 +557,7 @@ Y: %2
-
+ Participate in %1 User Statistics參與 %1 使用者統計
@@ -582,171 +582,155 @@ Y: %2
應用程式設定
-
+
+ Personal Usage Data
+
+
+
+ Other其他
-
-
-
+
+
+ Participation ID: %1參與 ID: %1
-
+ &Copy複製(&C)
-
-
- User Feedback
- 使用者反饋
-
-
-
- Limit: 1 message/day
- 一天只能一則訊息
-
-
-
- &Send
- 送出(&S)
-
-
-
+ Interface介面
-
+ Language for Interface介面語言
-
-
-
-
+
+
+
+ Current: %1目前: %1
-
+ Language for Areas區域語言
-
+ Style風格
-
+ Use Default Style (Restart)使用預設風格 (需重新啟動)
-
+ Style:風格:
-
+ Font字體
-
+ Always use Message Font (Windows 2003 and earlier)總是使用訊息字體 (Windows 2003 和更早版本)
-
+ Apply changes套用變更
-
+ &OKOK, Cancel, Apply確定(&O)
-
+ Discard changes捨棄變更
-
+ &CancelOK, Cancel, Apply取消(&C)
-
+ %1 (Next Closest Language)First language a person can talk with a different person/application. "Native" or "Not Native".%1 (接近的語言)
-
+ SystemSystem in context of System default系統
-
+ %1 (Closest to Interface)Next closest language compared to the Interface%1 (與介面接近的語言)
-
+ AutoAutomatic language choice.自動
-
+ %1%1%1
-
+ The new Custom Folder will initialise after you restart %1.自訂資料夾將在 %1 重新啟動後初始化.
-
+ No ProfileNo Profile, as default無
-
-
+
+ Profile: %1設定檔: %1
-
+ View %1 User Statistics Online檢視 %1 使用者統計資訊
-
+ Not registered未註冊參與
-
-
- A feedback message have to between 3-1024 characters long
- 反饋訊息必須在 3 到 1024 個字之間
- PictureDialog
@@ -846,7 +830,7 @@ Arrow Keys - Navigate
-
+ No Players無
@@ -1000,28 +984,28 @@ Press 1 for Default View
取消(&C)
-
+ Add Players...新增玩家...
-
+ Failed to add more Players because the limit of Players are %1!因為數量限制 %1,無法新增更多玩家!
-
-
+
+ Add Player...新增玩家...
-
+ Enter Social Club Player ID輸入玩家的 Social Club ID
-
+ Failed to add Player %1 because Player %1 is already added!新增 %1 失敗,因為 %1 已被新增!
@@ -1071,7 +1055,7 @@ Press 1 for Default View
匯出檔案中 %1 共 %2 個檔案
-
+
@@ -1079,9 +1063,9 @@ Press 1 for Default View
匯入...
-
-
-
+
+
+
@@ -1103,14 +1087,14 @@ Press 1 for Default View
匯入
-
+ All image files (%1)所有圖片 (%1)
-
+
@@ -1118,14 +1102,14 @@ Press 1 for Default View
所有檔案 (**)
-
+ Can't import %1 because file can't be open無法匯入 %1,因為檔案無法開啟
-
+ Can't import %1 because file can't be parsed properly
@@ -1631,12 +1615,12 @@ Press 1 for Default View
-
-
-
-
+
+
+
+
-
+ Snapmatic PropertiesSnapmatic 屬性
@@ -1707,96 +1691,96 @@ Press 1 for Default View
取消(&C)
-
+ <h4>Unsaved changes detected</h4>You want to save the JSON content before you quit?<h4>目前的變更未儲存</h4> 你想要在退出之前儲存 JSON 嗎?
-
+ Patching of Snapmatic Properties failed because of %1更新 Snapmatic 屬性失敗,因為 %1
-
+
-
+ Patching of Snapmatic Properties failed because of I/O Error讀寫錯誤,未能更新 Snapmatic 屬性
-
+ Patching of Snapmatic Properties failed because of JSON ErrorJSON 錯誤,未能更新 Snapmatic 屬性
-
+ Snapmatic Crew幫會
-
+ New Snapmatic crew:輸入新的幫會:
-
+ Snapmatic Title標題
-
+ New Snapmatic title:輸入新的標題:
-
-
-
+
+
+ Edit編輯
-
+ Players: %1 (%2)Multiple Player are inserted here玩家: %1 (%2)
-
+ Player: %1 (%2)One Player is inserted here玩家: %1 (%2)
-
+ Title: %1 (%2)標題: %1 (%2)
-
-
+
+ Appropriate: %1可使用: %1
-
+ YesYes, should work fine是
-
+ NoNo, could lead to issues否
-
+ Crew: %1 (%2)幫會: %1 (%2)
@@ -1804,19 +1788,19 @@ Press 1 for Default View
SnapmaticPicture
-
+ JSON is incomplete and malformedJSON 不完整和異常
-
+ JSON is incompleteJSON 不完整
-
+ JSON is malformedJSON 異常
@@ -1995,16 +1979,16 @@ Press 1 for Default View
TelemetryDialog
-
-
- %1 User Statistics
- %1 使用者統計
- 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.
@@ -2013,7 +1997,7 @@ Press 1 for Default View
&OK
- 確定(&O)
+ 確定(&O)
@@ -2150,7 +2134,7 @@ Press 1 for Default View
-
+ Select GTA V Folder...