diff --git a/.ci/gta5view.nsi b/.ci/gta5view.nsi index d99d0df..ee89b81 100644 --- a/.ci/gta5view.nsi +++ b/.ci/gta5view.nsi @@ -4,7 +4,7 @@ !define APP_EXT ".g5e" !define COMP_NAME "Syping" !define WEB_SITE "https://gta5view.syping.de/" -!define VERSION "1.10.0.0" +!define VERSION "1.10.1.0" !define COPYRIGHT "Copyright © 2016-2021 Syping" !define DESCRIPTION "Open Source Snapmatic and Savegame viewer/editor for GTA V" !define INSTALLER_NAME "gta5view_setup.exe" diff --git a/PictureDialog.cpp b/PictureDialog.cpp index 4eb48d8..99850f8 100644 --- a/PictureDialog.cpp +++ b/PictureDialog.cpp @@ -839,7 +839,7 @@ void PictureDialog::editSnapmaticImage() importDialog->exec(); if (importDialog->isImportAgreed()) { const QByteArray previousPicture = smpic->getPictureStream(); - bool success = smpic->setImage(importDialog->image()); + bool success = smpic->setImage(importDialog->image(), importDialog->isUnlimitedBuffer()); if (success) { QString currentFilePath = smpic->getPictureFilePath(); QString originalFilePath = smpic->getOriginalPictureFilePath(); diff --git a/ProfileInterface.cpp b/ProfileInterface.cpp index 68b6407..375069e 100644 --- a/ProfileInterface.cpp +++ b/ProfileInterface.cpp @@ -1792,12 +1792,11 @@ void ProfileInterface::on_saProfileContent_dropped(const QMimeData *mimeData) void ProfileInterface::retranslateUi() { ui->retranslateUi(this); - QString appVersion = GTA5SYNC_APPVER; -#ifndef GTA5SYNC_BUILDTYPE_REL + QString appVersion = QApplication::applicationVersion(); + const char* literalBuildType = GTA5SYNC_BUILDTYPE; #ifdef GTA5SYNC_COMMIT - if (!appVersion.contains("-")) + if ((strcmp(literalBuildType, REL_BUILDTYPE) != 0) && !appVersion.contains("-")) appVersion = appVersion % "-" % GTA5SYNC_COMMIT; -#endif #endif ui->labVersion->setText(QString("%1 %2").arg(GTA5SYNC_APPSTR, appVersion)); } diff --git a/README.md b/README.md index b35289a..3713ce2 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Open Source Snapmatic and Savegame viewer/editor for GTA V # Note: Install Docker Community Edition and Git before continuing git clone https://gitlab.com/Syping/gta5view && cd gta5view docker pull sypingauto/gta5view-build:1.10-static - docker run --rm -v ${PWD}:/gta5view -it sypingauto/gta5view-build:1.10-static + docker run --rm -v "$PWD:/gta5view" -it sypingauto/gta5view-build:1.10-static cd /gta5view && mkdir -p build && cd build mingw64-qt-cmake ../ make -j $(nproc --all) diff --git a/SnapmaticPicture.cpp b/SnapmaticPicture.cpp index 68b553b..3a0197b 100644 --- a/SnapmaticPicture.cpp +++ b/SnapmaticPicture.cpp @@ -199,6 +199,7 @@ bool SnapmaticPicture::setImage(const QImage &picture, bool eXtendMode) else { #ifndef GTA5SYNC_DYNAMIC_PHOTOBUFFER if (p_ragePhoto.photoBuffer() != jpegPicStreamLength) + p_ragePhoto.setPhotoData(QByteArray()); // avoid buffer set fail p_ragePhoto.setPhotoBuffer(jpegPicStreamLength, true); #endif picByteArray = picByteArrayT; diff --git a/SnapmaticWidget.cpp b/SnapmaticWidget.cpp index 9712e28..db718a7 100644 --- a/SnapmaticWidget.cpp +++ b/SnapmaticWidget.cpp @@ -357,7 +357,7 @@ void SnapmaticWidget::editSnapmaticImage() importDialog->exec(); if (importDialog->isImportAgreed()) { const QByteArray previousPicture = smpic->getPictureStream(); - bool success = smpic->setImage(importDialog->image()); + bool success = smpic->setImage(importDialog->image(), importDialog->isUnlimitedBuffer()); if (success) { QString currentFilePath = smpic->getPictureFilePath(); QString originalFilePath = smpic->getOriginalPictureFilePath(); diff --git a/UserInterface.cpp b/UserInterface.cpp index 9999908..a990b51 100644 --- a/UserInterface.cpp +++ b/UserInterface.cpp @@ -73,7 +73,12 @@ UserInterface::UserInterface(ProfileDatabase *profileDB, CrewDatabase *crewDB, D ui->menuProfile->setEnabled(false); ui->actionSelect_profile->setEnabled(false); ui->actionAbout_gta5sync->setIcon(IconLoader::loadingAppIcon()); +#ifdef Q_OS_MAC + ui->actionAbout_gta5sync->setText(QApplication::translate("MAC_APPLICATION_MENU", "About %1").arg(GTA5SYNC_APPSTR)); + ui->actionOptions->setText(QApplication::translate("MAC_APPLICATION_MENU", "Preferences...")); +#else ui->actionAbout_gta5sync->setText(tr("&About %1").arg(GTA5SYNC_APPSTR)); +#endif ui->cmdClose->setToolTip(ui->cmdClose->toolTip().arg(GTA5SYNC_APPSTR)); defaultWindowTitle = tr("%2 - %1").arg("%1", GTA5SYNC_APPSTR); @@ -873,13 +878,17 @@ void UserInterface::retranslateUi() donateAction->setText(tr("&Donate")); #endif #endif +#ifdef Q_OS_MAC + ui->actionAbout_gta5sync->setText(QApplication::translate("MAC_APPLICATION_MENU", "About %1").arg(GTA5SYNC_APPSTR)); + ui->actionOptions->setText(QApplication::translate("MAC_APPLICATION_MENU", "Preferences...")); +#else ui->actionAbout_gta5sync->setText(tr("&About %1").arg(GTA5SYNC_APPSTR)); - QString appVersion = GTA5SYNC_APPVER; -#ifndef GTA5SYNC_BUILDTYPE_REL -#ifdef GTA5SYNC_COMMIT - if (!appVersion.contains("-")) - appVersion = appVersion % "-" % GTA5SYNC_COMMIT; #endif + QString appVersion = QApplication::applicationVersion(); + const char* literalBuildType = GTA5SYNC_BUILDTYPE; +#ifdef GTA5SYNC_COMMIT + if ((strcmp(literalBuildType, REL_BUILDTYPE) != 0) && !appVersion.contains("-")) + appVersion = appVersion % "-" % GTA5SYNC_COMMIT; #endif ui->labVersion->setText(QString("%1 %2").arg(GTA5SYNC_APPSTR, appVersion)); if (profileOpen) { diff --git a/config.h b/config.h index 02e1e19..98de378 100644 --- a/config.h +++ b/config.h @@ -51,7 +51,7 @@ #endif #ifndef GTA5SYNC_APPVER -#define GTA5SYNC_APPVER "1.10.0" +#define GTA5SYNC_APPVER "1.10.1" #endif #if __cplusplus diff --git a/res/app.rc b/res/app.rc index 9bcafcb..a0fd25d 100644 --- a/res/app.rc +++ b/res/app.rc @@ -4,8 +4,8 @@ IDI_ICON1 ICON DISCARDABLE "5sync.ico" CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "gta5view.exe.manifest" #include VS_VERSION_INFO VERSIONINFO -FILEVERSION 1, 10, 0, 0 -PRODUCTVERSION 1, 10, 0, 0 +FILEVERSION 1, 10, 1, 0 +PRODUCTVERSION 1, 10, 1, 0 FILEFLAGSMASK 0x3fL FILEFLAGS 0 FILEOS VOS_NT_WINDOWS32 @@ -22,12 +22,12 @@ BEGIN BEGIN VALUE "CompanyName", "Syping" VALUE "FileDescription", "gta5view" - VALUE "FileVersion", "1.10.0" + VALUE "FileVersion", "1.10.1" VALUE "InternalName", "gta5view" VALUE "LegalCopyright", "Copyright 2016-2021 Syping" VALUE "OriginalFilename", "gta5view.exe" VALUE "ProductName", "gta5view" - VALUE "ProductVersion", "1.10.0" + VALUE "ProductVersion", "1.10.1" END END END diff --git a/res/de.syping.gta5view.metainfo.xml b/res/de.syping.gta5view.metainfo.xml index ed43c28..9bc50a1 100644 --- a/res/de.syping.gta5view.metainfo.xml +++ b/res/de.syping.gta5view.metainfo.xml @@ -34,6 +34,7 @@ Syping + diff --git a/res/gta5sync.ts b/res/gta5sync.ts index 403fba4..88ab419 100644 --- a/res/gta5sync.ts +++ b/res/gta5sync.ts @@ -1341,7 +1341,7 @@ Press 1 for Default View - + All files (**) @@ -1386,26 +1386,26 @@ Press 1 for Default View - + GTA V Export (*.g5e) - + Savegames files (SGTA*) - + Snapmatic pictures (PGTA*) - + No valid file is selected @@ -1424,13 +1424,13 @@ Press 1 for Default View - + Failed to read Snapmatic picture - + Failed to read Savegame file @@ -1539,20 +1539,20 @@ Press 1 for Default View - - - - + + + + No Snapmatic pictures are selected - - - - + + + + %1 failed with... %2 @@ -1560,87 +1560,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*) @@ -1959,25 +1959,25 @@ Press 1 for Default View - + Snapmatic Crew - + New Snapmatic crew: - + Snapmatic Title - + New Snapmatic title: @@ -2034,19 +2034,19 @@ Press 1 for Default View SnapmaticPicture - + JSON is incomplete and malformed - + JSON is incomplete - + JSON is malformed @@ -2056,42 +2056,42 @@ Press 1 for Default View - + open file %1 - + header not exists - + header is malformed - + picture not exists (%1) - + JSON not exists (%1) - + title not exists (%1) - + description not exists (%1) - + reading file %1 because of %2 Example for %2: JSON is malformed error @@ -2259,7 +2259,7 @@ Press 1 for Default View UserInterface - + %2 - %1 @@ -2291,9 +2291,9 @@ Press 1 for Default View - - - + + + &Close @@ -2329,8 +2329,8 @@ Press 1 for Default View - - + + &About %1 @@ -2386,15 +2386,15 @@ Press 1 for Default View - + Select &GTA V Folder... - - + + Select GTA V Folder... @@ -2451,53 +2451,53 @@ Press 1 for Default View - - - + + + Select Profile - - + + &Donate - + Donate - + Donation methods - + &Copy - + Open File... - - - - + + + + Open File - + Can't open %1 because of not valid file format - + %1 - Messages diff --git a/res/gta5sync_de.ts b/res/gta5sync_de.ts index d878c5f..054fac6 100644 --- a/res/gta5sync_de.ts +++ b/res/gta5sync_de.ts @@ -1383,13 +1383,13 @@ Drücke 1 für Standardmodus - + Savegames files (SGTA*) Spielstanddateien (SGTA*) - + Snapmatic pictures (PGTA*) Snapmatic Bilder (PGTA*) @@ -1409,7 +1409,7 @@ Drücke 1 für Standardmodus - + All files (**) Alle Dateien (**) @@ -1430,13 +1430,13 @@ Drücke 1 für Standardmodus - + Failed to read Snapmatic picture Fehler beim Lesen vom Snapmatic Bild - + Failed to read Savegame file Fehler beim Lesen von Spielstanddatei @@ -1477,7 +1477,7 @@ Drücke 1 für Standardmodus - + No valid file is selected Keine gültige Datei wurde ausgewählt @@ -1525,38 +1525,38 @@ Drücke 1 für Standardmodus 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 @@ -1568,10 +1568,10 @@ Drücke 1 für Standardmodus - - - - + + + + %1 failed with... %2 @@ -1586,55 +1586,55 @@ Drücke 1 für Standardmodus 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 @@ -1681,13 +1681,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) @@ -1952,7 +1952,7 @@ Drücke 1 für Standardmodus Meme - + Snapmatic Title Snapmatic Titel @@ -2068,19 +2068,19 @@ Drücke 1 für Standardmodus 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: @@ -2094,61 +2094,61 @@ Drücke 1 für Standardmodus FOTO - %1 - + open file %1 Datei öffnen %1 - + header not exists Header nicht existiert - + header is malformed Header fehlerhaft ist - + picture not exists (%1) Bild nicht existiert (%1) - + JSON not exists (%1) JSON nicht existiert (%1) - + title not exists (%1) Titel nicht existiert (%1) - + description not exists (%1) Beschreibung nicht existiert (%1) - + reading file %1 because of %2 Example for %2: JSON is malformed error Datei lesen von %1 weil %2 - + JSON is incomplete and malformed JSON ist unvollständig und Fehlerhaft - + JSON is incomplete JSON ist unvollständig - + JSON is malformed JSON ist Fehlerhaft @@ -2414,7 +2414,7 @@ Drücke 1 für Standardmodus - + Select &GTA V Folder... Wähle &GTA V Ordner... @@ -2430,9 +2430,9 @@ Drücke 1 für Standardmodus - - - + + + &Close S&chließen @@ -2467,56 +2467,56 @@ Drücke 1 für Standardmodus Dateien &importieren... - - - + + + Select Profile Profil auswählen - - + + Select GTA V Folder... Wähle GTA V Ordner... - + Open File... Datei öffnen... - + %2 - %1 %2 - %1 - - + + &About %1 &Über %1 - - + + &Donate Spen&den - + Donate Spenden - + Donation methods Spendenmethoden - + &Copy &Kopieren @@ -2529,20 +2529,20 @@ Drücke 1 für Standardmodus Kopieren - - - - + + + + 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 diff --git a/res/gta5sync_en_US.ts b/res/gta5sync_en_US.ts index 766a167..1b4c531 100644 --- a/res/gta5sync_en_US.ts +++ b/res/gta5sync_en_US.ts @@ -1357,19 +1357,19 @@ Press 1 for Default View - + GTA V Export (*.g5e) - + Savegames files (SGTA*) - + Snapmatic pictures (PGTA*) @@ -1384,14 +1384,14 @@ Press 1 for Default View - + All files (**) - + No valid file is selected @@ -1410,13 +1410,13 @@ Press 1 for Default View - + Failed to read Snapmatic picture - + Failed to read Savegame file @@ -1522,48 +1522,48 @@ Press 1 for Default View - - + + Qualify as Avatar - - - - + + + + No Snapmatic pictures are selected - - - - + + + + Patch selected... - - - - - - - - + + + + + + + + Patch file %1 of %2 files - - - - + + + + %1 failed with... %2 @@ -1586,61 +1586,61 @@ Press 1 for Default View - + 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*) @@ -2006,25 +2006,25 @@ Press 1 for Default View - + Snapmatic Title - + New Snapmatic title: - + Snapmatic Crew - + New Snapmatic crew: @@ -2038,61 +2038,61 @@ Press 1 for Default View - + open file %1 - + header not exists - + header is malformed - + picture not exists (%1) - + JSON not exists (%1) - + title not exists (%1) - + description not exists (%1) - + reading file %1 because of %2 Example for %2: JSON is malformed error - + JSON is incomplete and malformed - + JSON is incomplete - + JSON is malformed @@ -2259,7 +2259,7 @@ Press 1 for Default View UserInterface - + %2 - %1 @@ -2291,9 +2291,9 @@ Press 1 for Default View - - - + + + &Close @@ -2324,8 +2324,8 @@ Press 1 for Default View - - + + &About %1 @@ -2381,15 +2381,15 @@ Press 1 for Default View - + Select &GTA V Folder... - - + + Select GTA V Folder... @@ -2437,53 +2437,53 @@ Press 1 for Default View - - - + + + Select Profile - - + + &Donate - + Donate - + Donation methods - + &Copy - + Open File... - - - - + + + + Open File - + Can't open %1 because of not valid file format - + %1 - Messages diff --git a/res/gta5sync_fr.ts b/res/gta5sync_fr.ts index 305c0a0..7e90ba6 100644 --- a/res/gta5sync_fr.ts +++ b/res/gta5sync_fr.ts @@ -1391,13 +1391,13 @@ Appuyer sur 1 pour le mode par défaut - + Savegames files (SGTA*) Fichiers de sauvegarde GTA (SGTA*) - + Snapmatic pictures (PGTA*) Photos Snapmatic (PGTA*) @@ -1412,7 +1412,7 @@ Appuyer sur 1 pour le mode par défaut - + All files (**) Tous les fichiers (**) @@ -1434,7 +1434,7 @@ Appuyer sur 1 pour le mode par défaut - + No valid file is selected Fichier invalide @@ -1445,13 +1445,13 @@ Appuyer sur 1 pour le mode par défaut - + Failed to read Snapmatic picture Impossible d'ouvrir la photo Snapmatic - + Failed to read Savegame file Impossible de lire le fichier de sauvegarde @@ -1532,48 +1532,48 @@ Appuyer sur 1 pour le mode par défaut 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 @@ -1598,55 +1598,55 @@ Appuyer sur 1 pour le mode par défaut 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 @@ -1679,13 +1679,13 @@ Appuyer sur 1 pour le mode par défaut 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) @@ -1958,7 +1958,7 @@ Appuyer sur 1 pour le mode par défaut Meme - + Snapmatic Title Titre Snapmatic @@ -2076,19 +2076,19 @@ Appuyer sur 1 pour le mode par défaut 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 : @@ -2102,61 +2102,61 @@ Appuyer sur 1 pour le mode par défaut PHOTO - %1 - + open file %1 ouverture du fichier %1 - + header not exists les headers n'existent pas - + header is malformed les headers sont incorrects - + picture not exists (%1) l'image n'existe pas (%1) - + JSON not exists (%1) le JSON n'existe pas (%1) - + title not exists (%1) le titre n'existe pas (%1) - + description not exists (%1) la description n'existe pas (%1) - + reading file %1 because of %2 Example for %2: JSON is malformed error lecture du fichier %1 : %2 - + JSON is incomplete and malformed JSON incomplet ou incorrect - + JSON is incomplete JSON incomplet - + JSON is malformed JSON incorrect @@ -2349,9 +2349,9 @@ Appuyer sur 1 pour le mode par défaut - - - + + + &Close Fer&mer @@ -2427,15 +2427,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... @@ -2489,37 +2489,37 @@ Appuyer sur 1 pour le mode par défaut - + %2 - %1 %2 - %1 - - + + &About %1 &À propos de %1 - - - + + + Select Profile Sélectionner un profil - - + + &Donate &Don - + Donate Don - + Donation methods Méthodes de don @@ -2532,30 +2532,30 @@ Appuyer sur 1 pour le mode par défaut Copier - + &Copy &Copier - + 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 diff --git a/res/gta5sync_ko.ts b/res/gta5sync_ko.ts index 396eb77..d2ebaa3 100644 --- a/res/gta5sync_ko.ts +++ b/res/gta5sync_ko.ts @@ -1397,7 +1397,7 @@ Press 1 for Default View - + All files (**) 모든 파일 (**) @@ -1442,26 +1442,26 @@ Press 1 for Default View - + GTA V Export (*.g5e) GTA V로 내보내기 (*.g5e) - + Savegames files (SGTA*) 세이브 파일 (SGTA*) - + Snapmatic pictures (PGTA*) 스냅매틱 이미지 (PGTA*) - + No valid file is selected 올바른 파일이 선택되지 않았습니다. @@ -1482,13 +1482,13 @@ Press 1 for Default View - + Failed to read Snapmatic picture 스냅매틱 이미지를 읽지 못했습니다. - + Failed to read Savegame file 세이브 파일을 읽지 못했습니다. @@ -1599,20 +1599,20 @@ Press 1 for Default View - - - - + + + + No Snapmatic pictures are selected 스냅매틱 이미지가 선택되지 않았습니다. - - - - + + + + %1 failed with... %2 @@ -1623,91 +1623,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*) @@ -2043,25 +2043,25 @@ Press 1 for Default View JSON 오류로 인해 스냅매틱 속성을 패치하지 못했습니다. - + Snapmatic Crew 조직 스냅매틱 - + New Snapmatic crew: 새로운 조직 스냅매틱: - + Snapmatic Title 스냅매틱 제목 - + New Snapmatic title: 새로운 스냅매틱 제목: @@ -2122,19 +2122,19 @@ Press 1 for Default View SnapmaticPicture - + JSON is incomplete and malformed JSON 파일이 불안정하거나 형식이 잘못되었습니다. - + JSON is incomplete JSON 파일이 불안정합니다. - + JSON is malformed 잘못된 JSON 형식 @@ -2144,42 +2144,42 @@ Press 1 for Default View 사진 - %1 - + open file %1 파일 열기 %1 - + header not exists 헤더가 존재하지 않습니다. - + header is malformed 헤더의 형식이 잘못되었습니다. - + picture not exists (%1) 이미지가 존재하지 않습니다. (%1) - + JSON not exists (%1) JSON 파일이 존재하지 않습니다. (%1) - + title not exists (%1) 제목이 존재하지 않습니다. (%1) - + description not exists (%1) 설명이 존재하지 않습니다. (%1) - + reading file %1 because of %2 Example for %2: JSON is malformed error %2의 예: JSON이 잘못된 형식입니다 @@ -2348,7 +2348,7 @@ Press 1 for Default View UserInterface - + %2 - %1 %2 - %1 @@ -2381,9 +2381,9 @@ Press 1 for Default View - - - + + + &Close 닫기(&C) @@ -2419,8 +2419,8 @@ Press 1 for Default View - - + + &About %1 %1 정보(&A) @@ -2476,15 +2476,15 @@ Press 1 for Default View - + Select &GTA V Folder... GTA V 폴더 선택(&G) - - + + Select GTA V Folder... GTA V 폴더 선택 @@ -2541,25 +2541,25 @@ Press 1 for Default View 인게임 숨기기 - - - + + + Select Profile 프로필 선택 - - + + &Donate 기부하기(&D) - + Donate 기부하기 - + Donation methods 기부 방법 @@ -2572,30 +2572,30 @@ Press 1 for Default View 복사 - + &Copy 복사(&C) - + Open File... 파일 열기... - - - - + + + + Open File 파일 열기 - + Can't open %1 because of not valid file format 올바른 파일 형식이 아니므로 %1을 열 수 없습니다. - + %1 - Messages %1 - 뉴스 diff --git a/res/gta5sync_ru.ts b/res/gta5sync_ru.ts index 914cb87..a05570c 100644 --- a/res/gta5sync_ru.ts +++ b/res/gta5sync_ru.ts @@ -1395,13 +1395,13 @@ Press 1 for Default View - + Savegames files (SGTA*) Файлы сохранения (SGTA*) - + Snapmatic pictures (PGTA*) Картинка Snapmatic (PGTA*) @@ -1409,7 +1409,7 @@ Press 1 for Default View - + All files (**) Все файлы (**) @@ -1430,20 +1430,20 @@ Press 1 for Default View - + Failed to read Snapmatic picture Не удалось загрузить картинку Snapmatic - + Failed to read Savegame file Не удалось загрузить файл сохранения - + No valid file is selected Выбранный файл неверен @@ -1550,48 +1550,48 @@ Press 1 for Default View Подготовка данных к импорту... - - + + Qualify as Avatar Пометить как Аватар - - - - + + + + No Snapmatic pictures are selected Не выделена ни одна картинка Snapmatic - - - - + + + + Patch selected... Пропатчить выделенные... - - - - - - - - + + + + + + + + Patch file %1 of %2 files Изменяется файл %1 из %2 - - - - + + + + %1 failed with... %2 @@ -1612,55 +1612,55 @@ Press 1 for Default View Не удалось удалить все выделенные картинки 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... Изменение заголовка @@ -1696,13 +1696,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) @@ -1977,7 +1977,7 @@ Press 1 for Default View Meme - + Snapmatic Title Заголовок Snapmatic @@ -2083,19 +2083,19 @@ Press 1 for Default View Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода - + New Snapmatic title: Новый заголовок Snapmatic: - + Snapmatic Crew Банда на Snapmatic - + New Snapmatic crew: Новая банда на Snapmatic: @@ -2109,61 +2109,61 @@ Press 1 for Default View ФОТО - %1 - + open file %1 Открыть файл %1 - + header not exists Отсутствует шапка (header) - + header is malformed Шапка (header) повреждена - + picture not exists (%1) Картинки не существует (%1) - + JSON not exists (%1) JSON не существует (%1) - + title not exists (%1) Заголовок отсутствует (%1) - + description not exists (%1) Описание отсутствует (%1) - + reading file %1 because of %2 Example for %2: JSON is malformed error Чтение из файла %1 из-за %2 - + JSON is incomplete and malformed JSON не полный и повреждён - + JSON is incomplete JSON частично отсутствует - + JSON is malformed JSON повреждён @@ -2396,7 +2396,7 @@ Press 1 for Default View - + Select &GTA V Folder... Выбрать &папку GTA V... @@ -2440,9 +2440,9 @@ Press 1 for Default View - - - + + + &Close &Закрыть @@ -2482,51 +2482,51 @@ Press 1 for Default View &Открыть файл... - - - + + + Select Profile Выбор профиля - - + + Select GTA V Folder... Выбрать папку GTA V... - + %2 - %1 %2 - %1 - - + + &About %1 &О программе %1 - - + + &Donate По&жертвовать - + Donate Пожертвовать - + Donation methods Способы для взноса - + &Copy &Копировать @@ -2539,25 +2539,25 @@ Press 1 for Default View Копировать - + Open File... Открыть файл... - - - - + + + + Open File Открыть файл - + Can't open %1 because of not valid file format Не удалось открыть %1 из-за неверного формата файла - + %1 - Messages %1 - Новости diff --git a/res/gta5sync_uk.ts b/res/gta5sync_uk.ts index 4d08720..c49c9ce 100644 --- a/res/gta5sync_uk.ts +++ b/res/gta5sync_uk.ts @@ -1387,7 +1387,7 @@ Press 1 for Default View - + All files (**) Усі файли (**) @@ -1432,26 +1432,26 @@ Press 1 for Default View - + GTA V Export (*.g5e) GTA V Export (*.g5e) - + Savegames files (SGTA*) Файли збереження гри (SGTA*) - + Snapmatic pictures (PGTA*) Snapmatic зображення (PGTA*) - + No valid file is selected Вибрані недійсні файли @@ -1472,13 +1472,13 @@ Press 1 for Default View - + Failed to read Snapmatic picture Не вдалося прочитати Snapmatic картинку - + Failed to read Savegame file Не вдалося прочитати файл збереження гри @@ -1579,20 +1579,20 @@ Press 1 for Default View - - - - + + + + No Snapmatic pictures are selected Не вибрано жодного Snapmatic зображення - - - - + + + + %1 failed with... %2 @@ -1612,87 +1612,87 @@ Press 1 for Default View 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*) @@ -2028,25 +2028,25 @@ Press 1 for Default View Змінити властивості Snapmatic не вдалося через JSON Помилку - + Snapmatic Crew Snapmatic банда - + New Snapmatic crew: Нова Snapmatic банда: - + Snapmatic Title Snapmatic назва - + New Snapmatic title: Новий Snapmatic заголовок: @@ -2103,19 +2103,19 @@ Press 1 for Default View SnapmaticPicture - + JSON is incomplete and malformed JSON неповний та неправильний - + JSON is incomplete JSON неповний - + JSON is malformed JSON неправильний @@ -2125,42 +2125,42 @@ Press 1 for Default View ФОТО - %1 - + open file %1 відкрити файл%1 - + header not exists заголовок не існує - + header is malformed заголовок неправильний - + picture not exists (%1) зображення не існує (%1) - + JSON not exists (%1) JSON не існує (%1) - + title not exists (%1) заголовок не існує (%1) - + description not exists (%1) опис не існує (%1) - + reading file %1 because of %2 Example for %2: JSON is malformed error читання файлу %1 тому що %2 @@ -2329,7 +2329,7 @@ Press 1 for Default View UserInterface - + %2 - %1 %2 - %1 @@ -2361,9 +2361,9 @@ Press 1 for Default View - - - + + + &Close &Закрити @@ -2399,8 +2399,8 @@ Press 1 for Default View - - + + &About %1 &Про %1 @@ -2456,15 +2456,15 @@ Press 1 for Default View - + Select &GTA V Folder... Вибрати &GTA V теку... - - + + Select GTA V Folder... Вибрати GTA V теку... @@ -2521,25 +2521,25 @@ Press 1 for Default View Сховати у грі - - - + + + Select Profile Вибрати профіль - - + + &Donate &Пожертвування - + Donate Пожертвування - + Donation methods Метод пожертвування @@ -2552,30 +2552,30 @@ Press 1 for Default View Копіювати - + &Copy &Копіювати - + 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.ts b/res/gta5sync_zh_TW.ts index bb70143..fb4d4bc 100644 --- a/res/gta5sync_zh_TW.ts +++ b/res/gta5sync_zh_TW.ts @@ -1381,7 +1381,7 @@ Press 1 for Default View - + All files (**) 所有檔案 (**) @@ -1426,26 +1426,26 @@ Press 1 for Default View - + GTA V Export (*.g5e) GTA V Export (*.g5e) - + Savegames files (SGTA*) 遊戲存檔 (SGTA*) - + Snapmatic pictures (PGTA*) Snapmatic 圖片 (PGTA*) - + No valid file is selected 沒有選擇有效的檔案 @@ -1464,13 +1464,13 @@ Press 1 for Default View - + Failed to read Snapmatic picture 無法讀取 Snapmatic 圖片 - + Failed to read Savegame file 無法讀取遊戲存檔 @@ -1569,20 +1569,20 @@ Press 1 for Default View - - - - + + + + No Snapmatic pictures are selected 未選擇 Snapmatic 圖片 - - - - + + + + %1 failed with... %2 @@ -1602,87 +1602,87 @@ Press 1 for Default View 已有與 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*) @@ -2010,25 +2010,25 @@ Press 1 for Default View JSON 錯誤,未能更新 Snapmatic 屬性 - + Snapmatic Crew 幫會 - + New Snapmatic crew: 輸入新的幫會: - + Snapmatic Title 標題 - + New Snapmatic title: 輸入新的標題: @@ -2085,19 +2085,19 @@ Press 1 for Default View SnapmaticPicture - + JSON is incomplete and malformed JSON 不完整和異常 - + JSON is incomplete JSON 不完整 - + JSON is malformed JSON 異常 @@ -2107,42 +2107,42 @@ Press 1 for Default View 照片 - %1 - + open file %1 開啟檔案 - %1 - + header not exists 標頭不存在 - + header is malformed 標頭異常 - + picture not exists (%1) 圖片不存在 (%1) - + JSON not exists (%1) JSON 不存在 (%1) - + title not exists (%1) 標題不存在 (%1) - + description not exists (%1) 描述不存在 (%1) - + reading file %1 because of %2 Example for %2: JSON is malformed error 讀取檔案 %1 失敗,因為 %2 @@ -2310,7 +2310,7 @@ Press 1 for Default View UserInterface - + %2 - %1 %2 - %1 @@ -2342,9 +2342,9 @@ Press 1 for Default View - - - + + + &Close 關閉(&C) @@ -2380,8 +2380,8 @@ Press 1 for Default View - - + + &About %1 關於 %1(&A) @@ -2437,15 +2437,15 @@ Press 1 for Default View - + Select &GTA V Folder... 選擇 GTA V 資料夾(&G)... - - + + Select GTA V Folder... 選擇 GTA V 資料夾... @@ -2502,25 +2502,25 @@ Press 1 for Default View 在遊戲中隱藏 - - - + + + Select Profile 選擇設定檔 - - + + &Donate 贊助(&D) - + Donate 贊助 - + Donation methods 贊助方式 @@ -2533,30 +2533,30 @@ Press 1 for Default View 複製 - + &Copy 複製(&C) - + Open File... 開啟檔案... - - - - + + + + Open File 開啟檔案 - + Can't open %1 because of not valid file format 格式無效,無法開啟 %1 - + %1 - Messages %1 - 新聞