diff --git a/OptionsDialog.cpp b/OptionsDialog.cpp index 4870b9f..59f1b94 100644 --- a/OptionsDialog.cpp +++ b/OptionsDialog.cpp @@ -124,6 +124,8 @@ OptionsDialog::OptionsDialog(ProfileDatabase *profileDB, QWidget *parent) : resize(435 * screenRatio, 405 * screenRatio); #endif + ui->rbModern->setText(ui->rbModern->text().arg(GTA5SYNC_APPSTR)); + ui->rbClassic->setText(ui->rbClassic->text().arg(GTA5SYNC_APPSTR)); setWindowTitle(windowTitle().arg(GTA5SYNC_APPSTR)); } @@ -285,14 +287,19 @@ void OptionsDialog::setupRadioButtons() switch (contentMode) { case 0: - ui->rbOpenWithSC->setChecked(true); + case 20: + ui->rbModern->setChecked(true); break; case 1: - ui->rbOpenWithDC->setChecked(true); - break; case 2: - ui->rbSelectWithSC->setChecked(true); + case 21: + ui->rbModern->setChecked(true); + ui->cbDoubleclick->setChecked(true); break; + case 10: + ui->rbClassic->setChecked(true); + case 11: + ui->cbDoubleclick->setChecked(true); } } } @@ -364,18 +371,18 @@ void OptionsDialog::applySettings() settings->endGroup(); settings->beginGroup("Profile"); - int newContentMode = 0; - if (ui->rbOpenWithSC->isChecked()) + int newContentMode = 20; + if (ui->rbModern->isChecked()) { - newContentMode = 0; + newContentMode = 20; } - else if (ui->rbOpenWithDC->isChecked()) + else if (ui->rbClassic->isChecked()) { - newContentMode = 1; + newContentMode = 10; } - else if (ui->rbSelectWithSC->isChecked()) + if (ui->cbDoubleclick->isChecked()) { - newContentMode = 2; + newContentMode++; } settings->setValue("ContentMode", newContentMode); #if QT_VERSION >= 0x050000 diff --git a/OptionsDialog.ui b/OptionsDialog.ui index a5daae3..6c5e80b 100644 --- a/OptionsDialog.ui +++ b/OptionsDialog.ui @@ -34,9 +34,9 @@ - + - Open with Singleclick + %1 1.9+ true @@ -44,16 +44,16 @@ - + - Open with Doubleclick + %1 1.0-1.8 - + - Select with Singleclick + Open with Doubleclick diff --git a/ProfileInterface.cpp b/ProfileInterface.cpp index 439bb08..ad8d73a 100644 --- a/ProfileInterface.cpp +++ b/ProfileInterface.cpp @@ -1470,7 +1470,7 @@ void ProfileInterface::exportSelected() } } -void ProfileInterface::deleteSelected() +void ProfileInterface::deleteSelectedL(bool isRemoteEmited) { if (selectedWidgts != 0) { @@ -1485,7 +1485,7 @@ void ProfileInterface::deleteSelected() SnapmaticWidget *picWidget = qobject_cast(widget); if (picWidget->getPicture()->deletePictureFile()) { - pictureDeleted(picWidget); + pictureDeleted(picWidget, isRemoteEmited); } } else if (widget->getWidgetType() == "SavegameWidget") @@ -1495,7 +1495,7 @@ void ProfileInterface::deleteSelected() QString fileName = savegame->getSavegameFileName(); if (!QFile::exists(fileName) || QFile::remove(fileName)) { - savegameDeleted(sgdWidget); + savegameDeleted(sgdWidget, isRemoteEmited); } } } @@ -1512,6 +1512,16 @@ void ProfileInterface::deleteSelected() } } +void ProfileInterface::deleteSelected() +{ + deleteSelectedL(false); +} + +void ProfileInterface::deleteSelectedR() +{ + deleteSelectedL(true); +} + void ProfileInterface::massToolQualify() { massTool(MassTool::Qualify); @@ -1710,8 +1720,8 @@ void ProfileInterface::contextMenuTriggeredPIC(QContextMenuEvent *ev) editMenu.addAction(SnapmaticWidget::tr("Show &In-game"), this, SLOT(enableSelected()), QKeySequence::fromString("Shift+E")); editMenu.addAction(SnapmaticWidget::tr("Hide &In-game"), this, SLOT(disableSelected()), QKeySequence::fromString("Shift+D")); contextMenu.addMenu(&editMenu); - contextMenu.addAction(SnapmaticWidget::tr("&Export"), this, SLOT(exportSelected())); - contextMenu.addAction(SnapmaticWidget::tr("&Remove"), this, SLOT(deleteSelected())); + contextMenu.addAction(SavegameWidget::tr("&Export"), this, SLOT(exportSelected()), QKeySequence::fromString("Ctrl+E")); + contextMenu.addAction(SavegameWidget::tr("&Remove"), this, SLOT(deleteSelectedR()), QKeySequence::fromString("Ctrl+Del")); contextMenu.addSeparator(); if (!picWidget->isSelected()) contextMenu.addAction(SnapmaticWidget::tr("&Select"), picWidget, SLOT(pictureSelected())); @@ -1775,8 +1785,8 @@ void ProfileInterface::contextMenuTriggeredSGD(QContextMenuEvent *ev) editMenu.addAction(SnapmaticWidget::tr("Show &In-game"), this, SLOT(enableSelected()), QKeySequence::fromString("Shift+E")); editMenu.addAction(SnapmaticWidget::tr("Hide &In-game"), this, SLOT(disableSelected()), QKeySequence::fromString("Shift+D")); contextMenu.addMenu(&editMenu); - contextMenu.addAction(SavegameWidget::tr("&Export"), this, SLOT(exportSelected())); - contextMenu.addAction(SavegameWidget::tr("&Remove"), this, SLOT(deleteSelected())); + contextMenu.addAction(SavegameWidget::tr("&Export"), this, SLOT(exportSelected()), QKeySequence::fromString("Ctrl+E")); + contextMenu.addAction(SavegameWidget::tr("&Remove"), this, SLOT(deleteSelectedR()), QKeySequence::fromString("Ctrl+Del")); contextMenu.addSeparator(); if (!sgdWidget->isSelected()) contextMenu.addAction(SavegameWidget::tr("&Select"), sgdWidget, SLOT(savegameSelected())); diff --git a/ProfileInterface.h b/ProfileInterface.h index 185cad7..6b3fb16 100644 --- a/ProfileInterface.h +++ b/ProfileInterface.h @@ -66,6 +66,7 @@ public slots: void enableSelected(); void exportSelected(); void deleteSelected(); + void deleteSelectedR(); void updatePalette(); void importFiles(); @@ -128,6 +129,7 @@ private: void savegameLoaded(SavegameData *savegame, QString savegamePath, bool inserted); void savegameDeleted(SavegameWidget *sgdWidget, bool isRemoteEmited = false); void pictureDeleted(SnapmaticWidget *picWidget, bool isRemoteEmited = false); + void deleteSelectedL(bool isRemoteEmited = false); void insertSnapmaticIPI(QWidget *widget); void insertSavegameIPI(QWidget *widget); void sortingProfileInterface(); diff --git a/UserInterface.cpp b/UserInterface.cpp index e6529ad..3f4d016 100644 --- a/UserInterface.cpp +++ b/UserInterface.cpp @@ -186,17 +186,13 @@ void UserInterface::setupDirEnv(bool showFolderDialog) bool folderExists; GTAV_Folder = AppEnv::getGameFolder(&folderExists); - if (folderExists) - { + if (folderExists) { QDir::setCurrent(GTAV_Folder); } - else - { - if (showFolderDialog) - { + else { + if (showFolderDialog) { GTAV_Folder = QFileDialog::getExistingDirectory(this, tr("Select GTA V Folder..."), StandardPaths::documentsLocation(), QFileDialog::ShowDirsOnly); - if (QFileInfo(GTAV_Folder).exists()) - { + if (QFileInfo(GTAV_Folder).exists()) { folderExists = true; QDir::setCurrent(GTAV_Folder); AppEnv::setGameFolder(GTAV_Folder); @@ -216,15 +212,15 @@ void UserInterface::setupDirEnv(bool showFolderDialog) settings.beginGroup("Profile"); QString defaultProfile = settings.value("Default", "").toString(); - bool contentModeOk; - contentMode = settings.value("ContentMode", 0).toInt(&contentModeOk); - if (contentMode != 0 && contentMode != 1 && contentMode != 2 && contentMode != 10 && contentMode != 11 && contentMode != 20 && contentMode != 21) - { - contentMode = 0; + contentMode = settings.value("ContentMode", 0).toInt(); + if (contentMode == 1) { + contentMode = 21; + } + else if (contentMode != 10 && contentMode != 11 && contentMode != 20 && contentMode != 21) { + contentMode = 20; } - if (folderExists) - { + if (folderExists) { QDir GTAV_ProfilesDir; GTAV_ProfilesFolder = GTAV_Folder % "/Profiles"; GTAV_ProfilesDir.setPath(GTAV_ProfilesFolder); @@ -232,17 +228,14 @@ void UserInterface::setupDirEnv(bool showFolderDialog) GTAV_Profiles = GTAV_ProfilesDir.entryList(QDir::Dirs | QDir::NoDotAndDotDot, QDir::NoSort); setupProfileUi(); - if (GTAV_Profiles.length() == 1) - { + if (GTAV_Profiles.length() == 1) { openProfile(GTAV_Profiles.at(0)); } - else if(GTAV_Profiles.contains(defaultProfile)) - { + else if(GTAV_Profiles.contains(defaultProfile)) { openProfile(defaultProfile); } } - else - { + else { GTAV_Profiles = QStringList(); setupProfileUi(); } diff --git a/res/gta5sync.ts b/res/gta5sync.ts index 5b26309..ec272b6 100644 --- a/res/gta5sync.ts +++ b/res/gta5sync.ts @@ -193,20 +193,20 @@ Pictures and Savegames - - + + Snapmatic Image Editor - + Patching of Snapmatic Image failed because of I/O Error - + Patching of Snapmatic Image failed because of Image Error @@ -367,14 +367,14 @@ Pictures and Savegames - + Custom Avatar Custom Avatar Description in SC, don't use Special Character! - + Custom Picture Custom Picture Description in SC, don't use Special Character! @@ -602,19 +602,9 @@ Y: %2 Content Open/Select Mode - - - Open with Singleclick - - - - - Open with Doubleclick - - - Select with Singleclick + Open with Doubleclick @@ -731,26 +721,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 - - - - - - - - + + + + + + + + Language: %1 @@ -771,7 +761,7 @@ Y: %2 - + Participate in %1 User Statistics @@ -807,8 +797,8 @@ Y: %2 - - + + Participation ID: %1 @@ -830,8 +820,8 @@ Y: %2 - - + + Current: %1 @@ -893,95 +883,95 @@ Y: %2 - + System System in context of System default - + %1 (Game language) Next closest language compared to the Game settings - - + + %1 (Closest to Interface) Next closest language compared to the Interface - - - + + + Auto Automatic language choice. - + %1 (Language priority) First language a person can talk with a different person/application. "Native" or "Not Native". - + %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 @@ -1023,37 +1013,37 @@ Y: %2 - + Export as &Picture... - + Export as &Snapmatic... - + &Edit Properties... - + &Overwrite Image... - + Open &Map Viewer... - + Open &JSON Editor... @@ -1305,23 +1295,23 @@ Press 1 for Default View - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + Import... @@ -1338,29 +1328,29 @@ Press 1 for Default View - + All image files (%1) - - + + All files (**) - + Can't import %1 because file can't be open - + Can't import %1 because file can't be parsed properly @@ -1375,189 +1365,189 @@ Press 1 for Default View - + Snapmatic Loader - + <h4>Following Snapmatic Pictures got repaired</h4>%1 - + Importable files (%1) - - + + GTA V Export (*.g5e) - - + + Savegames files (SGTA*) - - + + Snapmatic pictures (PGTA*) - - - + + + No valid file is selected - - + + Import file %1 of %2 files - + Import failed with... %1 - - + + Failed to read Snapmatic picture - - + + Failed to read Savegame file - + Can't import %1 because file format can't be detected - + Prepare Content for Import... - + Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e - + A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp? - + Failed to import the Snapmatic picture, can't copy the file into profile - + Failed to import the Savegame, can't copy the file into profile - + Failed to import the Savegame, no Savegame slot is left - - - - - + + + + + Export selected... - - + + JPG pictures and GTA Snapmatic - - + + JPG pictures only - - + + GTA Snapmatic only - + %1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as: - + Initialising export... - + Export failed with... %1 - - + + No Snapmatic pictures or Savegames files are selected - - - + + + Remove selected - + You really want remove the selected Snapmatic picutres and Savegame files? - + Failed to remove all selected Snapmatic pictures and/or Savegame files - - - - - + + + + + No Snapmatic pictures are selected - - - - - + + + + + %1 failed with... %2 @@ -1565,87 +1555,87 @@ Press 1 for Default View - - + + Qualify as Avatar - - - - + + + + Patch selected... - - - - - - - - + + + + + + + + Patch file %1 of %2 files - + Qualify %1 failed with... - - + + Change Players... - + Change Players %1 failed with... - - - + + + Change Crew... - + Failed to enter a valid Snapmatic Crew ID - + Change Crew %1 failed with... - - - + + + Change Title... - + Failed to enter a valid Snapmatic title - + Change Title %1 failed with... - + All profile files (*.g5e SGTA* PGTA*) @@ -1731,37 +1721,45 @@ Press 1 for Default View - + &View - + + + &Export - + + + &Remove - + + &Select - + + &Deselect - + + Select &All - + + &Deselect All @@ -1861,7 +1859,7 @@ Press 1 for Default View - + Snapmatic Properties @@ -1954,7 +1952,7 @@ Press 1 for Default View - + Patching of Snapmatic Properties failed because of I/O Error @@ -1964,25 +1962,25 @@ Press 1 for Default View - + Snapmatic Crew - + New Snapmatic crew: - + Snapmatic Title - + New Snapmatic title: @@ -2157,52 +2155,62 @@ Press 1 for Default View - + + + Edi&t - + + + Show &In-game - + + + Hide &In-game - + &Export - + &View - + &Remove - + + &Select - + + &Deselect - + + Select &All - + + &Deselect All @@ -2217,12 +2225,12 @@ Press 1 for Default View - + Failed to hide %1 In-game from your Snapmatic pictures - + Failed to show %1 In-game from your Snapmatic pictures @@ -2286,7 +2294,7 @@ Press 1 for Default View - + &Close @@ -2323,7 +2331,7 @@ Press 1 for Default View - + &About %1 @@ -2379,15 +2387,15 @@ Press 1 for Default View - + Select &GTA V Folder... - - - + + + Select GTA V Folder... @@ -2403,65 +2411,73 @@ Press 1 for Default View + + Change &Title... + + Change &Crew... + + &Qualify as Avatar + + Change &Players... - - - - - Show In-game - - - + + Show In-game + + + + + + Hide In-game - - + + Select Profile - + Open File... - - - - + + + + Open File - + Can't open %1 because of not valid file format - + %1 - Messages diff --git a/res/gta5sync_de.qm b/res/gta5sync_de.qm index 5ef25a4..f447bb2 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 7ce5ee4..e42bbd1 100644 --- a/res/gta5sync_de.ts +++ b/res/gta5sync_de.ts @@ -178,8 +178,8 @@ Snapmatic Bilder und Spielständen - - + + Snapmatic Image Editor Snapmatic Bild Editor @@ -210,13 +210,13 @@ Snapmatic Bilder und Spielständen - + Patching of Snapmatic Image failed because of I/O Error Patchen von Snapmatic Bild fehlgeschlagen wegen I/O Fehler - + Patching of Snapmatic Image failed because of Image Error Patchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler @@ -391,14 +391,14 @@ Snapmatic Bilder und Spielständen - + Custom Avatar Custom Avatar Description in SC, don't use Special Character! Eigener Avatar - + Custom Picture Custom Picture Description in SC, don't use Special Character! Eigenes Bild @@ -613,19 +613,17 @@ Y: %2 Inhalte Öffnen/Auswählen Modus - Open with Singleclick - Ein Klick zum öffnen + Ein Klick zum öffnen - + Open with Doubleclick Doppelklick zum öffnen - Select with Singleclick - Ein Klick zum auswählen + Ein Klick zum auswählen @@ -751,26 +749,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 Gefunden: %1 - - - - - - - - + + + + + + + + Language: %1 Sprache: %1 @@ -791,7 +789,7 @@ Y: %2 - + Participate in %1 User Statistics An %1 Benutzerstatistik teilnehmen @@ -822,8 +820,8 @@ Y: %2 - - + + Participation ID: %1 Teilnahme ID: %1 @@ -879,8 +877,8 @@ Y: %2 - - + + Current: %1 Aktuell: %1 @@ -917,95 +915,95 @@ Y: %2 Abbre&chen - + %1 %1 %1 - + System System in context of System default System - + %1 (Game language) Next closest language compared to the Game settings %1 (Spielsprache) - - + + %1 (Closest to Interface) Next closest language compared to the Interface %1 (Näheste zur Oberfläche) - - - + + + Auto Automatic language choice. Automatisch - + %1 (Language priority) First language a person can talk with a different person/application. "Native" or "Not Native". %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 @@ -1056,31 +1054,31 @@ Y: %2 - + Export as &Picture... Als &Bild exportieren... - + Export as &Snapmatic... Als &Snapmatic exportieren... - + &Edit Properties... Eigenschaften bearb&eiten... - + &Overwrite Image... Bild &überschreiben... - + Open &Map Viewer... &Kartenansicht öffnen... @@ -1229,7 +1227,7 @@ Drücke 1 für Standardmodus - + Open &JSON Editor... &JSON Editor öffnen... @@ -1332,35 +1330,35 @@ Drücke 1 für Standardmodus Lade... - + Snapmatic Loader Snapmatic Lader - + <h4>Following Snapmatic Pictures got repaired</h4>%1 <h4>Folgende Snapmatic Bilder wurden repariert</h4>%1 - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + Import... Importieren... @@ -1375,45 +1373,45 @@ Drücke 1 für Standardmodus Importieren - - + + Savegames files (SGTA*) Spielstanddateien (SGTA*) - - + + Snapmatic pictures (PGTA*) Snapmatic Bilder (PGTA*) - + Importable files (%1) Importfähige Dateien (%1) - + All image files (%1) Alle Bilddateien (%1) - - + + All files (**) Alle Dateien (**) - - + + Import file %1 of %2 files Importiere Datei %1 von %2 Dateien - + Import failed with... %1 @@ -1422,55 +1420,55 @@ Drücke 1 für Standardmodus %1 - - + + Failed to read Snapmatic picture Fehler beim Lesen vom Snapmatic Bild - - + + Failed to read Savegame file Fehler beim Lesen von Spielstanddatei - + Can't import %1 because file can't be open Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann - + Can't import %1 because file can't be parsed properly Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann - + Can't import %1 because file format can't be detected Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann - + Initialising export... Initialisiere Export... - + Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e - + %1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as: %1Exportiere Snapmatic Bilder%2<br><br>JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen<br>Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren<br><br>Exportieren als: - - - + + + No valid file is selected Keine gültige Datei wurde ausgewählt @@ -1480,91 +1478,91 @@ Drücke 1 für Standardmodus Aktivierte Bilder: %1 von %2 - + A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp? Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen? - + Failed to import the Snapmatic picture, can't copy the file into profile Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren - + Failed to import the Savegame, can't copy the file into profile Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren - + Failed to import the Savegame, no Savegame slot is left Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei - - + + JPG pictures and GTA Snapmatic JPG Bilder und GTA Snapmatic - - + + JPG pictures only Nur JPG Bilder - - + + GTA Snapmatic only Nur GTA Snapmatic - - - - + + + + Patch selected... Auswahl patchen... - - - - - - - - + + + + + + + + Patch file %1 of %2 files Patche Datei %1 von %2 Dateien - - + + Qualify as Avatar Als Avatar qualifizieren - - - - - + + + + + No Snapmatic pictures are selected Keine Snapmatic Bilder sind ausgewählt - + Failed to remove all selected Snapmatic pictures and/or Savegame files Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien - - - - - + + + + + %1 failed with... %2 @@ -1574,93 +1572,93 @@ Drücke 1 für Standardmodus %2 - + Prepare Content for Import... Bereite Inhalt für Import vor... - + Qualify %1 failed with... Qualifizieren - - + + Change Players... Spieler ändern... - + Change Players %1 failed with... Spieler ändern - - - + + + Change Crew... Crew ändern... - + Failed to enter a valid Snapmatic Crew ID Fehlgeschlagen beim Eingeben von einer gültigen Crew ID - + Change Crew %1 failed with... Crew ändern - - - + + + Change Title... Titel ändern... - + Failed to enter a valid Snapmatic title Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel - + Change Title %1 failed with... Titel ändern - - + + No Snapmatic pictures or Savegames files are selected Keine Snapmatic Bilder oder Spielstände sind ausgewählt - - - + + + Remove selected Auswahl löschen - + You really want remove the selected Snapmatic picutres and Savegame files? Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen? - - - - - + + + + + Export selected... Auswahl exportieren... - + Export failed with... %1 @@ -1674,13 +1672,13 @@ Drücke 1 für Standardmodus Exportiere Datei %1 von %2 Dateien - + All profile files (*.g5e SGTA* PGTA*) Alle Profildateien (*.g5e SGTA* PGTA*) - - + + GTA V Export (*.g5e) GTA V Export (*.g5e) @@ -1804,32 +1802,38 @@ Drücke 1 für Standardmodus Fehlgeschlagen beim Löschen %1 von deinen Spielständen - + &View A&nsehen - + + + &Remove Entfe&rnen - + + &Select Au&swählen - + + &Deselect A&bwählen - + + Select &All &Alles auswählen - + + &Deselect All Alles a&bwählen @@ -1844,7 +1848,9 @@ Drücke 1 für Standardmodus Spielstand kopieren - + + + &Export &Exportieren @@ -1898,7 +1904,7 @@ Drücke 1 für Standardmodus - + Snapmatic Properties Snapmatic Eigenschaften @@ -1938,7 +1944,7 @@ Drücke 1 für Standardmodus Meme - + Snapmatic Title Snapmatic Titel @@ -2049,24 +2055,24 @@ Drücke 1 für Standardmodus - + Patching of Snapmatic Properties failed because of I/O Error Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler - + New Snapmatic title: Neuer Snapmatic Titel: - + Snapmatic Crew Snapmatic Crew - + New Snapmatic crew: Neue Snapmatic Crew: @@ -2184,62 +2190,72 @@ Drücke 1 für Standardmodus Bist du sicher %1 von deine Snapmatic Bilder zu löschen? - + Failed to hide %1 In-game from your Snapmatic pictures Fehlgeschlagen beim Ausblenden von %1 im Spiel von deinen Snapmatic Bildern - + Failed to show %1 In-game from your Snapmatic pictures Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern - + + + Edi&t Bearbei&ten - + &Export &Exportieren - + + + Show &In-game &Im Spiel anzeigen - + + + Hide &In-game &Im Spiel ausblenden - + &View A&nsehen - + &Remove Entfe&rnen - + + &Select Au&swählen - + + &Deselect A&bwählen - + + Select &All Alles &auswählen - + + &Deselect All Alles a&bwählen @@ -2352,21 +2368,29 @@ Drücke 1 für Standardmodus + + Change &Title... &Titel ändern... + + &Qualify as Avatar Als Avatar &qualifizieren + + Change &Players... S&pieler ändern... + + Change &Crew... &Crew ändern... @@ -2382,7 +2406,7 @@ Drücke 1 für Standardmodus - + Select &GTA V Folder... Wähle &GTA V Ordner... @@ -2398,7 +2422,7 @@ Drücke 1 für Standardmodus - + &Close S&chließen @@ -2434,21 +2458,21 @@ Drücke 1 für Standardmodus - - + + Select Profile Profil auswählen - - - + + + Select GTA V Folder... Wähle GTA V Ordner... - + Open File... Datei öffnen... @@ -2461,25 +2485,25 @@ Drücke 1 für Standardmodus - + &About %1 &Über %1 - - - - + + + + Open File Datei öffnen - + Can't open %1 because of not valid file format Kann nicht %1 öffnen weil Dateiformat nicht gültig ist - + %1 - Messages %1 - Nachrichten @@ -2489,16 +2513,16 @@ Drücke 1 für Standardmodus &Neuladen - - - + + + Show In-game Im Spiel anzeigen - - - + + + Hide In-game Im Spiel ausblenden diff --git a/res/gta5sync_en_US.ts b/res/gta5sync_en_US.ts index af2c115..fbd6d73 100644 --- a/res/gta5sync_en_US.ts +++ b/res/gta5sync_en_US.ts @@ -168,8 +168,8 @@ Pictures and Savegames - - + + Snapmatic Image Editor @@ -200,13 +200,13 @@ Pictures and Savegames - + Patching of Snapmatic Image failed because of I/O Error - + Patching of Snapmatic Image failed because of Image Error @@ -373,14 +373,14 @@ Pictures and Savegames - + Custom Avatar Custom Avatar Description in SC, don't use Special Character! - + Custom Picture Custom Picture Description in SC, don't use Special Character! @@ -602,19 +602,9 @@ Y: %2 Content Open/Select Mode - - - Open with Singleclick - - - - - Open with Doubleclick - - - Select with Singleclick + Open with Doubleclick @@ -731,26 +721,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 - - - - - - - - + + + + + + + + Language: %1 @@ -766,7 +756,7 @@ Y: %2 - + Participate in %1 User Statistics @@ -787,8 +777,8 @@ Y: %2 - - + + Participation ID: %1 @@ -850,8 +840,8 @@ Y: %2 - - + + Current: %1 @@ -893,95 +883,95 @@ Y: %2 - + System System in context of System default - + %1 (Game language) Next closest language compared to the Game settings - - + + %1 (Closest to Interface) Next closest language compared to the Interface - - - + + + Auto Automatic language choice. - + %1 (Language priority) First language a person can talk with a different person/application. "Native" or "Not Native". - + %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 @@ -1023,31 +1013,31 @@ Y: %2 - + Export as &Picture... - + Export as &Snapmatic... - + &Overwrite Image... - + &Edit Properties... - + Open &Map Viewer... @@ -1199,7 +1189,7 @@ Press 1 for Default View - + Open &JSON Editor... @@ -1313,35 +1303,35 @@ Press 1 for Default View - + Snapmatic Loader - + <h4>Following Snapmatic Pictures got repaired</h4>%1 - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + Import... @@ -1356,219 +1346,219 @@ Press 1 for Default View - + Importable files (%1) - - + + GTA V Export (*.g5e) - - + + Savegames files (SGTA*) - - + + Snapmatic pictures (PGTA*) - + All image files (%1) - - + + All files (**) - - - + + + No valid file is selected - - + + Import file %1 of %2 files - + Import failed with... %1 - - + + Failed to read Snapmatic picture - - + + Failed to read Savegame file - + Can't import %1 because file can't be open - + Can't import %1 because file can't be parsed properly - + Can't import %1 because file format can't be detected - + Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e - + Failed to import the Snapmatic picture, can't copy the file into profile - + Failed to import the Savegame, can't copy the file into profile - + Failed to import the Savegame, no Savegame slot is left - - + + JPG pictures and GTA Snapmatic - - + + JPG pictures only - - + + GTA Snapmatic only - + %1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as: - - - - - + + + + + Export selected... - + Initialising export... Initializing export... - + Export failed with... %1 - - + + No Snapmatic pictures or Savegames files are selected - - - + + + Remove selected - + You really want remove the selected Snapmatic picutres and Savegame files? - - + + Qualify as Avatar - - - - - + + + + + No Snapmatic pictures are selected - - - - + + + + Patch selected... - - - - - - - - + + + + + + + + Patch file %1 of %2 files - - - - - + + + + + %1 failed with... %2 @@ -1576,76 +1566,76 @@ Press 1 for Default View - + Failed to remove all selected Snapmatic pictures and/or Savegame files - + Prepare Content for Import... - + A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp? - + Qualify %1 failed with... - - + + Change Players... - + Change Players %1 failed with... - - - + + + Change Crew... - + Failed to enter a valid Snapmatic Crew ID - + Change Crew %1 failed with... - - - + + + Change Title... - + Failed to enter a valid Snapmatic title - + Change Title %1 failed with... - + All profile files (*.g5e SGTA* PGTA*) @@ -1731,37 +1721,45 @@ Press 1 for Default View - + &View - + + + &Export - + + + &Remove - + + &Select - + + &Deselect - + + Select &All - + + &Deselect All @@ -1861,7 +1859,7 @@ Press 1 for Default View - + Snapmatic Properties @@ -2006,30 +2004,30 @@ Press 1 for Default View - + Patching of Snapmatic Properties failed because of I/O Error - + Snapmatic Title - + New Snapmatic title: - + Snapmatic Crew - + New Snapmatic crew: @@ -2157,52 +2155,62 @@ Press 1 for Default View - + + + Edi&t - + + + Show &In-game - + + + Hide &In-game - + &Export - + &View - + &Remove - + + &Select - + + &Deselect - + + Select &All - + + &Deselect All @@ -2217,12 +2225,12 @@ Press 1 for Default View - + Failed to hide %1 In-game from your Snapmatic pictures - + Failed to show %1 In-game from your Snapmatic pictures @@ -2286,7 +2294,7 @@ Press 1 for Default View - + &Close @@ -2318,7 +2326,7 @@ Press 1 for Default View - + &About %1 @@ -2374,15 +2382,15 @@ Press 1 for Default View - + Select &GTA V Folder... - - - + + + Select GTA V Folder... @@ -2398,6 +2406,8 @@ Press 1 for Default View + + Change &Players... @@ -2408,60 +2418,66 @@ Press 1 for Default View + + Change &Title... + + Change &Crew... + + &Qualify as Avatar - - + + Select Profile - + Open File... - - - - + + + + Open File - + Can't open %1 because of not valid file format - + %1 - Messages - - - - - Show In-game - - - + + Show In-game + + + + + + Hide In-game diff --git a/res/gta5sync_fr.qm b/res/gta5sync_fr.qm index 062da13..752404c 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 338db28..8417299 100644 --- a/res/gta5sync_fr.ts +++ b/res/gta5sync_fr.ts @@ -178,8 +178,8 @@ et les fichiers de sauvegarde de Grand Theft Auto V - - + + Snapmatic Image Editor Éditeur d'images Snapmatic @@ -210,13 +210,13 @@ et les fichiers de sauvegarde de Grand Theft Auto V - + 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 @@ -391,14 +391,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V - + Custom Avatar Custom Avatar Description in SC, don't use Special Character! Avatar personnalisé - + Custom Picture Custom Picture Description in SC, don't use Special Character! Image personnalisé @@ -623,19 +623,17 @@ Y : %2 Ouverture/Sélection du contenu - Open with Singleclick - Ouvrir avec un clic + Ouvrir avec un clic - + Open with Doubleclick Ouvrir avec un double-clic - Select with Singleclick - Sélectionner avec un clic + Sélectionner avec un clic @@ -751,26 +749,26 @@ Y : %2 - - - - - - + + + + + + Found: %1 Trouvé : %1 - - - - - - - - + + + + + + + + Language: %1 Langue : %1 @@ -791,7 +789,7 @@ Y : %2 - + Participate in %1 User Statistics Participer aux statistiques d'usage %1 @@ -822,8 +820,8 @@ Y : %2 - - + + Participation ID: %1 ID de participation : %1 @@ -874,8 +872,8 @@ Y : %2 - - + + Current: %1 Actuel : %1 @@ -917,95 +915,95 @@ Y : %2 &Annuler - + System System in context of System default Système - + %1 (Game language) Next closest language compared to the Game settings %1 (Langue du jeu) - - + + %1 (Closest to Interface) Next closest language compared to the Interface %1 (Langage proche de l'interface) - - - + + + Auto Automatic language choice. Automatique - + %1 (Language priority) First language a person can talk with a different person/application. "Native" or "Not Native". %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 @@ -1136,31 +1134,31 @@ Y : %2 - + Export as &Picture... Exporter comme &image... - + Export as &Snapmatic... Exporter comme &Snapmatic... - + &Overwrite Image... &Remplacer l'image... - + &Edit Properties... Modifier les &propriétés... - + Open &Map Viewer... Ouvrir la &Visionneuse de Carte... @@ -1229,7 +1227,7 @@ Appuyer sur 1 pour le mode par défaut - + Open &JSON Editor... Ouvrir l'éditeur &JSON... @@ -1343,35 +1341,35 @@ Appuyer sur 1 pour le mode par défaut Chargement... - + Snapmatic Loader Snapmatic Loader - + <h4>Following Snapmatic Pictures got repaired</h4>%1 <h4>Les Snapmatic suivants ont été répaés</h4>%1 - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + Import... Importer... @@ -1386,40 +1384,40 @@ Appuyer sur 1 pour le mode par défaut Importer - - + + Savegames files (SGTA*) Fichiers de sauvegarde GTA (SGTA*) - - + + Snapmatic pictures (PGTA*) Photos Snapmatic (PGTA*) - + All image files (%1) Toutes les images (%1) - - + + All files (**) Tous les fichiers (**) - - + + Import file %1 of %2 files Importation du fichier %1 sur %2 - + Import failed with... %1 @@ -1428,148 +1426,148 @@ Appuyer sur 1 pour le mode par défaut %1 - - - + + + No valid file is selected Fichier invalide - + Importable files (%1) Fichiers importables (%1) - - + + Failed to read Snapmatic picture Impossible d'ouvrir la photo Snapmatic - - + + Failed to read Savegame file Impossible de lire le fichier de sauvegarde - + Can't import %1 because file can't be open Impossible d'importer %1, le fichier ne peut pas être ouvert - + Can't import %1 because file can't be parsed properly Impossible d'importer %1, le fichier ne peut pas être parsé correctement - + Can't import %1 because file format can't be detected Impossible d'importer %1, le format du fichier n'est pas détecté - + Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e Impossible d'importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e) - + Failed to import the Snapmatic picture, can't copy the file into profile Impossible d'importer la photo Snapmatic, impossible de copier le fichier dans le profil - + Failed to import the Savegame, can't copy the file into profile Impossible d'importer la sauvegarde, impossible de copier le fichier dans le profil - + Failed to import the Savegame, no Savegame slot is left Impossible d'importer la sauvegarde, aucun emplacement libre - - + + JPG pictures and GTA Snapmatic Images JPG et GTA Snapmatic - - + + JPG pictures only Images JPG seulement - - + + GTA Snapmatic only GTA Snapmatic seulement - + %1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as: %1Exporter les photos Snapmatic%2<br><br>Les fichiers JPG permettent d'ouvrir les photos avec une visionneuse d'images<br>Les GTA Snapmatic permettent d'importer les photos dans le jeu<br><br>Exporter comme : - - - - - + + + + + Export selected... Exporter la sélection... - + Initialising export... Initialisation de l'export... - - + + Qualify as Avatar Qualifier comme Avatar - - - - - + + + + + No Snapmatic pictures are selected Aucun Snapmatic sélectionné - - - - + + + + Patch selected... Patcher la sélection... - - - - - - - - + + + + + + + + Patch file %1 of %2 files Patch du fichier %1 sur %2 - - - - - + + + + + %1 failed with... %2 @@ -1579,76 +1577,76 @@ Appuyer sur 1 pour le mode par défaut %2 - + Failed to remove all selected Snapmatic pictures and/or Savegame files Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés - + Prepare Content for Import... Préparation du contenu pour l'import... - + A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp? Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ? - + Qualify %1 failed with... Qualifier - - + + Change Players... Modifier les joueurs... - + Change Players %1 failed with... Modifier les joueurs - - - + + + Change Crew... Modifier le Crew... - + Failed to enter a valid Snapmatic Crew ID Snapmatic Crew ID invalide - + Change Crew %1 failed with... Changer le Crew - - - + + + Change Title... Changer le titre... - + Failed to enter a valid Snapmatic title Titre Snapmatic invalide - + Change Title %1 failed with... Changer le titre - + Export failed with... %1 @@ -1657,31 +1655,31 @@ Appuyer sur 1 pour le mode par défaut %1 - - + + No Snapmatic pictures or Savegames files are selected Aucun fichier de sauvegarde ou photo Snapmatic sélectionné - - - + + + Remove selected Supprimer la sélection - + You really want remove the selected Snapmatic picutres and Savegame files? Supprimer la sélection ? - + All profile files (*.g5e SGTA* PGTA*) Tous les fichiers de profil (*.g5e SGTA* PGTA*) - - + + GTA V Export (*.g5e) GTA V Export (*.g5e) @@ -1775,7 +1773,9 @@ Appuyer sur 1 pour le mode par défaut Supprimer - + + + &Export &Exporter @@ -1866,32 +1866,38 @@ Appuyer sur 1 pour le mode par défaut Impossible de supprimer %1 - + &View &Voir - + + + &Remove &Supprimer - + + &Select &Sélectionner - + + &Deselect &Déselectionner - + + Select &All Sélectionner to&ut - + + &Deselect All &Déselectionner tout @@ -1907,7 +1913,7 @@ Appuyer sur 1 pour le mode par défaut - + Snapmatic Properties Propriétés Snapmatic @@ -1947,7 +1953,7 @@ Appuyer sur 1 pour le mode par défaut Meme - + Snapmatic Title Titre Snapmatic @@ -2060,24 +2066,24 @@ Appuyer sur 1 pour le mode par défaut - + Patching of Snapmatic Properties failed because of I/O Error La modification des propriétés Snapmatic a échoué : erreur d'entrée/sortie - + New Snapmatic title: Nouveau titre Snapmatic : - + Snapmatic Crew Crew Snapmatic - + New Snapmatic crew: Nouveau crew Snapmatic : @@ -2215,62 +2221,72 @@ Appuyer sur 1 pour le mode par défaut Impossible de supprimer %1 - + Failed to hide %1 In-game from your Snapmatic pictures %1 n'a pas pu être rendu invisible en jeu - + Failed to show %1 In-game from your Snapmatic pictures %1 n'a pas pu être rendu visible en jeu - + + + Edi&t Édi&ter - + + + Show &In-game &Visible en jeu - + + + Hide &In-game &Invisible en jeu - + &Export &Exporter - + &View &Voir - + &Remove S&upprimer - + + &Select &Sélectionner - + + &Deselect &Déselectionner - + + Select &All Sélectionner &tout - + + &Deselect All &Déselectionner tout @@ -2328,7 +2344,7 @@ Appuyer sur 1 pour le mode par défaut - + &Close Fer&mer @@ -2404,15 +2420,15 @@ Appuyer sur 1 pour le mode par défaut - + Select &GTA V Folder... Modifier l'emplacement de &GTA V... - - - + + + Select GTA V Folder... Modifier l'emplacement de GTA V... @@ -2423,6 +2439,8 @@ Appuyer sur 1 pour le mode par défaut + + Change &Players... Modifier les &joueurs... @@ -2433,16 +2451,22 @@ Appuyer sur 1 pour le mode par défaut + + Change &Title... Changer le &titre... + + Change &Crew... Changer le &Crew... + + &Qualify as Avatar &Qualifier comme Avatar @@ -2465,51 +2489,51 @@ Appuyer sur 1 pour le mode par défaut - + &About %1 &À propos de %1 - - + + Select Profile Sélectionner un profil - + Open File... Ouvrir... - - - - + + + + Open File Ouvrir - + Can't open %1 because of not valid file format Impossible d'ouvrir %1, format invalide - + %1 - Messages %1 - Nouvelles - - - + + + Show In-game Visible en jeu - - - + + + Hide In-game Invisible en jeu diff --git a/res/gta5sync_ko.qm b/res/gta5sync_ko.qm index 9069772..3e2a170 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 129afd4..1e20a2e 100644 --- a/res/gta5sync_ko.ts +++ b/res/gta5sync_ko.ts @@ -203,20 +203,20 @@ Pictures and Savegames - - + + Snapmatic Image Editor 스냅매틱 이미지 편집기 - + Patching of Snapmatic Image failed because of I/O Error I/O 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다. - + Patching of Snapmatic Image failed because of Image Error 이미지 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다. @@ -385,7 +385,7 @@ Pictures and Savegames - + Custom Avatar Custom Avatar Description in SC, don't use Special Character! 소셜클럽의 사용자 지정 아바타 설명입니다. 특수 문자를 사용하지 마십시오! @@ -393,7 +393,7 @@ Pictures and Savegames - + Custom Picture Custom Picture Description in SC, don't use Special Character! 소셜클럽의 사용자 지정 그림 설명입니다. 특수 문자를 사용하지 마십시오! @@ -630,19 +630,17 @@ Y: %2 컨텐츠 열기/선택 모드 - Open with Singleclick - 한 번 클릭으로 열기 + 한 번 클릭으로 열기 - + Open with Doubleclick 두 번 클릭으로 열기 - Select with Singleclick - 한 번 클릭으로 선택 + 한 번 클릭으로 선택 @@ -758,26 +756,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 찾음: %1 - - - - - - - - + + + + + + + + Language: %1 언어: %1 @@ -798,7 +796,7 @@ Y: %2 - + Participate in %1 User Statistics 사용자 통계 참가 %1 @@ -834,8 +832,8 @@ Y: %2 - - + + Participation ID: %1 참여 아이디: %1 @@ -857,8 +855,8 @@ Y: %2 - - + + Current: %1 현재: %1 @@ -926,100 +924,100 @@ Y: %2 취소(&C) - + %1 (Language priority) First language a person can talk with a different person/application. "Native" or "Not Native". %1 (우선 순위) - + System System in context of System default 시스템 - + %1 (Game language) Next closest language compared to the Game settings 게임 설정과 가장 가까운 언어 %1 (게임 언어) - - - + + + Auto Automatic language choice. 언어 자동 선택 자동 - - + + %1 (Closest to Interface) Next closest language compared to the Interface 인터페이스와 가장 가까운 언어 %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 스팀 정의 @@ -1064,37 +1062,37 @@ Y: %2 - + Export as &Picture... 내 PC에 이미지로 내보내기(&P) - + Export as &Snapmatic... 내 PC에 스냅매틱으로 내보내기(&S) - + &Edit Properties... 속성 편집(&E) - + &Overwrite Image... 이미지 덮어쓰기(&O) - + Open &Map Viewer... 지도 뷰어 열기(&M) - + Open &JSON Editor... JSON 편집기 열기(&J) @@ -1349,23 +1347,23 @@ Press 1 for Default View - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + Import... 가져오기 @@ -1382,29 +1380,29 @@ Press 1 for Default View - + All image files (%1) 모든 이미지 파일 (%1) - - + + All files (**) 모든 파일 (**) - + Can't import %1 because file can't be open 파일을 열 수 없으므로 %1을 가져올 수 없습니다. - + Can't import %1 because file can't be parsed properly 파일을 구문 분석할 수 없으므로 %1을 가져올 수 없습니다. @@ -1419,53 +1417,53 @@ Press 1 for Default View 불러오는 중... - + Snapmatic Loader 스냅매틱 불러오기 - + <h4>Following Snapmatic Pictures got repaired</h4>%1 <h4>다음 스냅매틱 이미지를 복구했습니다. </h4>%1 - + Importable files (%1) 가져올 수 있는 파일 (%1) - - + + GTA V Export (*.g5e) GTA V로 내보내기 (*.g5e) - - + + Savegames files (SGTA*) 세이브 파일 (SGTA*) - - + + Snapmatic pictures (PGTA*) 스냅매틱 이미지 (PGTA*) - - - + + + No valid file is selected 올바른 파일이 선택되지 않았습니다. - - + + Import file %1 of %2 files %2 파일 중 %1 파일을 가져옵니다. - + Import failed with... %1 @@ -1474,91 +1472,91 @@ Press 1 for Default View %1 - - + + Failed to read Snapmatic picture 스냅매틱 이미지를 읽지 못했습니다. - - + + Failed to read Savegame file 세이브 파일을 읽지 못했습니다. - + Can't import %1 because file format can't be detected 파일 형식을 검색할 수 없으므로 %1을 가져올 수 없습니다. - + Prepare Content for Import... 가져올 컨텐츠를 준비합니다. - + Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e 스냅매틱 이미지를 가져오지 못했습니다. 파일이 PGTA로 시작되거나 .g5e로 끝나지 않습니다. - + A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp? uid %1이(가) 있는 스냅매틱 이미지가 이미 있습니다. 가져오기를 새 uid 및 타임스탬프를 할당하시겠습니까? - + Failed to import the Snapmatic picture, can't copy the file into profile 스냅매틱 이미지를 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다. - + Failed to import the Savegame, can't copy the file into profile 게임 저장 파일을 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다. - + Failed to import the Savegame, no Savegame slot is left 게임 저장 파일을 가져오지 못했습니다. 게임 저장 슬롯이 남아 있지 않습니다. - - - - - + + + + + Export selected... 내보내기를 선택했습니다. - - + + JPG pictures and GTA Snapmatic JPG 이미지 및 GTA 스냅매틱 - - + + JPG pictures only JPG 이미지만 - - + + GTA Snapmatic only GTA 스냅매틱만 - + %1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as: %1 스냅매틱 이미지 내보내기를 시작합니다.%2 <br><br>JPG 이미지를 사용하면 이미지 뷰어로 파일을 열 수 있습니다.<br>GTA 스냅매틱을 사용하면 다음과 같이 이미지를 게임으로 가져올 수 있습니다. - + Initialising export... 내보내기를 초기화하는 중... - + Export failed with... %1 @@ -1567,45 +1565,45 @@ Press 1 for Default View %1 - - + + No Snapmatic pictures or Savegames files are selected 스냅매틱 이미지 또는 세이브 파일이 선택되지 않았습니다. - - - + + + Remove selected 선택한 항목 삭제 - + You really want remove the selected Snapmatic picutres and Savegame files? 선택한 스냅매틱 이미지 및 세이브 파일을 삭제하시겠습니까? - + Failed to remove all selected Snapmatic pictures and/or Savegame files 선택한 모든 스냅매틱 이미지 및 세이브 파일을 삭제하지 못했습니다. - - - - - + + + + + No Snapmatic pictures are selected 스냅매틱 이미지가 선택되지 않았습니다. - - - - - + + + + + %1 failed with... %2 @@ -1616,91 +1614,91 @@ Press 1 for Default View %2 - - + + Qualify as Avatar 아바타 자격 부여 - - - - + + + + Patch selected... 패치가 선택됨... - - - - - - - - + + + + + + + + Patch file %1 of %2 files %2 파일의 %1 패치 파일입니다. - + Qualify %1 failed with... %1이(가) 실패한 경우... 자격 부여 - - + + Change Players... 플레이어 변경 - + Change Players %1 failed with... %1이(가) 실패한 경우... 플레이어 변경 - - - + + + Change Crew... 조직 변경 - + Failed to enter a valid Snapmatic Crew ID 올바른 스냅매틱 조직 아이디를 입력하지 못했습니다. - + Change Crew %1 failed with... %1이(가) 실패한 경우... 조직 변경 - - - + + + Change Title... 제목 변경 - + Failed to enter a valid Snapmatic title 올바른 스냅매틱 제목을 입력하지 않았습니다. - + Change Title %1 failed with... %1이(가) 실패한 경우... 제목 변경 - + All profile files (*.g5e SGTA* PGTA*) 모든 프로필 파일 (*.g5e SGTA* PGTA*) @@ -1794,37 +1792,45 @@ Press 1 for Default View 삭제 - + &View 보기(&V) - + + + &Export 내보내기(&E) - + + + &Remove 삭제(&R) - + + &Select 선택(&S) - + + &Deselect 선택 해제(&D) - + + Select &All 모두 선택(&A) - + + &Deselect All 모두 선택 해제(&D) @@ -1926,7 +1932,7 @@ Press 1 for Default View - + Snapmatic Properties 스냅매틱 속성 @@ -2019,7 +2025,7 @@ Press 1 for Default View - + Patching of Snapmatic Properties failed because of I/O Error I/O 오류로 인해 스냅매틱 속성을 패치하지 못했습니다. @@ -2029,25 +2035,25 @@ Press 1 for Default View JSON 오류로 인해 스냅매틱 속성을 패치하지 못했습니다. - + Snapmatic Crew 조직 스냅매틱 - + New Snapmatic crew: 새로운 조직 스냅매틱: - + Snapmatic Title 스냅매틱 제목 - + New Snapmatic title: 새로운 스냅매틱 제목: @@ -2227,52 +2233,62 @@ Press 1 for Default View 삭제 - + + + Edi&t 편집(&T) - + + + Show &In-game 인게임에서 보이기(&I) - + + + Hide &In-game 인게임에서 숨기기(&I) - + &Export 내보내기(&E) - + &View 보기(&V) - + &Remove 삭제(&R) - + + &Select 선택(&S) - + + &Deselect 선택 해제(&D) - + + Select &All 모두 선택(&A) - + + &Deselect All 모두 선택 해제(&D) @@ -2287,12 +2303,12 @@ Press 1 for Default View 스냅매틱 이미지에서 %1을 삭제하지 못했습니다. - + Failed to hide %1 In-game from your Snapmatic pictures 인게임 스냅매틱 이미지에서 %1 을 숨기지 못했습니다. - + Failed to show %1 In-game from your Snapmatic pictures 인게임 스냅매틱 이미지에서 %1 을 표시하지 못했습니다. @@ -2357,7 +2373,7 @@ Press 1 for Default View - + &Close 닫기(&C) @@ -2394,7 +2410,7 @@ Press 1 for Default View - + &About %1 %1 정보(&A) @@ -2450,15 +2466,15 @@ Press 1 for Default View - + Select &GTA V Folder... GTA V 폴더 선택(&G) - - - + + + Select GTA V Folder... GTA V 폴더 선택 @@ -2474,65 +2490,73 @@ Press 1 for Default View + + Change &Title... 제목 변경(&T) + + Change &Crew... &조직 상징 변경(&C) + + &Qualify as Avatar 아바타 자격 부여(&Q) + + Change &Players... 플레이어 변경(&P) - - - + + + Show In-game 인게임 보이기 - - - + + + Hide In-game 인게임 숨기기 - - + + Select Profile 프로필 선택 - + Open File... 파일 열기... - - - - + + + + Open File 파일 열기 - + Can't open %1 because of not valid file format 올바른 파일 형식이 아니므로 %1을 열 수 없습니다. - + %1 - Messages %1 - 뉴스 diff --git a/res/gta5sync_ru.qm b/res/gta5sync_ru.qm index 3df679b..7b3fe8e 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 386ada7..e34070f 100644 --- a/res/gta5sync_ru.ts +++ b/res/gta5sync_ru.ts @@ -182,8 +182,8 @@ Pictures and Savegames - - + + Snapmatic Image Editor Редактор картинок Snapmatic @@ -214,13 +214,13 @@ 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 @@ -399,14 +399,14 @@ Pictures and Savegames - + Custom Avatar Custom Avatar Description in SC, don't use Special Character! Свой Аватар - + Custom Picture Custom Picture Description in SC, don't use Special Character! Своя Картинка @@ -620,19 +620,17 @@ Y: %2 Открывать/выбирать содержимое - Open with Singleclick - Открывать одним щелчком + Открывать одним щелчком - + Open with Doubleclick Открывать двойным щелчком - Select with Singleclick - Выбирать одним щелчком + Выбирать одним щелчком @@ -758,26 +756,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 Найдено: %1 - - - - - - - - + + + + + + + + Language: %1 Язык: %1 @@ -798,7 +796,7 @@ Y: %2 - + Participate in %1 User Statistics Участвовать в пользовательской статистике %1 @@ -831,8 +829,8 @@ Y: %2 - - + + Participation ID: %1 Номер участника: %1 @@ -885,8 +883,8 @@ Y: %2 - - + + Current: %1 Сейчас: %1 @@ -928,95 +926,95 @@ Y: %2 От&мена - + System System in context of System default Система - + %1 (Game language) Next closest language compared to the Game settings %1 (Язык игры) - - + + %1 (Closest to Interface) Next closest language compared to the Interface %1 (Совпадает с интерфейсом) - - - + + + Auto Automatic language choice. Автоматически - + %1 (Language priority) First language a person can talk with a different person/application. "Native" or "Not Native". %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 @@ -1067,31 +1065,31 @@ Y: %2 - + Export as &Picture... Экспортировать как &картинку... - + Export as &Snapmatic... Экспортировать как &Snapmatic... - + &Overwrite Image... &Перезаписать картинку... - + &Edit Properties... &Изменить свойства... - + Open &Map Viewer... Открыть &карту... @@ -1240,7 +1238,7 @@ Press 1 for Default View - + Open &JSON Editor... Открыть &редактор JSON... @@ -1342,12 +1340,12 @@ Press 1 for Default View Загрузка... - + Snapmatic Loader Загрузчик Snapmatic - + <h4>Following Snapmatic Pictures got repaired</h4>%1 Change wording if the %1 is not a multiline beginning at new line @@ -1356,23 +1354,23 @@ Press 1 for Default View - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + Import... Импортировать... @@ -1387,33 +1385,33 @@ Press 1 for Default View Импортировать - - + + Savegames files (SGTA*) Файлы сохранения (SGTA*) - - + + Snapmatic pictures (PGTA*) Картинка Snapmatic (PGTA*) - - + + All files (**) Все файлы (**) - - + + Import file %1 of %2 files Импортируются файлы %1 из %2 - + Import failed with... %1 @@ -1422,21 +1420,21 @@ Press 1 for Default View %1 - - + + Failed to read Snapmatic picture Не удалось загрузить картинку Snapmatic - - + + Failed to read Savegame file Не удалось загрузить файл сохранения - - - + + + No valid file is selected Выбранный файл неверен @@ -1446,145 +1444,145 @@ Press 1 for Default View Включенные картинки: %1 из %2 - + Importable files (%1) Файлы для импорта (%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 Не получилось импортировать %1, файл не может быть правильно обработан - + Can't import %1 because file format can't be detected Не получилось импортировать %1, не удалось определить формат файла - + Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e - + Failed to import the Snapmatic picture, can't copy the file into profile Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль - + Failed to import the Savegame, can't copy the file into profile Не удалось импортировать сохранение, не получилось скопировать файл в профиль - + Failed to import the Savegame, no Savegame slot is left Не удалось импортировать сохранение, нет пустых ячеек под сохранения - - + + JPG pictures and GTA Snapmatic Картинки JPG и GTA Snapmatic - - + + JPG pictures only Только картинки JPG - - + + GTA Snapmatic only Только GTA Snapmatic - + Initialising export... Подготовка к экспорту... - - + + No Snapmatic pictures or Savegames files are selected Не выделены ни один Snapmatic или сохранение - - - + + + Remove selected Снять выделение - + You really want remove the selected Snapmatic picutres and Savegame files? Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений? - + Prepare Content for Import... Подготовка данных к импорту... - - + + Qualify as Avatar Пометить как Аватар - - - - - + + + + + No Snapmatic pictures are selected Не выделена ни одна картинка Snapmatic - - - - + + + + Patch selected... Пропатчить выделенные... - - - - - - - - + + + + + + + + Patch file %1 of %2 files Изменяется файл %1 из %2 - - - - - + + + + + %1 failed with... %2 @@ -1594,86 +1592,86 @@ Press 1 for Default View %2 - + A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp? Можно использовать слово "приписать" - + Failed to remove all selected Snapmatic pictures and/or Savegame files Не удалось удалить все выделенные картинки Snapmatic и/или сохранения - + Qualify %1 failed with... Помечание - - + + Change Players... Изменить игроков... - + Change Players %1 failed with... Измение игроков - - - + + + Change Crew... Изменить банду... - + Failed to enter a valid Snapmatic Crew ID Введённый идентификатор банды не верен - + Change Crew %1 failed with... Изменение банды - - - + + + Change Title... Изменить заголовок... - + Failed to enter a valid Snapmatic title Введённый заголовок не верен - + Change Title %1 failed with... Изменение заголовка - + %1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as: %1Эскпортировать картинки Snapmatic%2<br><br>Картинки JPG можно открыть любым просмотрщиком<br>Картинки формата GTA Snapmatic можно снова импортировать в игру<br><br>Экспортировать как: - - - - - + + + + + Export selected... Экпортировать выделенное... - + Export failed with... %1 @@ -1689,13 +1687,13 @@ Press 1 for Default View Экспортируется файл %1 из %2 - + All profile files (*.g5e SGTA* PGTA*) Все файлы профиля (*.g5e SGTA* PGTA*) - - + + GTA V Export (*.g5e) GTA V Export (*.g5e) @@ -1824,32 +1822,38 @@ Press 1 for Default View Не удалось удалить сохранение %1 - + &View &Просмотр - + + + &Remove &Удалить - + + &Select &Выбрать - + + &Deselect Сн&ять выбор - + + Select &All В&ыбрать все - + + &Deselect All Снять выбо&р со всех @@ -1859,7 +1863,9 @@ Press 1 for Default View Копировать сохранение - + + + &Export &Экспортировать @@ -1913,7 +1919,7 @@ Press 1 for Default View - + Snapmatic Properties Свойства Snapmatic @@ -1963,7 +1969,7 @@ Press 1 for Default View Meme - + Snapmatic Title Заголовок Snapmatic @@ -2064,24 +2070,24 @@ Press 1 for Default View - + Patching of Snapmatic Properties failed because of I/O Error Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода - + New Snapmatic title: Новый заголовок Snapmatic: - + Snapmatic Crew Банда на Snapmatic - + New Snapmatic crew: Новая банда на Snapmatic: @@ -2209,62 +2215,72 @@ Press 1 for Default View Не удалось удалить %1 из колелкции картинок Snapmatic - + Failed to hide %1 In-game from your Snapmatic pictures Не удалось скрыть %1 из списка картинок Snapmatic в игре - + Failed to show %1 In-game from your Snapmatic pictures Не удалось показать %1 в списке картинок Snapmatic в игре - + + + Edi&t &Правка - + + + Show &In-game Показывать в &игре - + + + Hide &In-game Ск&рыть в игре - + &Export &Экспорт - + &View По&казать - + &Remove У&далить - + + &Select &Выделить - + + &Deselect Сн&ять выделение - + + Select &All В&ыбрать все - + + &Deselect All Снять выбо&р со всех @@ -2372,7 +2388,7 @@ Press 1 for Default View - + Select &GTA V Folder... Выбрать &папку GTA V... @@ -2388,27 +2404,35 @@ Press 1 for Default View + + Change &Players... &Изменить игрока... + + Change &Title... Изменить &Заголовок... + + Change &Crew... Изменить &банду... + + &Qualify as Avatar &Пометить как Аватар - + &Close &Закрыть @@ -2449,16 +2473,16 @@ Press 1 for Default View - - + + Select Profile Выбор профиля - - - + + + Select GTA V Folder... Выбрать папку GTA V... @@ -2471,30 +2495,30 @@ Press 1 for Default View - + &About %1 &О программе %1 - + Open File... Открыть файл... - - - - + + + + Open File Открыть файл - + Can't open %1 because of not valid file format Не удалось открыть %1 из-за неверного формата файла - + %1 - Messages %1 - Новости @@ -2504,16 +2528,16 @@ Press 1 for Default View Пере&загрузить - - - + + + Show In-game Показывать в игре - - - + + + Hide In-game Скрыть в игре diff --git a/res/gta5sync_uk.qm b/res/gta5sync_uk.qm index 9c1459f..46e4e87 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 54f8a86..7043992 100644 --- a/res/gta5sync_uk.ts +++ b/res/gta5sync_uk.ts @@ -206,20 +206,20 @@ 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 зображення не вдалося через помилку картинки @@ -388,14 +388,14 @@ Pictures and Savegames - + Custom Avatar Custom Avatar Description in SC, don't use Special Character! Користувацький Аватар - + Custom Picture Custom Picture Description in SC, don't use Special Character! Користувацьке Зображення @@ -626,19 +626,17 @@ Y: %2 Відкривати/обирати вміст - Open with Singleclick - Відкривати одиночним кліком + Відкривати одиночним кліком - + Open with Doubleclick Відкривати подвійним кліком - Select with Singleclick - Обирати одиночним кліком + Обирати одиночним кліком @@ -754,26 +752,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 Знайдено:%1 - - - - - - - - + + + + + + + + Language: %1 Мова: %1 @@ -795,7 +793,7 @@ Y: %2 - + Participate in %1 User Statistics Опитування %1 про устаткування ПК @@ -831,8 +829,8 @@ Y: %2 - - + + Participation ID: %1 ID учасника : %1 @@ -854,8 +852,8 @@ Y: %2 - - + + Current: %1 Зараз: %1 @@ -921,95 +919,95 @@ Y: %2 &Скасувати - + System System in context of System default Як у системи - + %1 (Game language) Next closest language compared to the Game settings %1 (Мова гри) - - + + %1 (Closest to Interface) Next closest language compared to the Interface %1 (Співпадає з інтерфейсом) - - - + + + Auto Automatic language choice. Автоматично - + %1 (Language priority) First language a person can talk with a different person/application. "Native" or "Not Native". %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 @@ -1054,37 +1052,37 @@ Y: %2 - + Export as &Picture... Експортувати як &зображення... - + Export as &Snapmatic... Експортувати як &Snapmatic... - + &Edit Properties... &Змінити властивості... - + &Overwrite Image... &Перезаписати зображення... - + Open &Map Viewer... Відкрити &карту... - + Open &JSON Editor... Відкрити редактор &JSON... @@ -1339,23 +1337,23 @@ Press 1 for Default View - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + Import... Імпортування... @@ -1372,29 +1370,29 @@ Press 1 for Default View - + All image files (%1) Файли зображень (%1) - - + + All files (**) Усі файли (**) - + Can't import %1 because file can't be open Неможливо імпортувати %1, оскільки файл не може бути відкритий - + Can't import %1 because file can't be parsed properly Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно @@ -1409,53 +1407,53 @@ Press 1 for Default View Завантаження... - + Snapmatic Loader Snapmatic Loader - + <h4>Following Snapmatic Pictures got repaired</h4>%1 <h4>Наступні Snapmatic зображення були відновлені</h4>%1 - + Importable files (%1) Імпортуються файли (%1) - - + + GTA V Export (*.g5e) GTA V Export (*.g5e) - - + + Savegames files (SGTA*) Файли збереження гри (SGTA*) - - + + Snapmatic pictures (PGTA*) Snapmatic зображення (PGTA*) - - - + + + No valid file is selected Вибрані недійсні файли - - + + Import file %1 of %2 files Імпортується файл %1 з %2 файлів - + Import failed with... %1 @@ -1464,81 +1462,81 @@ Press 1 for Default View %1 - - + + Failed to read Snapmatic picture Не вдалося прочитати Snapmatic картинку - - + + Failed to read Savegame file Не вдалося прочитати файл збереження гри - + Can't import %1 because file format can't be detected Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений - + Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e - + Failed to import the Snapmatic picture, can't copy the file into profile Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль - + Failed to import the Savegame, can't copy the file into profile Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль - + Failed to import the Savegame, no Savegame slot is left Не вдалося імпортувати Сейв, немає вільного слота - - - - - + + + + + Export selected... Експорт обраних... - - + + JPG pictures and GTA Snapmatic JPG картинки і GTA Snapmatic - - + + JPG pictures only Тільки JPG картинки - - + + GTA Snapmatic only Тільки GTA Snapmatic - + %1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as: %1 Експортувати Snapmatic фотографії %2 <br><br> Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень<br>GTA Snapmatic дає змогу імпортувати зображення в гру<br><br>Експортувати як: - + Initialising export... Ініціалізація експорту... - + Export failed with... %1 @@ -1547,45 +1545,45 @@ Press 1 for Default View %1 - - + + No Snapmatic pictures or Savegames files are selected Не вибрано жодного Snapmatic зображення або файлу збереження - - - + + + Remove selected Видалити вибрані - + You really want remove the selected Snapmatic picutres and Savegame files? Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри? - + Failed to remove all selected Snapmatic pictures and/or Savegame files Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви - - - - - + + + + + No Snapmatic pictures are selected Не вибрано жодного Snapmatic зображення - - - - - + + + + + %1 failed with... %2 @@ -1595,97 +1593,97 @@ Press 1 for Default View %2 - + Prepare Content for Import... Підготувати контент для імпорту ... - + A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp? Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу? - - + + Qualify as Avatar Позначити як Аватар - - - - + + + + Patch selected... Вибір патчу... - - - - - - - - + + + + + + + + Patch file %1 of %2 files Патч файлу %1 з %2 файлів - + Qualify %1 failed with... Якість - - + + Change Players... Зміна гравців... - + Change Players %1 failed with... Змінити гравців - - - + + + Change Crew... Зміна банди... - + Failed to enter a valid Snapmatic Crew ID Не вдалося ввести дійсний ID Банди Snapmatic - + Change Crew %1 failed with... Змінити банду - - - + + + Change Title... Зміна назви... - + Failed to enter a valid Snapmatic title Не вдалося ввести дійсний заголовок Snapmatic - + Change Title %1 failed with... Змінити назву - + All profile files (*.g5e SGTA* PGTA*) Усі файли зображень (*.g5e SGTA* PGTA*) @@ -1779,37 +1777,45 @@ Press 1 for Default View Видалити - + &View &Перегляд - + + + &Export &Експорт - + + + &Remove &Видалення - + + &Select &Виділення - + + &Deselect &Зняти виділення - + + Select &All Вибрати &усі - + + &Deselect All &Зняти виділення усіх @@ -1911,7 +1917,7 @@ Press 1 for Default View - + Snapmatic Properties Властивості Snapmatic @@ -2004,7 +2010,7 @@ Press 1 for Default View - + Patching of Snapmatic Properties failed because of I/O Error Змінити властивості Snapmatic не вдалося через I/O Помилку @@ -2014,25 +2020,25 @@ Press 1 for Default View Змінити властивості Snapmatic не вдалося через JSON Помилку - + Snapmatic Crew Snapmatic банда - + New Snapmatic crew: Нова Snapmatic банда: - + Snapmatic Title Snapmatic назва - + New Snapmatic title: Новий Snapmatic заголовок: @@ -2207,52 +2213,62 @@ Press 1 for Default View Видалити - + + + Edi&t Редагува&ти - + + + Show &In-game Показати &у грі - + + + Hide &In-game Сховати &у грі - + &Export &Експортувати - + &View &Переглянути - + &Remove &Видалити - + + &Select &Виділення - + + &Deselect &Зняти виділення - + + Select &All Вибрати &усі - + + &Deselect All &Зняти виділення усіх @@ -2267,12 +2283,12 @@ Press 1 for Default View Не вдалося видалити%1 з ваших Snapmatic фотографій - + Failed to hide %1 In-game from your Snapmatic pictures Не вдалося сховати %1 Snapmatic у грі - + Failed to show %1 In-game from your Snapmatic pictures Не вдалося показати %1 Snapmatic у грі @@ -2337,7 +2353,7 @@ Press 1 for Default View - + &Close &Закрити @@ -2374,7 +2390,7 @@ Press 1 for Default View - + &About %1 &Про %1 @@ -2430,15 +2446,15 @@ Press 1 for Default View - + Select &GTA V Folder... Вибрати &GTA V теку... - - - + + + Select GTA V Folder... Вибрати GTA V теку... @@ -2454,65 +2470,73 @@ Press 1 for Default View + + Change &Title... Змінити &заголовок... + + Change &Crew... Змінити &банду... + + &Qualify as Avatar Позначити як &аватар + + Change &Players... Змінити &гравців... - - - + + + Show In-game Показати у грі - - - + + + Hide In-game Сховати у грі - - + + Select Profile Вибрати профіль - + Open File... Відкрити файл... - - - - + + + + Open File Відкрити файл - + Can't open %1 because of not valid file format Неможливо відкрити %1 через невідомий формат файлу - + %1 - Messages %1 - Новини diff --git a/res/gta5sync_zh_TW.qm b/res/gta5sync_zh_TW.qm index 216a38f..44624a8 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 92a1c73..5ea86ac 100644 --- a/res/gta5sync_zh_TW.ts +++ b/res/gta5sync_zh_TW.ts @@ -202,20 +202,20 @@ Pictures and Savegames - - + + Snapmatic Image Editor Snapmatic 圖片編輯器 - + Patching of Snapmatic Image failed because of I/O Error I/O 錯誤,Snapmatic 圖片更新失敗 - + Patching of Snapmatic Image failed because of Image Error 圖片錯誤,Snapmatic 圖片更新失敗 @@ -384,14 +384,14 @@ Pictures and Savegames - + Custom Avatar Custom Avatar Description in SC, don't use Special Character! 自訂大頭貼 - + Custom Picture Custom Picture Description in SC, don't use Special Character! 自訂圖片 @@ -621,19 +621,17 @@ Y: %2 開啟/選擇模式 - Open with Singleclick - 點一次開啟 + 點一次開啟 - + Open with Doubleclick 點兩次開啟 - Select with Singleclick - 點一次選取 + 點一次選取 @@ -749,26 +747,26 @@ Y: %2 - - - - - - + + + + + + Found: %1 找到: %1 - - - - - - - - + + + + + + + + Language: %1 語言: %1 @@ -789,7 +787,7 @@ Y: %2 - + Participate in %1 User Statistics 參與 %1 使用者統計 @@ -825,8 +823,8 @@ Y: %2 - - + + Participation ID: %1 參與 ID: %1 @@ -848,8 +846,8 @@ Y: %2 - - + + Current: %1 目前: %1 @@ -915,95 +913,95 @@ Y: %2 取消(&C) - + System System in context of System default 系統 - - + + %1 (Closest to Interface) Next closest language compared to the Interface %1 (與介面接近的語言) - - - + + + Auto Automatic language choice. 自動 - + %1 (Language priority) First language a person can talk with a different person/application. "Native" or "Not Native". %1 (語言優先) - + %1 (Game language) Next closest language compared to the Game settings %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 定義 @@ -1048,37 +1046,37 @@ Y: %2 - + Export as &Picture... 匯出成圖片(&P)... - + Export as &Snapmatic... 匯出成 Snapmatic(&S)... - + &Edit Properties... 編輯屬性(&E) ... - + &Overwrite Image... 修改圖片(&O)... - + Open &Map Viewer... 開啟地圖檢視器(&M)... - + Open &JSON Editor... 開啟 JSON 編輯器(&J)... @@ -1333,23 +1331,23 @@ Press 1 for Default View - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + Import... 匯入... @@ -1366,29 +1364,29 @@ Press 1 for Default View - + All image files (%1) 所有圖片 (%1) - - + + All files (**) 所有檔案 (**) - + Can't import %1 because file can't be open 無法匯入 %1,因為檔案無法開啟 - + Can't import %1 because file can't be parsed properly 無法匯入 %1,因為檔案無法正確解析 @@ -1403,179 +1401,179 @@ Press 1 for Default View 載入中... - + Snapmatic Loader Snapmatic 載入器 - + <h4>Following Snapmatic Pictures got repaired</h4>%1 <h4>下列的 Snapmatic 圖片已被更新</h4>%1 - + Importable files (%1) 可匯入的檔案 (%1) - - + + GTA V Export (*.g5e) GTA V Export (*.g5e) - - + + Savegames files (SGTA*) 遊戲存檔 (SGTA*) - - + + Snapmatic pictures (PGTA*) Snapmatic 圖片 (PGTA*) - - - + + + No valid file is selected 沒有選擇有效的檔案 - - + + Import file %1 of %2 files 匯入檔案 %1 共 %2 個 - + Import failed with... %1 %1 匯入失敗 - - + + Failed to read Snapmatic picture 無法讀取 Snapmatic 圖片 - - + + Failed to read Savegame file 無法讀取遊戲存檔 - + Can't import %1 because file format can't be detected 無法匯入 %1,因為無法檢測該檔案格式 - + Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e 匯入 Snapmatic 圖片失敗,檔案不是 PGTA 開頭或附檔名不是 .g5e - + Failed to import the Snapmatic picture, can't copy the file into profile 匯入 Snapmatic 圖片失敗,無法將該檔案複製到設定檔中 - + Failed to import the Savegame, can't copy the file into profile 匯入遊戲存檔失敗,無法將該檔案複製到設定檔中 - + Failed to import the Savegame, no Savegame slot is left 匯入遊戲存檔失敗,沒有遊戲存檔欄位 - - - - - + + + + + Export selected... 匯出所選... - - + + JPG pictures and GTA Snapmatic JPG 圖片和 GTA Snapmatic - - + + JPG pictures only 只有 JPG 圖片 - - + + GTA Snapmatic only 只有 GTA Snapmatic - + %1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as: %1 匯出 Snapmatic 圖片 %2<br><br>JPG 圖片可使用圖片檢視器開啟<br>GTA Snapmatic 可以匯入到遊戲中<br><br>匯出成: - + Initialising export... 初始化... - + Export failed with... %1 %1 匯出失敗 - - + + No Snapmatic pictures or Savegames files are selected 未選擇 Snapmatic 圖片或遊戲存檔 - - - + + + Remove selected 移除所選 - + You really want remove the selected Snapmatic picutres and Savegame files? 你想移除所選的 Snapmatic 圖片/存檔嗎? - + Failed to remove all selected Snapmatic pictures and/or Savegame files 無法移除所選擇的 Snapmatic 圖片/遊戲存檔 - - - - - + + + + + No Snapmatic pictures are selected 未選擇 Snapmatic 圖片 - - - - - + + + + + %1 failed with... %2 @@ -1585,97 +1583,97 @@ Press 1 for Default View %2 - + Prepare Content for Import... 準備匯入內容... - + A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp? 已有與 uid %1 相同的 Snapmatic 圖片,你想要匯入新的 uid 和時間戳嗎? - - + + Qualify as Avatar 合格大頭貼 - - - - + + + + Patch selected... 修改所選... - - - - - - - - + + + + + + + + Patch file %1 of %2 files 修改檔案 %1 共 %2 個檔案 - + Qualify %1 failed with... 合格 - - + + Change Players... 更改玩家... - + Change Players %1 failed with... 更改玩家 - - - + + + Change Crew... 更改幫會... - + Failed to enter a valid Snapmatic Crew ID 輸入了無效的幫會 ID - + Change Crew %1 failed with... 更改幫會 - - - + + + Change Title... 更改標題... - + Failed to enter a valid Snapmatic title 輸入了無效的標題 - + Change Title %1 failed with... 更改標題 - + All profile files (*.g5e SGTA* PGTA*) 所有設定檔檔案 (*.g5e SGTA* PGTA*) @@ -1761,37 +1759,45 @@ Press 1 for Default View 刪除 - + &View 檢視(&V) - + + + &Export 匯出(&E) - + + + &Remove 移除(&R) - + + &Select 選擇(&S) - + + &Deselect 取消選擇(&D) - + + Select &All 選擇全部(&A) - + + &Deselect All 取消選擇全部(&D) @@ -1893,7 +1899,7 @@ Press 1 for Default View - + Snapmatic Properties Snapmatic 屬性 @@ -1986,7 +1992,7 @@ Press 1 for Default View - + Patching of Snapmatic Properties failed because of I/O Error 讀寫錯誤,未能更新 Snapmatic 屬性 @@ -1996,25 +2002,25 @@ Press 1 for Default View JSON 錯誤,未能更新 Snapmatic 屬性 - + Snapmatic Crew 幫會 - + New Snapmatic crew: 輸入新的幫會: - + Snapmatic Title 標題 - + New Snapmatic title: 輸入新的標題: @@ -2189,52 +2195,62 @@ Press 1 for Default View 刪除 - + + + Edi&t 編輯(&E) - + + + Show &In-game 在遊戲中顯示(&I) - + + + Hide &In-game 在遊戲中隱藏(&I) - + &Export 匯出(&E) - + &View 檢視(&V) - + &Remove 移除(&R) - + + &Select 選擇(&S) - + + &Deselect 取消選擇(&D) - + + Select &All 選擇全部(&A) - + + &Deselect All 取消選擇全部(&D) @@ -2249,12 +2265,12 @@ Press 1 for Default View 刪除 Snapmatic 圖片 %1 失敗 - + Failed to hide %1 In-game from your Snapmatic pictures 在遊戲中隱藏圖片 %1 失敗 - + Failed to show %1 In-game from your Snapmatic pictures 在遊戲中顯示圖片 %1 失敗 @@ -2318,7 +2334,7 @@ Press 1 for Default View - + &Close 關閉(&C) @@ -2355,7 +2371,7 @@ Press 1 for Default View - + &About %1 關於 %1(&A) @@ -2411,15 +2427,15 @@ Press 1 for Default View - + Select &GTA V Folder... 選擇 GTA V 資料夾(&G)... - - - + + + Select GTA V Folder... 選擇 GTA V 資料夾... @@ -2435,65 +2451,73 @@ Press 1 for Default View + + Change &Title... 更改標題(&T)... + + Change &Crew... 更改幫會(&C)... + + &Qualify as Avatar 符合大頭貼資格(&Q) + + Change &Players... 更改玩家(&P)... - - - + + + Show In-game 在遊戲中顯示 - - - + + + Hide In-game 在遊戲中隱藏 - - + + Select Profile 選擇設定檔 - + Open File... 開啟檔案... - - - - + + + + Open File 開啟檔案 - + Can't open %1 because of not valid file format 格式無效,無法開啟 %1 - + %1 - Messages %1 - 新聞