From 1fbe4d9e679e7cde0e02a093f75dd3b994bde4cb Mon Sep 17 00:00:00 2001 From: Syping Date: Sun, 11 Oct 2020 17:46:45 +0200 Subject: [PATCH] gta5view 1.8.0 release --- .ci/windows_docker.sh | 4 +- .ci/wininstall_build.sh | 1 - .drone.yml | 13 +- .drone/drone.sh | 5 +- .flatpak/de.syping.gta5view.yml | 2 +- .gitlab-ci.yml | 2 +- .travis.yml | 9 +- MapLocationDialog.cpp | 24 ++ MapLocationDialog.h | 4 + ProfileInterface.cpp | 16 +- README.md | 2 +- SnapmaticPicture.cpp | 1 + StringParser.cpp | 12 +- res/gta5sync.ts | 398 ++++++++++++++++---------------- res/gta5sync_de.qm | Bin 48550 -> 48389 bytes res/gta5sync_de.ts | 394 ++++++++++++++++--------------- res/gta5sync_en_US.ts | 398 ++++++++++++++++---------------- res/gta5sync_fr.qm | Bin 46839 -> 46759 bytes res/gta5sync_fr.ts | 396 ++++++++++++++++--------------- res/gta5sync_ko.qm | Bin 38334 -> 38282 bytes res/gta5sync_ko.ts | 398 ++++++++++++++++---------------- res/gta5sync_ru.qm | Bin 46674 -> 46602 bytes res/gta5sync_ru.ts | 396 ++++++++++++++++--------------- res/gta5sync_uk.qm | Bin 47910 -> 47840 bytes res/gta5sync_uk.ts | 396 ++++++++++++++++--------------- res/gta5sync_zh_TW.qm | Bin 35798 -> 35742 bytes res/gta5sync_zh_TW.ts | 396 ++++++++++++++++--------------- 27 files changed, 1636 insertions(+), 1631 deletions(-) diff --git a/.ci/windows_docker.sh b/.ci/windows_docker.sh index 2e08986..0572fe7 100755 --- a/.ci/windows_docker.sh +++ b/.ci/windows_docker.sh @@ -17,9 +17,9 @@ export GTA5VIEW_EXECUTABLE=gta5view-${EXECUTABLE_VERSION}${EXECUTABLE_ARCH}.exe if [ "${PACKAGE_CODE}" == "gta5-mods" ]; then ${PROJECT_DIR}/.ci/dropbox_uploader.sh mkdir gta5-mods/${PACKAGE_VERSION} ${PROJECT_DIR}/.ci/dropbox_uploader.sh upload ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} gta5-mods/${PACKAGE_VERSION}/${GTA5VIEW_EXECUTABLE} && \ - rm -rf ${GTA5VIEW_EXECUTABLE} + rm -rf ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} elif [ "${PACKAGE_CODE}" == "gtainside" ]; then ${PROJECT_DIR}/.ci/dropbox_uploader.sh mkdir gtainside/${PACKAGE_VERSION} ${PROJECT_DIR}/.ci/dropbox_uploader.sh upload ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} gtainside/${PACKAGE_VERSION}/${GTA5VIEW_EXECUTABLE} && \ - rm -rf ${GTA5VIEW_EXECUTABLE} + rm -rf ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} fi diff --git a/.ci/wininstall_build.sh b/.ci/wininstall_build.sh index 321018e..14b1d6c 100755 --- a/.ci/wininstall_build.sh +++ b/.ci/wininstall_build.sh @@ -25,4 +25,3 @@ x86_64-w64-mingw32-strip -s gta5view.exe && \ cd ${PROJECT_DIR}/assets && \ makensis -NOCD ${PROJECT_DIR}/.ci/gta5view.nsi && \ mv -f gta5view_setup.exe gta5view-${EXECUTABLE_VERSION}_setup.exe - diff --git a/.drone.yml b/.drone.yml index b980aa0..4475c63 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,7 +2,7 @@ kind: pipeline type: docker environment: - BUILD_TYPE: "RC" + BUILD_TYPE: "REL" steps: - name: Windows Installer @@ -14,6 +14,9 @@ steps: from_secret: tca_pass commands: - .drone/drone.sh + volumes: + - name: gta5view + path: /srv/gta5view - name: Windows Portable image: sypingauto/gta5view-build:1.8-static environment: @@ -23,3 +26,11 @@ steps: from_secret: tca_pass commands: - .drone/drone.sh + volumes: + - name: gta5view + path: /srv/gta5view + +volumes: +- name: gta5view + host: + path: /srv/gta5view diff --git a/.drone/drone.sh b/.drone/drone.sh index 2006971..b489e12 100755 --- a/.drone/drone.sh +++ b/.drone/drone.sh @@ -27,6 +27,7 @@ fi # Init Application Commit Hash export APPLICATION_COMMIT=$(git rev-parse --short HEAD) -# Start CI script and copying assets into base directory +# Start CI script and copying assets into gta5view directory .ci/ci.sh && \ -cp -Rf assets/* ./ +mkdir -p /srv/gta5view/${APPLICATION_COMMIT} && \ +cp -Rf assets/* /srv/gta5view/${APPLICATION_COMMIT}/ diff --git a/.flatpak/de.syping.gta5view.yml b/.flatpak/de.syping.gta5view.yml index 6969095..260f66a 100644 --- a/.flatpak/de.syping.gta5view.yml +++ b/.flatpak/de.syping.gta5view.yml @@ -1,6 +1,6 @@ app-id: de.syping.gta5view runtime: org.kde.Platform -runtime-version: '5.14' +runtime-version: '5.15' sdk: org.kde.Sdk command: gta5view finish-args: diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 825e15c..7c5f0d6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ stages: - build variables: - BUILD_TYPE: "RC" + BUILD_TYPE: "REL" Windows Installer: stage: build diff --git a/.travis.yml b/.travis.yml index a433724..b46e77d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ -dist: trusty +dist: bionic sudo: required language: cpp @@ -8,7 +8,7 @@ service: env: global: - - BUILD_TYPE=RC + - BUILD_TYPE=REL matrix: include: @@ -27,6 +27,11 @@ matrix: - QT_SELECT=qt5-x86_64-w64-mingw32 - RELEASE_LABEL="Windows 64-Bit Portable for gta5-mods" - PACKAGE_CODE=gta5-mods + - env: + - BUILD_SCRIPT=windows_docker.sh + - QT_SELECT=qt5-x86_64-w64-mingw32 + - RELEASE_LABEL="Windows 64-Bit Portable for gtainside" + - PACKAGE_CODE=gtainside - env: - BUILD_SCRIPT=wininstall_docker.sh - QT_SELECT=qt5-x86_64-w64-mingw32 diff --git a/MapLocationDialog.cpp b/MapLocationDialog.cpp index 7c63b74..7268165 100644 --- a/MapLocationDialog.cpp +++ b/MapLocationDialog.cpp @@ -95,6 +95,21 @@ void MapLocationDialog::on_cmdDone_clicked() changeMode = false; } +#if QT_VERSION >= 0x060000 +void MapLocationDialog::updatePosFromEvent(double x, double y) +{ + QSize mapPixelSize = size(); + double xpos_ad = x; + double ypos_ad = mapPixelSize.height() - y; + double xrat = 10000 / (double)mapPixelSize.width(); + double yrat = 12000 / (double)mapPixelSize.height(); + double xpos_rv = xrat * xpos_ad; + double ypos_rv = yrat * ypos_ad; + double xpos_fp = xpos_rv - 4000; + double ypos_fp = ypos_rv - 4000; + drawPointOnMap(xpos_fp, ypos_fp); +} +#else void MapLocationDialog::updatePosFromEvent(int x, int y) { QSize mapPixelSize = size(); @@ -108,6 +123,7 @@ void MapLocationDialog::updatePosFromEvent(int x, int y) double ypos_fp = ypos_rv - 4000; drawPointOnMap(xpos_fp, ypos_fp); } +#endif void MapLocationDialog::paintEvent(QPaintEvent *ev) { @@ -156,7 +172,11 @@ void MapLocationDialog::mouseMoveEvent(QMouseEvent *ev) if (!changeMode) { ev->ignore(); } else if (ev->buttons() & Qt::LeftButton) { +#if QT_VERSION >= 0x060000 + updatePosFromEvent(ev->position().x(), ev->position().y()); +#else updatePosFromEvent(ev->x(), ev->y()); +#endif ev->accept(); } else @@ -170,7 +190,11 @@ void MapLocationDialog::mouseReleaseEvent(QMouseEvent *ev) if (!changeMode) { ev->ignore(); } else if (ev->button() == Qt::LeftButton) { +#if QT_VERSION >= 0x060000 + updatePosFromEvent(ev->position().x(), ev->position().y()); +#else updatePosFromEvent(ev->x(), ev->y()); +#endif ev->accept(); } else diff --git a/MapLocationDialog.h b/MapLocationDialog.h index 11ba47a..ecf847b 100644 --- a/MapLocationDialog.h +++ b/MapLocationDialog.h @@ -48,7 +48,11 @@ private slots: void on_cmdApply_clicked(); void on_cmdChange_clicked(); void on_cmdRevert_clicked(); +#if QT_VERSION >= 0x060000 + void updatePosFromEvent(double x, double y); +#else void updatePosFromEvent(int x, int y); +#endif void on_cmdClose_clicked(); private: diff --git a/ProfileInterface.cpp b/ProfileInterface.cpp index 5c7685f..c7dc7b8 100644 --- a/ProfileInterface.cpp +++ b/ProfileInterface.cpp @@ -263,11 +263,7 @@ void ProfileInterface::insertSnapmaticIPI(QWidget *widget) QStringList widgetsKeyList = widgets.values(); QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive); #if QT_VERSION >= 0x050600 -#if QT_VERSION >= 0x050F00 std::sort(pictureKeyList.rbegin(), pictureKeyList.rend()); -#else - qSort(pictureKeyList.rbegin(), pictureKeyList.rend()); -#endif #else qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater()); #endif @@ -287,7 +283,7 @@ void ProfileInterface::insertSavegameIPI(QWidget *widget) QString widgetKey = widgets[proWidget]; QStringList widgetsKeyList = widgets.values(); QStringList savegameKeyList = widgetsKeyList.filter("SGD", Qt::CaseSensitive); -#if QT_VERSION >= 0x050F00 +#if QT_VERSION >= 0x050600 std::sort(savegameKeyList.begin(), savegameKeyList.end()); #else qSort(savegameKeyList.begin(), savegameKeyList.end()); @@ -310,11 +306,7 @@ void ProfileInterface::dialogNextPictureRequested(QWidget *dialog) QStringList widgetsKeyList = widgets.values(); QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive); #if QT_VERSION >= 0x050600 -#if QT_VERSION >= 0x050F00 std::sort(pictureKeyList.rbegin(), pictureKeyList.rend()); -#else - qSort(pictureKeyList.rbegin(), pictureKeyList.rend()); -#endif #else qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater()); #endif @@ -349,11 +341,7 @@ void ProfileInterface::dialogPreviousPictureRequested(QWidget *dialog) QStringList widgetsKeyList = widgets.values(); QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive); #if QT_VERSION >= 0x050600 -#if QT_VERSION >= 0x050F00 std::sort(pictureKeyList.rbegin(), pictureKeyList.rend()); -#else - qSort(pictureKeyList.rbegin(), pictureKeyList.rend()); -#endif #else qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater()); #endif @@ -385,7 +373,7 @@ void ProfileInterface::sortingProfileInterface() QStringList widgetsKeyList = widgets.values(); -#if QT_VERSION >= 0x050F00 +#if QT_VERSION >= 0x050600 std::sort(widgetsKeyList.begin(), widgetsKeyList.end()); #else qSort(widgetsKeyList.begin(), widgetsKeyList.end()); diff --git a/README.md b/README.md index 003894d..665701b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Grand Theft Auto V Savegame and Snapmatic viewer/editor - View Snapmatics with the ability to disable them in-game - Edit Snapmatic pictures and properties in multiple ways - Import/Export Snapmatics, Savegames and pictures -- Let choose between multiple Social Club accounts as GTA V profiles IDs +- Choose between multiple Social Club accounts as GTA V profiles IDs #### Screenshots ![Snapmatic Picture Viewer](res/src/picture.png) diff --git a/SnapmaticPicture.cpp b/SnapmaticPicture.cpp index ed1098b..a98c182 100644 --- a/SnapmaticPicture.cpp +++ b/SnapmaticPicture.cpp @@ -1428,6 +1428,7 @@ QString SnapmaticPicture::parseTitleString(const QByteArray &commitBytes, int ma #if QT_VERSION >= 0x060000 QStringDecoder strDecoder = QStringDecoder(QStringDecoder::Utf16LE); QString retStr = strDecoder(commitBytes); + retStr = retStr.trimmed(); #else QString retStr = QTextCodec::codecForName("UTF-16LE")->toUnicode(commitBytes).trimmed(); #endif diff --git a/StringParser.cpp b/StringParser.cpp index bf7743a..f058ade 100644 --- a/StringParser.cpp +++ b/StringParser.cpp @@ -48,12 +48,16 @@ QString StringParser::escapeString(const QString &toEscape) QString StringParser::convertBuildedString(const QString &buildedStr) { QString outputStr = buildedStr; - QByteArray sharePath = GTA5SYNC_SHARE; - outputStr.replace("APPNAME:", GTA5SYNC_APPSTR); - outputStr.replace("SHAREDDIR:", QString::fromUtf8(sharePath)); - outputStr.replace("RUNDIR:", QFileInfo(qApp->applicationFilePath()).absoluteDir().absolutePath()); + outputStr.replace("APPNAME:", QString::fromUtf8(GTA5SYNC_APPSTR)); + outputStr.replace("SHAREDDIR:", QString::fromUtf8(GTA5SYNC_SHARE)); + outputStr.replace("RUNDIR:", QFileInfo(QApplication::applicationFilePath()).canonicalPath()); +#if QT_VERSION >= 0x060000 + outputStr.replace("QCONFLANG:", QLibraryInfo::path(QLibraryInfo::TranslationsPath)); + outputStr.replace("QCONFPLUG:", QLibraryInfo::path(QLibraryInfo::PluginsPath)); +#else outputStr.replace("QCONFLANG:", QLibraryInfo::location(QLibraryInfo::TranslationsPath)); outputStr.replace("QCONFPLUG:", QLibraryInfo::location(QLibraryInfo::PluginsPath)); +#endif outputStr.replace("SEPARATOR:", QDir::separator()); return outputStr; } diff --git a/res/gta5sync.ts b/res/gta5sync.ts index e408904..a750ee0 100644 --- a/res/gta5sync.ts +++ b/res/gta5sync.ts @@ -191,21 +191,21 @@ 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 @@ -343,14 +343,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! @@ -991,80 +991,80 @@ Y: %2 - - + + Export as &Picture... - - + + Export as &Snapmatic... - - + + &Edit Properties... - - + + &Overwrite Image... - - + + Open &Map Viewer... - - + + Open &JSON Editor... - + Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate - - + + Snapmatic Picture Viewer - - + + Failed at %1 - - - + + + No Players - - + + No Crew - + Unknown Location - + Avatar Preview Mode Press 1 for Default View @@ -1274,23 +1274,23 @@ Press 1 for Default View - - - - - - - - - + + + + + + + + + + - - - - - - - + + + + + + Import... @@ -1307,14 +1307,14 @@ Press 1 for Default View - + All image files (%1) - + All files (**) @@ -1322,211 +1322,211 @@ Press 1 for Default View - + Can't import %1 because file can't be open - + Can't import %1 because file can't be parsed properly - + Enabled pictures: %1 of %2 - + Loading... - + 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 @@ -1534,81 +1534,81 @@ 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... @@ -1622,17 +1622,7 @@ Press 1 for Default View QApplication - - Font - - - - - Selected Font: %1 - - - - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? @@ -1710,37 +1700,37 @@ Press 1 for Default View - + &View - + &Export - + &Remove - + &Select - + &Deselect - + Select &All - + &Deselect All @@ -1838,8 +1828,8 @@ Press 1 for Default View - - + + Snapmatic Properties @@ -1931,8 +1921,8 @@ Press 1 for Default View - - + + Patching of Snapmatic Properties failed because of I/O Error @@ -1943,73 +1933,73 @@ Press 1 for Default View - - + + Snapmatic Crew - - + + New Snapmatic crew: - - + + Snapmatic Title - - + + New Snapmatic title: - - - + + + Edit - + Players: %1 (%2) Multiple Player are inserted here - + Player: %1 (%2) One Player is inserted here - + Title: %1 (%2) - - + + Appropriate: %1 - + Yes Yes, should work fine - + No No, could lead to issues - + Crew: %1 (%2) @@ -2018,64 +2008,64 @@ Press 1 for Default View SnapmaticPicture - + JSON is incomplete and malformed - + JSON is incomplete - + JSON is malformed - + PHOTO - %1 - + 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 @@ -2136,52 +2126,52 @@ Press 1 for Default View - + Edi&t - + Show &In-game - + Hide &In-game - + &Export - + &View - + &Remove - + &Select - + &Deselect - + Select &All - + &Deselect All @@ -2209,22 +2199,22 @@ Press 1 for Default View TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? - + %1 User Statistics - + Yes, I want include personal usage data. - + &OK @@ -2401,15 +2391,15 @@ Press 1 for Default View - - + + Show In-game - - + + Hide In-game diff --git a/res/gta5sync_de.qm b/res/gta5sync_de.qm index 246cd44b965e0156862940a0b9e1de81ad98b266..ce90a9d0429d339507e7e9c03b5e88024ab987c6 100644 GIT binary patch delta 1693 zcmXAqeQ-=y7{;G__g=gA-o4qOVI?Fxi3&C!iY7r5^)ZRhY)OTRZ&N898xxX@h=|xE zNJF!ZkjQF;d~e7!2#pFdHK@pjq)HW~QZcP&C?kVvU$cMxX3w1SzVGv#=bo*6&F8%0 z3p}}j_Wt4A$MzT#XSG{>`Q1JCoyJTHgwq1BV<`j|(HRJ#eJC*S41^nVfe;nK%}`*Z z7GeZ3k2sAu$_deR5y+Y1=0Q7jWwEq>5{xC;z*q~0kKPKzopbYWCCrs+z_2u!YnB0h z17U8A0$3m?dHKQou6M-}nBVoT=!N;O4}i)*7Q-3+1|aZVr{Wn1yLFUKwjgpWo%}Ku zQ7b!vsy|o`XX0X61vhoIfb4N0!1_h_s{T5#{Sr>TN&#lv#gE6w(3yK^J3JlOrJ$>m z&gxI1`;bV#8}KyI0?bb1P|MxGM0# z(D%6$vl>Y3bI$dW%I~dV6}-iJe=fgt$Ymfv;8(?x7d!oVYYur@{g9~|6X(N%HAc>h zMQJ9i*wD(?h7|(kMSR`zE+C_xKXHO=&YI0PwhRF>AM(w@2ojXRpZ}f)tvSeF-fI9X z67Nc)ea@wP`;*;($M5{T%QJ!SDg1*h}A;9Z9bs%3a6D76s!`Vx%5K{PPpJo-2+S-=;r3% z+$^yRu2VMJcTMPCd>R-NA@p9q0*t;TylEn3wYONDXp%g|__h|n7RfS1)2LNqW(cYB zWnzJKByec9=m?_u3z|enHuc)07t3DF1rk0N%d-}c;SubrXyOd)iRdfu+u6tGf(NCn zkoE7gR`Sz&3ROT|G27Y4Vs^aL7L=w?cTro|R!HGewdLo@p~`0Mw=@3+B7C&Roc{m^ z9x+iH(C=uA_HE;1%Fhy=7<~aK?Pif$)ARt{tZEk})~2(T9R{p-bZgJA1hzPI>Gx@@ z*h{*M#5{`23f&gJTfpuzUDZljPvUf^M(zNTcj=m2D7^()tU?>+y{AJm-kC_ngCyTn z%El;-6wphVa13EDwBg(m7OeBlw7r$qOnXWJS}d(eAPQThbuUK)8&joiXQ`H-D&}WUuL@)xAo7 zC|O?RRPv+A)Aapr7PTt*t<=>&NU^`k0^ZA33XS7{ue%gSAU$jT>)lMh>1MH_lsDX` zFFszW(NbOp7b$gTNn!maxk6wsK4^V1WL}L6vdUi znXFi-Tt7g5?$#(Bh4k7Lyk(+d;$${d3E=Z?vlt~{d`*vj#}sNJ=jrzaQxm05@8Ia& z+}P^ozSnw3G}Tbk_2mW{IwfD<)I%0jA7Dq60JF1E)hgF$#)Yc4ldisOzdGn{2)!9u z>Y&FIQ~NB{e4EPK8`!@}bU&7%+N&w*>mI1}^ZbE*Mi!?};5U`AGkT*}h#`J>A~0vJ zVMWpl`nyOnBwlX-@*~(2y^%99Q5`nGYIy299T;C=cu_)qGBZ|_F|EfYtL+1SAbFAuquo0s$sU z%K7sYVsNVsr}4lu1e@D@L=T9_Rl0?EH53dHFuyeYW%wfAnv@ zVlp?&JSCXxH@|G;Cd?@Yo)wxu)W=+ha8>}yeuH2qHlKsg?*%;74q<3D;HPsi=Msb~ zfxuif#8BeSN{CB{{>>2WUjwCs4j%S2-!<@c!A!>)V_IQ)9J785rpGalmcexAS>ieP zRCWW#0r<2>0Z|X&^Ek%V1_!IYN6^(1z@#oLcs>GnXC)#M27$)+SUzXuZn7F~ae)OT z^ZkH~jo8&PK=rRfef%UK=Rcf&lm#rkhHp;Jqj#^P?_?@+cW}f3*%3nB6*8$@SkCAVYqq3X)`JVkQ zK(xf$)9Jb9-}wH!djaR0{Pmt?KyWz!)6vPmp+0`}_8Ka;nSG}+`v0hsj(!K!#;cyZ zFabndQMqNN0`r?yfm!3g;n!4aY&(Djvs6jh({(!5sPJ&$A`oy@_~*>y&fZ}WqEV_B*Y|Z%34JU@H2VJ~7Wh$D z1}0Xd%mt3z5Usvczj>KxEumcdYQ)2jRs)IgVqMWXGEOgR7meH@HY^(CN`sR}w==oW zn~6?oQmcBh&;T4av3#d!Q_T)_MQs*k7uA+N3()Y9x~`KHYIsHc>9Tu3sE4|(`48Zu z95(Lc?b@9t4oD)zSy&Db{qIv@`M= z$-h=A_Y0(#2A(gs=&Umc?noQPpwQZV-mi-XTqe+Olv;BJb25m_tbvo7T$F ze$9(@u(Dihjiea5JZ+r|6`fVCJu^lU9P?u}inqzOSf^ILr5ZQr+?#3iM|^ZoU-P4# zQKWl%lx%7q)|tMi@O#7AT_w_WpR>-~NLJtSldfg0CoQ!`7NJe#^8?s%t={dt%lcWV zK+I~Fxb$)QU8K9D4zvR0y=+*k=RRTM+L=#IxZF2H0U;GG&^d{OiERte_2;ng z7pA|cjal^WyU9s!ZOTkaOXXCcZHq<7LI&PO0^Y+dY(_F&O~Wd@Mb}%9ghXT_gigHR X&pP9t&_t%CW`<1j@^8CS>K6PzWxXv- diff --git a/res/gta5sync_de.ts b/res/gta5sync_de.ts index 0d5d6e2..11b3e12 100644 --- a/res/gta5sync_de.ts +++ b/res/gta5sync_de.ts @@ -176,8 +176,8 @@ Snapmatic Bilder und Spielständen ImageEditorDialog - - + + Snapmatic Image Editor @@ -209,13 +209,13 @@ Snapmatic Bilder und Spielständen S&chließen - + 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 @@ -359,14 +359,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 @@ -1012,37 +1012,37 @@ Y: %2 Exportieren - - + + 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... - + Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate @@ -1051,39 +1051,39 @@ Taste 2 - Overlay umschalten Pfeiltasten - Navigieren - - + + Snapmatic Picture Viewer Snapmatic Bildansicht - - + + Failed at %1 Fehlgeschlagen beim %1 - - + + No Crew Keine Crew - - - + + + No Players Keine Spieler - + Avatar Preview Mode Press 1 for Default View Avatar Vorschaumodus Drücke 1 für Standardmodus - + Unknown Location Unbekannter Standort @@ -1185,8 +1185,8 @@ Drücke 1 für Standardmodus Keine gültige Datei wurde ausgewählt - - + + Open &JSON Editor... &JSON Editor öffnen... @@ -1284,40 +1284,40 @@ Drücke 1 für Standardmodus S&chließen - + Loading... Lade... - + Snapmatic Loader Snapmatic Lader - + <h4>Following Snapmatic Pictures got repaired</h4>%1 <h4>Folgende Snapmatic Bilder wurden repariert</h4>%1 - - - - - - - - - + + + + + + + + + + - - - - - - - + + + + + + Import... Importieren... @@ -1332,45 +1332,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 @@ -1379,13 +1379,13 @@ 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 @@ -1393,135 +1393,135 @@ Drücke 1 für Standardmodus - + 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 - + Enabled pictures: %1 of %2 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 @@ -1531,93 +1531,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 @@ -1636,7 +1636,7 @@ Drücke 1 für Standardmodus Alle Profildateien (*.g5e SGTA* PGTA*) - + GTA V Export (*.g5e) GTA V Export (*.g5e) @@ -1645,17 +1645,15 @@ Drücke 1 für Standardmodus QApplication - Font - Schrift + Schrift - Selected Font: %1 - Ausgewähle Schrift: %1 + Ausgewähle Schrift: %1 - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? <h4>Willkommen zu %1!</h4>Möchtest du %1 einstellen bevor du es nutzt? @@ -1771,32 +1769,32 @@ 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 @@ -1811,7 +1809,7 @@ Drücke 1 für Standardmodus Spielstand kopieren - + &Export &Exportieren @@ -1863,8 +1861,8 @@ Drücke 1 für Standardmodus - - + + Snapmatic Properties Snapmatic Eigenschaften @@ -1905,8 +1903,8 @@ Drücke 1 für Standardmodus Meme - - + + Snapmatic Title Snapmatic Titel @@ -1916,30 +1914,30 @@ Drücke 1 für Standardmodus Snapmatic Werte - + Crew: %1 (%2) Crew: %1 (%2) - + Title: %1 (%2) Titel: %1 (%2) - + Players: %1 (%2) Multiple Player are inserted here Spieler: %1 (%2) - + Player: %1 (%2) One Player is inserted here Spieler: %1 (%2) - - + + Appropriate: %1 Angemessen: %1 @@ -1979,20 +1977,20 @@ Drücke 1 für Standardmodus Abbre&chen - - - + + + Edit Bearbeiten - + Yes Yes, should work fine Ja - + No No, could lead to issues Nein @@ -2014,27 +2012,27 @@ 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: @@ -2042,66 +2040,66 @@ Drücke 1 für Standardmodus SnapmaticPicture - + PHOTO - %1 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 @@ -2161,52 +2159,52 @@ Drücke 1 für Standardmodus 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 @@ -2234,22 +2232,22 @@ Drücke 1 für Standardmodus TelemetryDialog - + %1 User Statistics %1 Benutzerstatistik - + You want help %1 to improve in the future by including personal usage data in your submission? Sollen bei Einreichungen Persönliche Nutzungsdaten einbezogen werden um %1 in der Zukunft zu unterstützen? - + Yes, I want include personal usage data. Ja, ich möchte Persönliche Nutzungsdaten einbeziehen. - + &OK &OK @@ -2456,15 +2454,15 @@ 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 518ff52..d4cf2b3 100644 --- a/res/gta5sync_en_US.ts +++ b/res/gta5sync_en_US.ts @@ -166,8 +166,8 @@ Pictures and Savegames ImageEditorDialog - - + + Snapmatic Image Editor @@ -199,13 +199,13 @@ Pictures and Savegames - + Patching of Snapmatic Image failed because of I/O Error - + Patching of Snapmatic Image failed because of Image Error @@ -349,14 +349,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! @@ -991,74 +991,74 @@ Y: %2 - - + + Export as &Picture... - - + + Export as &Snapmatic... - - + + &Overwrite Image... - - + + &Edit Properties... - - + + Open &Map Viewer... - + Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate - - + + Snapmatic Picture Viewer - - + + Failed at %1 - - - + + + No Players - - + + No Crew - + Unknown Location - + Avatar Preview Mode Press 1 for Default View @@ -1167,8 +1167,8 @@ Press 1 for Default View - - + + Open &JSON Editor... @@ -1272,45 +1272,45 @@ Press 1 for Default View - + Enabled pictures: %1 of %2 - + Loading... - + Snapmatic Loader - + <h4>Following Snapmatic Pictures got repaired</h4>%1 - - - - - - - - - + + + + + + + + + + - - - - - - - + + + + + + Import... @@ -1325,24 +1325,24 @@ Press 1 for Default View - + Importable files (%1) - + GTA V Export (*.g5e) - + Savegames files (SGTA*) - + Snapmatic pictures (PGTA*) @@ -1350,46 +1350,46 @@ Press 1 for Default View - + 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 @@ -1397,147 +1397,147 @@ Press 1 for Default View - + Can't import %1 because file can't be open - + Can't import %1 because file can't be parsed properly - + 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 @@ -1545,70 +1545,70 @@ 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... @@ -1622,17 +1622,7 @@ Press 1 for Default View QApplication - - Font - - - - - Selected Font: %1 - - - - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? @@ -1710,37 +1700,37 @@ Press 1 for Default View - + &View - + &Export - + &Remove - + &Select - + &Deselect - + Select &All - + &Deselect All @@ -1838,8 +1828,8 @@ Press 1 for Default View - - + + Snapmatic Properties @@ -1885,30 +1875,30 @@ Press 1 for Default View - + Crew: %1 (%2) - + Title: %1 (%2) - + Players: %1 (%2) Multiple Player are inserted here - + Player: %1 (%2) One Player is inserted here - - + + Appropriate: %1 @@ -1948,20 +1938,20 @@ Press 1 for Default View - - - + + + Edit - + Yes Yes, should work fine - + No No, could lead to issues @@ -1983,33 +1973,33 @@ 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: @@ -2017,66 +2007,66 @@ Press 1 for Default View SnapmaticPicture - + PHOTO - %1 - + 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 @@ -2136,52 +2126,52 @@ Press 1 for Default View - + Edi&t - + Show &In-game - + Hide &In-game - + &Export - + &View - + &Remove - + &Select - + &Deselect - + Select &All - + &Deselect All @@ -2209,22 +2199,22 @@ Press 1 for Default View TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? - + %1 User Statistics - + Yes, I want include personal usage data. - + &OK @@ -2431,15 +2421,15 @@ Press 1 for Default View - - + + Show In-game - - + + Hide In-game diff --git a/res/gta5sync_fr.qm b/res/gta5sync_fr.qm index d6bacdc57e2e86d6fc5f24393963c3cfef7b4bb2..341e9f1834b4ab8b3b5459166d108ac575d921b8 100644 GIT binary patch delta 1703 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 JD@UIy{{az4A)^2Q diff --git a/res/gta5sync_fr.ts b/res/gta5sync_fr.ts index a746d61..a9e7f9b 100644 --- a/res/gta5sync_fr.ts +++ b/res/gta5sync_fr.ts @@ -176,8 +176,8 @@ et les fichiers de sauvegarde de Grand Theft Auto V ImageEditorDialog - - + + Snapmatic Image Editor @@ -209,13 +209,13 @@ et les fichiers de sauvegarde de Grand Theft Auto V &Fermer - + Patching of Snapmatic Image failed because of I/O Error Échec du patch Snapmatic : I/O Error - + Patching of Snapmatic Image failed because of Image Error Échec du patch Snapmatic : Image Error @@ -359,14 +359,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é @@ -1092,37 +1092,37 @@ Y : %2 Fichier invalide - - + + 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... - + Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate @@ -1131,39 +1131,39 @@ Touche 2 - Activer/désactiver l'overlay Touches fléchées - Naviguer - - + + Snapmatic Picture Viewer Visionneuse de photo Snapmatic - - + + Failed at %1 Echec de %1 - - + + No Crew Aucun crew - - - + + + No Players Aucun joueurs - + Avatar Preview Mode Press 1 for Default View Mode Aperçu Avatar Appuyer sur 1 pour le mode par défaut - + Unknown Location Emplacement inconnu @@ -1185,8 +1185,8 @@ Appuyer sur 1 pour le mode par défaut Échec de l'export de la photo Snapmatic - - + + Open &JSON Editor... Ouvrir l'éditeur &JSON... @@ -1290,45 +1290,45 @@ Appuyer sur 1 pour le mode par défaut Copie du fichier %1 sur %2 - + Enabled pictures: %1 of %2 Photos activées : %1 sur %2 - + Loading... 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... @@ -1343,13 +1343,13 @@ Appuyer sur 1 pour le mode par défaut Importer - + Savegames files (SGTA*) Fichiers de sauvegarde GTA (SGTA*) - + Snapmatic pictures (PGTA*) Photos Snapmatic (PGTA*) @@ -1357,26 +1357,26 @@ Appuyer sur 1 pour le mode par défaut - + 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 @@ -1385,25 +1385,25 @@ 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 @@ -1411,122 +1411,122 @@ Appuyer sur 1 pour le mode par défaut - + 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 @@ -1536,76 +1536,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 @@ -1614,20 +1614,20 @@ 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 ? @@ -1637,7 +1637,7 @@ Appuyer sur 1 pour le mode par défaut Tous les fichiers de profil (*.g5e SGTA* PGTA*) - + GTA V Export (*.g5e) GTA V Export (*.g5e) @@ -1646,17 +1646,15 @@ Appuyer sur 1 pour le mode par défaut QApplication - Font - Police + Police - Selected Font: %1 - Police sélectionnée : %1 + Police sélectionnée : %1 - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? <h4>Bienvenue sur %1!</h4>Voulez-vous configurer %1 avant de l'utiliser t? @@ -1734,7 +1732,7 @@ Appuyer sur 1 pour le mode par défaut Supprimer - + &Export &Exporter @@ -1825,32 +1823,32 @@ 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 @@ -1864,8 +1862,8 @@ Appuyer sur 1 pour le mode par défaut - - + + Snapmatic Properties Propriétés Snapmatic @@ -1906,8 +1904,8 @@ Appuyer sur 1 pour le mode par défaut Meme - - + + Snapmatic Title Titre Snapmatic @@ -1917,30 +1915,30 @@ Appuyer sur 1 pour le mode par défaut Valeurs Snapmatic - + Crew: %1 (%2) Crew : %1 (%2) - + Title: %1 (%2) Titre : %1 (%2) - + Players: %1 (%2) Multiple Player are inserted here Joueurs : %1 (%2) - + Player: %1 (%2) One Player is inserted here Joueur : %1 (%2) - - + + Appropriate: %1 Valide : %1 @@ -1980,21 +1978,21 @@ Appuyer sur 1 pour le mode par défaut A&nnuler - - - + + + Edit Éditer - + Yes Yes, should work fine Oui, devrait fonctionner Oui - + No No, could lead to issues Non, pourrait causer des erreurs @@ -2017,27 +2015,27 @@ 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 : @@ -2045,66 +2043,66 @@ Appuyer sur 1 pour le mode par défaut SnapmaticPicture - + PHOTO - %1 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 @@ -2184,52 +2182,52 @@ Appuyer sur 1 pour le mode par défaut %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 @@ -2237,22 +2235,22 @@ Appuyer sur 1 pour le mode par défaut TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? Voulez-vous aider au développement de %1 en transmettant vos données d'utilisation ? - + %1 User Statistics Statistiques utilisateurs %1 - + Yes, I want include personal usage data. Oui, je veux partager mes données d'utilisation. - + &OK &OK @@ -2456,18 +2454,18 @@ Appuyer sur 1 pour le mode par défaut %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 5c69a056b847c66bc680996339c48d49e5cf9582..161d79c49799c3b119cf603ebf2e57823f523ac3 100644 GIT binary patch delta 1741 zcmXAp2~bm46o&uzc#ph=7{w)mLcj$I2#N}bw788Z3Ro3fs2D+mf~*3;7Bz;&6&>T1 zYDXML!4*0#xLa{xiWV1QUC>ss<2LH3wOSeX+QTH7Rz?LSUXDR~D zL<8Z42*)f@2O^;y90eeSkg}xx687 zfcgDc5+B4bIL+4adTtWi#mBi9Zsd)9n*om)e!-MtAmb{ZSw@N!w=k`ffzz=-Cp~9m zW1S)`vs(H6p%pZ-J71gp2uSAmqen@kxd-`UjeUWXM!sI~qxK{ChF_?yl4*SNk2>J% z%e+08o-2L8UwN?+P)+<_%@YCtm;C+R-GHKI{^^qhAUB@>r#zTMAH}!dZUH8oDAFwZ7f zTO+B9x9p7IX4$&x8n7%)s2W=ZgxwJKKehl-K0@t)T{OuU2MaF=wKYkA*jqSIG98dU z38&Q*ii5XMzkMk2XTfgX1PmGEVDdW$7cUg-Craq|$-76~AI*}6}nbtX54%T!N_5fu!S()=Bzqy(X+Y3lVyQZS00LoFXQd_i)g=h@XyQP@DcEH>w zW$qxo;v=N&1`|0wS}M9nJ&imkEzMd3j9x4)_x=OOc_8gE(fYJ!(uskqftkCd`bG+J z_6W936Y9RGN!GWGB;T&fo@NS8|M#-bI||I=HugdjW;r6q+9-kXcjY*q4C_@XCu!;^ z9uacNW)i}*SI!v!ip*=1Gg65{XL-@v!Ibv#^2)QciJMVg6LptNnIo46g;3RPa&`C0zxh94z|A!4*F2v*hV&dag`sk2%vf6V3O*f(bd6%FN%H7dZ5QzrPYuC z6n;={?WY#KeU*oYNvni+$|E%o$g5|f5@j(yS4%q4Nd61e(v0i0yg)4viKmI|YIzh1 zZj5ozJX|fmMBBP2stEX;Lc#N@;zwgT`V9&ADpz;d?-SCv~5OveW}= z?O7UfRd4lVi6=1hwR)=LJFp9i;x|RD&!nwZ_E3L~q(F_ksM_NXNHXRdm! zg08{rO7>YXaPydl>dOVPvGl!%WvY6)+@+GE>$ISdtyA^fX0}W9_4`VzQGW-zH*4K% z$k8RwwY}~J(FLN{_IgUO%)X=bzfEoB^kMC4lxuF4*0z_DJtIzgU>fUEK?$$|x+*ku>JTc|E)Jt-v(&}}(Cn{I{?x}9H0@DxAx*~Le{ zaG&m#XEYF)qif$vJE!EP(eyLwhHL+v#S--1tbazgx)bRs-hG1Mg+O>6&Tp)iKrd(d zX!{3y1$xDr^74}BoAQ`-W6wH$c`wPMH^w0zqv#*g;C1ayT|B%Rysoq%sN-E1y{Ulv EAM_v*jQ{`u delta 1773 zcmXAp3s6*57{~wj?!D~Zdv{$$aTSFH2@n(%1r<$T7>Cw-0q>7`cxf9~u&_LHJex(w0JS5=$RKxa1G?H9}}g1pKO9T+jsJ zdIa#=Dv0BWX-^BRn}eSih8@Ktvn5M{X48M`JoroPTLC47 zzf(UG2=3s2KhO_&e;nWTU@nmT1OK=zjAk>L@4D3h%=n3aKGh2J{*Zq$vM&^5yQ`!F z*MQZ}*h`h6&jHoks*S*ittyMnmn@LO`~{o)vIOCcal3&O2*ph?v>e2a2?JS!&|f+! zR1Mz`t$gZ6(e z1w5kxzZb_^)nmE)%uC~4lxmRDr*)DW^ip~%QRpqL{AU!f=qqW%8FKc(Bx#fBHtD)p zDhrLE&049lE}mR)UaA`LCQWypR6nVRj!(OE{@yEKd9-wC!3>(mEU77UEHElf>M%c{ zuB&CPjVe#RBXbXlOZ;S=#}KHHa+cL-jME>>(WwTwqfs$5(@Pac1U((7Ky6ZUlj zeMZR>lM{$5nQg_6mW z4Uy!qaHV2cDXs5tF{#rY8@-C&ZD~HwOoc>U%&QOyZrzzi*cmv^2l+z{iF&cg) zN^QnDU_&915^k8H{1`(fdi}iO%q=7}b|{UzNbIaeNeM z7#DEbc5Q+u30m6!M7-SmV>n`Cij)@I>#Y${JePG=Wo&N zmgmD_wadZ|^{TN_6VaY}&ooLgr&b^Hgob5Vp*Ih;0u%S@mt=R*h+Fm6#*;w$e%7ot za64I-Ho%ZRK;P+2J_yOucYQ*cm$X<&r_$Kdc~ diff --git a/res/gta5sync_ko.ts b/res/gta5sync_ko.ts index 7d2c644..7049e9c 100644 --- a/res/gta5sync_ko.ts +++ b/res/gta5sync_ko.ts @@ -201,21 +201,21 @@ Pictures and Savegames 닫기(&C) - - + + Snapmatic Image Editor 스냅매틱 이미지 편집기 - + Patching of Snapmatic Image failed because of I/O Error I/O 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다 - + Patching of Snapmatic Image failed because of Image Error 이미지 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다 @@ -353,7 +353,7 @@ Pictures and Savegames - + Custom Avatar Custom Avatar Description in SC, don't use Special Character! 소셜클럽의 사용자 지정 아바타 설명입니다. 특수 문자를 사용하지 마십시오! @@ -361,7 +361,7 @@ Pictures and Savegames - + Custom Picture Custom Picture Description in SC, don't use Special Character! 소셜클럽의 사용자 지정 그림 설명입니다. 특수 문자를 사용하지 마십시오! @@ -1020,43 +1020,43 @@ Y: %2 닫기(&C) - - + + Export as &Picture... 사진으로 내보내기(&P)... - - + + Export as &Snapmatic... 스낵매틱으로 내보내기(&S)... - - + + &Edit Properties... 속성 편집(&E)... - - + + &Overwrite Image... 이미지 덮어쓰기(&O)... - - + + Open &Map Viewer... 지도 뷰어 열기(&M)... - - + + Open &JSON Editor... JSON 편집기 열기(&J)... - + Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate @@ -1065,37 +1065,37 @@ Arrow Keys - Navigate 화살표키 - 이동 - - + + Snapmatic Picture Viewer 스낵매틱 사진 뷰어 - - + + Failed at %1 %1에서 실패했습니다 - - - + + + No Players 플레이어 없음 - - + + No Crew 조직 없음 - + Unknown Location 알 수 없는 위치 - + Avatar Preview Mode Press 1 for Default View 아바타 미리 보기 모드입니다 @@ -1306,23 +1306,23 @@ Press 1 for Default View - - - - - - - - - + + + + + + + + + + - - - - - - - + + + + + + Import... 가져오기... @@ -1339,14 +1339,14 @@ Press 1 for Default View - + All image files (%1) 모든 이미지 파일 (%1) - + All files (**) 모든 파일 (**) @@ -1354,75 +1354,75 @@ Press 1 for Default View - + Can't import %1 because file can't be open 파일을 열 수 없으므로 %1을 가져올 수 없습니다 - + Can't import %1 because file can't be parsed properly 파일을 구문 분석할 수 없으므로 %1을 가져올 수 없습니다 - + Enabled pictures: %1 of %2 활성화된 사진: %2의 %1 - + Loading... 불러오는 중... - + 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 @@ -1431,91 +1431,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 @@ -1524,45 +1524,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 @@ -1573,84 +1573,84 @@ 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이(가) 실패한 경우... @@ -1665,17 +1665,15 @@ Press 1 for Default View QApplication - Font - 폰트 + 폰트 - Selected Font: %1 - 선택된 폰트: %1 + 선택된 폰트: %1 - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? <h4>%1에 오신 것을 환영합니다!</h4>%1을 사용하기 전에 구성하시겠습니까? @@ -1753,37 +1751,37 @@ Press 1 for Default View 삭제 - + &View 보기(&V) - + &Export 내보내기(&E) - + &Remove 삭제(&R) - + &Select 선택(&S) - + &Deselect 선택 해제(&D) - + Select &All 모두 선택(&A) - + &Deselect All 모두 선택 해제(&D) @@ -1883,8 +1881,8 @@ Press 1 for Default View - - + + Snapmatic Properties 스냅매틱 속성 @@ -1976,8 +1974,8 @@ Press 1 for Default View - - + + Patching of Snapmatic Properties failed because of I/O Error I/O 오류로 인해 스냅매틱 속성을 패치하지 못했습니다 @@ -1988,77 +1986,77 @@ Press 1 for Default View JSON 오류로 인해 스냅매틱 속성을 패치하지 못했습니다 - - + + Snapmatic Crew 조직 스냅매틱 - - + + New Snapmatic crew: 새로운 조직 스냅매틱: - - + + Snapmatic Title 스냅매틱 제목 - - + + New Snapmatic title: 새로운 스냅매틱 제목: - - - + + + Edit 편집 - + Players: %1 (%2) Multiple Player are inserted here 여기에 여러 플레이어가 추가됩니다. 플레이어: %1 (%2) - + Player: %1 (%2) One Player is inserted here 여기에 플레이어 하나가 추가됩니다. 플레이어: %1 (%2) - + Title: %1 (%2) 제목: %1 (%2) - - + + Appropriate: %1 변경: %1 - + Yes Yes, should work fine 네, 잘 될 거예요. - + No No, could lead to issues 아니요, 문제가 발생할 수 있습니다. 아니요 - + Crew: %1 (%2) 조직: %1 (%2) @@ -2067,64 +2065,64 @@ Press 1 for Default View SnapmaticPicture - + JSON is incomplete and malformed JSON이 불안정하고 형식이 잘못되었습니다 - + JSON is incomplete JSON이 불안정합니다 - + JSON is malformed 잘못된 JSON 형식 - + PHOTO - %1 사진 - %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이 잘못된 형식입니다 @@ -2186,52 +2184,52 @@ 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) @@ -2259,22 +2257,22 @@ Press 1 for Default View TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? 개인 사용 데이터를 제출에 포함시켜 %1이(가) 개선되기를 원합니까? - + %1 User Statistics %1 사용자 통계 - + Yes, I want include personal usage data. 예, 개인 사용 데이터를 포함시키고 싶습니다. - + &OK 확인(&O) @@ -2419,7 +2417,7 @@ Press 1 for Default View Select GTA V Folder... - GTA V 폴더 선택 + GTA V 폴더 선택... @@ -2452,15 +2450,15 @@ Press 1 for Default View 플레이어 변경(&P)... - - + + Show In-game 인게임 보이기 - - + + Hide In-game 인게임 숨기기 @@ -2493,7 +2491,7 @@ Press 1 for Default View %1 - Messages - + %1 - 뉴스 diff --git a/res/gta5sync_ru.qm b/res/gta5sync_ru.qm index 980071eac59530298e969731e2cffcd2424674ae..92b5bdfa7b4e4b5c98a6593a9317993af76fad0f 100644 GIT binary patch delta 1777 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 ImageEditorDialog - - + + Snapmatic Image Editor @@ -213,13 +213,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 @@ -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! Своя Картинка @@ -1023,37 +1023,37 @@ Y: %2 Экспортировать - - + + Export as &Picture... Экспортировать как &картинку... - - + + Export as &Snapmatic... Экспортировать как &Snapmatic... - - + + &Overwrite Image... &Перезаписать картинку... - - + + &Edit Properties... &Изменить свойства... - - + + Open &Map Viewer... Открыть &карту... - + Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate @@ -1062,39 +1062,39 @@ Arrow Keys - Navigate Стрелки - Навигация - - + + Snapmatic Picture Viewer Просмотрщик фотографий Snapmatic - - + + Failed at %1 Ошибка при %1 - - + + No Crew Вне банды - - - + + + No Players Игроков нет - + Avatar Preview Mode Press 1 for Default View Режим просмотра аватарок Нажмите 1 для стандартного просмотра - + Unknown Location Неизвестное место @@ -1196,8 +1196,8 @@ Press 1 for Default View Картинки Snapmatic (PGTA*) - - + + Open &JSON Editor... Открыть &редактор JSON... @@ -1294,17 +1294,17 @@ Press 1 for Default View &Закрыть - + Loading... Загрузка... - + Snapmatic Loader Загрузчик Snapmatic - + <h4>Following Snapmatic Pictures got repaired</h4>%1 Change wording if the %1 is not a multiline beginning at new line @@ -1313,23 +1313,23 @@ Press 1 for Default View - - - - - - - - - + + + + + + + + + + - - - - - - - + + + + + + Import... Импортировать... @@ -1344,13 +1344,13 @@ Press 1 for Default View Импортировать - + Savegames files (SGTA*) Файлы сохранения (SGTA*) - + Snapmatic pictures (PGTA*) Картинка Snapmatic (PGTA*) @@ -1358,19 +1358,19 @@ Press 1 for Default View - + All files (**) Все файлы (**) - - + + Import file %1 of %2 files Импортируются файлы %1 из %2 - + Import failed with... %1 @@ -1379,169 +1379,169 @@ Press 1 for Default View %1 - + Failed to read Snapmatic picture Не удалось загрузить картинку Snapmatic - + Failed to read Savegame file Не удалось загрузить файл сохранения - - + + No valid file is selected Выбранный файл неверен - + Enabled pictures: %1 of %2 Включенные картинки: %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 @@ -1551,86 +1551,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 @@ -1651,7 +1651,7 @@ Press 1 for Default View Все файлы профиля (*.g5e SGTA* PGTA*) - + GTA V Export (*.g5e) GTA V Export (*.g5e) @@ -1660,17 +1660,15 @@ Press 1 for Default View QApplication - Font - Шрифт + Шрифт - Selected Font: %1 - Выбранный шрифт: %1 + Выбранный шрифт: %1 - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? <h4>Добро пожаловать в %1!</h4>Хочешь изменить настройки %1 перед использованием? @@ -1791,32 +1789,32 @@ Press 1 for Default View Не удалось удалить сохранение %1 - + &View &Просмотр - + &Remove &Удалить - + &Select &Выбрать - + &Deselect Сн&ять выбор - + Select &All В&ыбрать все - + &Deselect All Снять выбо&р со всех @@ -1826,7 +1824,7 @@ Press 1 for Default View Копировать сохранение - + &Export &Экспортировать @@ -1878,8 +1876,8 @@ Press 1 for Default View - - + + Snapmatic Properties Свойства Snapmatic @@ -1920,7 +1918,7 @@ Press 1 for Default View Значения в Snapmatic - + Crew: %1 (%2) Банда: %1 (%2) @@ -1930,31 +1928,31 @@ Press 1 for Default View Meme - - + + Snapmatic Title Заголовок Snapmatic - + Title: %1 (%2) Заголовок: %1 (%2) - + Players: %1 (%2) Multiple Player are inserted here Игроки: %1 (%2) - + Player: %1 (%2) One Player is inserted here Игрок: %1 (%2) - - + + Appropriate: %1 Подходит: %1 @@ -1994,20 +1992,20 @@ Press 1 for Default View &Отмена - - - + + + Edit Правка - + Yes Yes, should work fine Да - + No No, could lead to issues Нет @@ -2029,27 +2027,27 @@ 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: @@ -2057,66 +2055,66 @@ Press 1 for Default View SnapmaticPicture - + PHOTO - %1 ФОТО - %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 повреждён @@ -2186,52 +2184,52 @@ Press 1 for Default View Не удалось показать %1 в списке картинок Snapmatic в игре - + Edi&t &Правка - + Show &In-game Показывать в &игре - + Hide &In-game Ск&рыть в игре - + &Export &Экспорт - + &View По&казать - + &Remove У&далить - + &Select &Выделить - + &Deselect Сн&ять выделение - + Select &All В&ыбрать все - + &Deselect All Снять выбо&р со всех @@ -2249,22 +2247,22 @@ Press 1 for Default View TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? Разрешишь нам собирать статистику о пользовании тобой %1? Это поможет нам в разработке. - + %1 User Statistics %1 Пользовательская статистика - + Yes, I want include personal usage data. Да, передавать данные о пользовании программой. - + &OK &ОК @@ -2463,7 +2461,7 @@ Press 1 for Default View %1 - Messages - + %1 - Новости @@ -2471,15 +2469,15 @@ Press 1 for Default View Пере&загрузить - - + + Show In-game Показывать в игре - - + + Hide In-game Скрыть в игре diff --git a/res/gta5sync_uk.qm b/res/gta5sync_uk.qm index d7dded7c1e25efd83af72ebc430174850d2a5f75..8026200c9837bf01b8689e3c2f05ac48cc19358e 100644 GIT binary patch delta 1779 zcmXAp3se+k7>3`Oo!Q-)aosd?1!GqsM0OPf1+fy*BOoa%Bwa`oHBic3OORC36#=iH ztUrhfipc$9l(!U8)8Z)J){r=wm06N{yk$jMN%nbW&)M^w`FHmJ{_lO?|EvC!|FN4d z=*JCkJr~MvD09V{`LY_9-NH$(e3Nq&gcboSe&t^|00@ z0eyO4JroHr8z;pD!TPjzMGCA>Ygasi_3j9u(jT^Mt-xS2Y)4~&$uY1!t(mz}Bv3R`4*M2w#@NQBW zKU!t(b{44_H)jA}A6f+L+08f3=>k^R_=5*Y^;Mnxp_4vt4W zw{0~7)1rCz2lQUuH2&hfEr79@zt%Px2utOEs_qBuO5ktbN&vQmvM!A!XtqYG{s!17 zYWko44~U+i@kn<7FJ9AxEa|4VuWJ$-*8$;cG^rVbfm#;}5i3D+98A7qU9T zX*q-)6+E0J>n;K1cZ7<_3SiO`q5h^5Nc>f399BgQY*x9wS!isS1&D=0Q}*jXuS%gs znM=0Z6ONUQqIkIkcSa#Fp-|<@43#^ag8Ohb{q85+n$-e~N)aBlp9Mz#Ej(_fhHKp{ zRy51(v6y(_B(R#XC88zhZP6J(-CC}R1@=H-caB&(jQZOAomiSf#h6ws|7Qk}GF`09 zdXt<9W38fv8_T*xixj8zYVA!~+|CSIhn$tK>nGFz^~+eUcB-|cMORR^gv$HqiY^pU z;zV8L2~w`|fbP@D_kpo1bo(2A2TEtN9<5)Wt-AjX-KI?C=*6g3(pAesbe5PA`YE+; zVB0*sy__Vo`{@^*NG6X*=rga=sb=)ouW)Rj8|0~9HTVkPYSGsu)B5{%{o%m%K-!P` zV<#!mo6FcvU8pB(kxbu5keTt4IfEh-JVqMwh@w)$v3t7FToUuuTbwhbg_9mqtmaD# zQ;5Pl(&E2@fn^7zwZ~~I?`Ua5)DNWo87VIy1laMJRC!`5b#0Rx178J_4oYni`&ylnR(|~fS*R2KiNRPMVD6q%Je9R)dfXeY9LY8V6Ynd{ z*>8cJk!AlV<(QpHH9S(j3a8Y}e5kn7SJHEk(!P_#bUmwFDxxV^@C@sb&3xT2%uDg( zMzTm{2w!uR*%g!I-K&(NdAjuo%U4X?W>%&6`R_95l&`7qQG;g#Sz6X%82Cc~O$eJ| z;B87@L6X6Gl@3;Ll65OleYdPNxN0fDi^B~~uaR>_S6FPX`7wUIk2+d`*a)NNyVUJ_ zZy3XWBNNsZ8WV>)fcR$P+z-0RxeBABeIKxKjq&|Wq@Gf3+;-}1nhHkao+k;EhrO() z*AUZ&HseEc4Diwy#_ke2i_@4&ij?ku(eV7z{a11?`3LleFM==#!!bzk62gUGAxs!6 igy}&aEqx8XL4$@5icL;Sn=?N-jl~@{?Qd*auKW)WaVc^D delta 1905 zcmXApdsr0b8O6`ce#7p}?6Q@j1QS@qAay|ym8*aT1Bj>*l~|2vjX**Q3sEFQ#f<`1 z6fNt3P+de}xuZN0FNqe78fr+QYb_eJQKOM4P1RsaOst80dFGFOe!KI0`(DmD^L;bK zH~q+0xN|j5eD=Tz1-BJA2hz^xK75%ECQb;M`%0ZqP25ohAgDz#jq z^?Q^=1_7%MVq51WV9SSSOdkOhCgRxBHNfm3e13Q`@JNlfDiF)()zyE>qbsit}pq1t#3%R!{yf?RSnVvM&STmvOe}C_s6GAH#jB z6!9M14@wpPn&%+Dd~7e^|1$sf{7pdl4L+xo^lNrge&J1?5BZk&A_3n{mGi?@ZhlD# z)l6Hlhi?n30_tz_9V_~QqJ#XABc$!d#r)ATV}TDu{v;buJErre|4K7A|Bdh6WdvSJ zN%PHyMb?;_o!M1ADLX1NT#bogXWgHKvd|8nNjzP`gDl>a$;g z#5j#-z6FT7r3qa#1k|N#QaiQ)v70qn1!I5~r{c#7+)C5fyofqrQvus}C6*qqRt_*v zYeRekF!MQUyJrQK{J=T_8-WdODtE`Qj`lP_sAQeRivYcYosi$8(B!d`byI+??#x+G z3B*;Z-0-u?Jv?)MR7~gE*!{Ej85T;`hXvD%8dH8j{* zZPkS;pmB!QahkMrJl1}g{1AvK(ss4~2e98!hFttd^l5)RIzXAz>V$+I@}*3fpfx2~ zbhBHWK+Si$oc$zbj=wJVbOyQIrCWEKrdl{kS7g}=ygpj@!I*30Vyvz?gP!N*=spTA z16F^dJ9&nZU*W4%X~RZW#)=*{rjxywMehO%(WFRm+)osqJta!NHk{k5cO3N_3o_OIv4&9l;BLKO7Nz zr<337pNL=FeGY7{6)!HGMSiA=SAxQUS2l@{mOLgoiX?7;R@sm&ao-Q~fMgg+FB4z9 zO6k^_lKv%4&9nn04wZZ3RJNO?=u_1Gx1to&@D%WvB~4qALfj|K8Azh@lckhj+o_qtM*HRI*-FRAU=w`JS2jez@7xypmy{681U_J9(4-l}rlS(P=Jvg6Qg zYO`N%)l!nYp2;1jXvYH;^2f#Az^f1CMpzMt0z!*{XD&$qnmqeqsr=Ny*+`7yGH6AM%pI-GyU;LBu>+LrB?PI|FuCY z|D9&Bo6&n{6EQrp!$J#5lBvX0h(fB2lk*O)|VxsH}0Qu9g1}z#mE5 diff --git a/res/gta5sync_uk.ts b/res/gta5sync_uk.ts index fda1d75..0cf68fa 100644 --- a/res/gta5sync_uk.ts +++ b/res/gta5sync_uk.ts @@ -204,21 +204,21 @@ 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 зображення не вдалося через помилку картинки @@ -356,14 +356,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! Користувацьке Зображення @@ -1010,43 +1010,43 @@ Y: %2 &Закрити - - + + Export as &Picture... Експортувати як &зображення... - - + + Export as &Snapmatic... Експортувати як &Snapmatic... - - + + &Edit Properties... &Змінити властивості... - - + + &Overwrite Image... &Перезаписати зображення... - - + + Open &Map Viewer... Відкрити &карту... - - + + Open &JSON Editor... Відкрити редактор &JSON... - + Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate @@ -1055,37 +1055,37 @@ Arrow Keys - Navigate Стрілки - Навігація - - + + Snapmatic Picture Viewer Переглядач фотографій Snapmatic - - + + Failed at %1 Помилка на%1 - - - + + + No Players Гравців немає - - + + No Crew Банди немає - + Unknown Location Невідома локація - + Avatar Preview Mode Press 1 for Default View Режим для аватарок @@ -1296,23 +1296,23 @@ Press 1 for Default View - - - - - - - - - + + + + + + + + + + - - - - - - - + + + + + + Import... Імпортування... @@ -1329,14 +1329,14 @@ Press 1 for Default View - + All image files (%1) Файли зображень (%1) - + All files (**) Усі файли (**) @@ -1344,75 +1344,75 @@ Press 1 for Default View - + Can't import %1 because file can't be open Неможливо імпортувати %1, оскільки файл не може бути відкритий - + Can't import %1 because file can't be parsed properly Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно - + Enabled pictures: %1 of %2 Увімкнено фотографії:%1 з%2 - + Loading... Завантаження... - + 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 @@ -1421,81 +1421,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 @@ -1504,45 +1504,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 @@ -1552,91 +1552,91 @@ 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... Змінити назву @@ -1650,17 +1650,15 @@ Press 1 for Default View QApplication - Font - Шрифт + Шрифт - Selected Font: %1 - Вибраний шрифт:%1 + Вибраний шрифт:%1 - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? <h4>Ласкаво просимо до %1!</h4>Ви хочете налаштувати %1 перед використанням? @@ -1738,37 +1736,37 @@ Press 1 for Default View Видалити - + &View &Перегляд - + &Export &Експорт - + &Remove &Видалення - + &Select &Виділення - + &Deselect &Зняти виділення - + Select &All Вибрати &усі - + &Deselect All &Зняти виділення усіх @@ -1868,8 +1866,8 @@ Press 1 for Default View - - + + Snapmatic Properties Властивості Snapmatic @@ -1961,8 +1959,8 @@ Press 1 for Default View - - + + Patching of Snapmatic Properties failed because of I/O Error Змінити властивості Snapmatic не вдалося через I/O Помилку @@ -1973,73 +1971,73 @@ Press 1 for Default View Змінити властивості Snapmatic не вдалося через JSON Помилку - - + + Snapmatic Crew Snapmatic банда - - + + New Snapmatic crew: Нова Snapmatic банда: - - + + Snapmatic Title Snapmatic назва - - + + New Snapmatic title: Новий Snapmatic заголовок: - - - + + + Edit Правка - + Players: %1 (%2) Multiple Player are inserted here Гравці: %1 (%2) - + Player: %1 (%2) One Player is inserted here Гравець: %1 (%2) - + Title: %1 (%2) Назва: %1 (%2) - - + + Appropriate: %1 Підходить: %1 - + Yes Yes, should work fine Так - + No No, could lead to issues Ні - + Crew: %1 (%2) Банда: %1 (%2) @@ -2048,64 +2046,64 @@ Press 1 for Default View SnapmaticPicture - + JSON is incomplete and malformed JSON неповний та неправильний - + JSON is incomplete JSON неповний - + JSON is malformed JSON неправильний - + PHOTO - %1 ФОТО - %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 @@ -2166,52 +2164,52 @@ Press 1 for Default View Видалити - + Edi&t Редагува&ти - + Show &In-game Показати &у грі - + Hide &In-game Сховати &у грі - + &Export &Експортувати - + &View &Переглянути - + &Remove &Видалити - + &Select &Виділення - + &Deselect &Зняти виділення - + Select &All Вибрати &усі - + &Deselect All &Зняти виділення усіх @@ -2239,22 +2237,22 @@ Press 1 for Default View TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? Ви хочете допомогти %1 покращитись у майбутньому, включивши дані особистого користування? - + %1 User Statistics %1 Статистика користувачів - + Yes, I want include personal usage data. Так, я хочу включити дані особистого користування. - + &OK &OK &OK @@ -2432,15 +2430,15 @@ Press 1 for Default View Змінити &гравців... - - + + Show In-game Показати у грі - - + + Hide In-game Сховати у грі @@ -2473,7 +2471,7 @@ Press 1 for Default View %1 - Messages - + %1 - Новини diff --git a/res/gta5sync_zh_TW.qm b/res/gta5sync_zh_TW.qm index 2b8ba07da3a9b8d9c19795d7a63a8a45aa97efc1..bfc1b235c6200e62bfbc99ce718665fed46bc157 100644 GIT binary patch delta 1815 zcmXAp3s6*b6vn@M_g?lscG)m-T^LyeQ67R1L{b}k1wsNUiVBKKwgS3~@l;SjT_`nb zz<;17W-30}(G)cEfum)Gm}{t1Q`uuAr4onC!7@b-*7^VCk}Bybbkdb7B%L73u#XZ-DiS%X9W;qNAT#4K+F-1h0O>(Py!6{M(E)s zfMEwhPsIW(jFZP15&EKb@g#)4s9oHG(7#6#dl0t$GGGos*!cutY#_p3)SUmPM#nkk z;LMzzRdQA?p6%!2mS>(r#kdF{WeVOs)=sjj@adBxdh{8tG)Dr7fw;Dhjza%@GW$+O`OWL@D-~rzu z+{wffr1m!F?xo{b)Uy42vQO?IesN$cUB1U>r;r(Mx_Cz=nOYLTj5@1j27hSPIACCo z#t9`F7w=}Vx`~;7{E@M>Kv5m<%IpNvz4?hbd4^m=n>uBr%QEh0>YuoDIQGmSjnP>fjG65Pcf03%B^rgv*xxlVAOcGC4(!o7^MK+uQ6q?s+l?NGKH>HlzWokFv|6m5XAXqE(*eG3c@<#j}7JJ#v+WpXvJx2g&gN zSf$5|5SzYwcM-iG=k>MMYJpY9^$i!P@G86h`1EdIc%;6m@geZmkF3vQn3qfc>{J)U zZ<8d(QPT5cSd`wH5FjNUas!SY$+3s5Ob(Y;UbNB3pGs?fqo!W%me%ENp|oX7>j(b; zWN(uW+UWn8ho#daHUqPLq?St*{$+RBE`79RvTXi&5{)4uu%*fNWklT_Ilp%_FmIFm&ILMYpek>PyG=tmAXi01(X)+m!^LFM zd_i`Nm<_}>%B_=V*l8}g?ap&xi9x=;@O2v2A96=TG%(_t{2=`wa-mD%x=2ZSslxsB zg3XH2I{+A;(WLadKm}gjqWC9K;o#{?(E0>Q^I2u&7_x2Acgloi^~4<-^PX#58^`)2 zt5>`->n@q@wN;t-z!O;eI}4Y`@{4aVn;bV~-2>&Stq^$ag!0W44w$=HaThlO`ZF5m z&ek|TUZcaTxDUP$c+XHetf?f{liioiTt6l%)5`r+rzZ&u_EjtFH-Y8tYE=|jzdBN_ ziX(I9muYk)t5sL2hUF!-=II8&bG=$?rgwdrQ>_o9^=L`ZIKNq=qf%`+@f$6U6!oy4 zV$=Vs>bgLR%0{c7IsJgq!Ri_30$P`CiX4)!wm7KPx>wXMVkkUQV^w!y8L4)v?Yqd- zY)-vVOKURgHP)wCxhghD9ma*RSas<5lAjHmr_%BIwT5lsbi7n(sOM<&&ih)Uz1C14 zM@Ptgh6WS0JNrw+nFj?Vub1sthlQjV_3F3OT&>Zkk)~g8)aZLVf>z9Nqi+}GG^^AY z`Xim5b%i}rr+LjV)*Paw&$?qgHkW3+qLU>VvMf2C=W{Ou(ak2G0B{-(FyCp-1srtM!Xq9u}G+WS0}lJCp<3`5OJcbIzoC>3EaJ=#fy7o_HpMfRrg z#(=p^txMbd0!G1~c9p;Fll6-v(8q(m#-LID;r>asf`ZH}TLByFG&famjFbNd1k)B; delta 1734 zcmX|>2}~4c7>3`Oond!ob|qMGU5L9NBA4J*#1o7PN>x-)Q1Ijsu||9|iI{@=IT`L^wR zMK8{$(ldffo+0>;!9bxe zLUvpNjQtRDHWnD}hmdZKxk)N*K^T7L2w>=mu_K~^DNTsZXa!a}SP5t08d)_LQ<@rt z@{wUc{CI3WdIMPeH}=KE>gKj&%!lPi#PKJhgSjlm-)KI9YFGWzOj+~o_CHvalwx$@y$XIm0i!DZ=y1a zF7sEvatB6^=AC);UU3wE{pmJ9e#`%MbqWwz%|G1N3t0Yw@9LZlWaqP68q1JV8fo7x zAg@`|`-cy}ur`g!ZUcggHR1U#V8v3+?79s=C^XpxzQC%T%wH(24A`ESOk}&|5k!)D7GVQcfFeh z#I6!+*3G4ew6n9Kh1<>UlhkpyzL$DX?DjCx%_h$upzS5p0;@wBN{z!$8^0=5M@>#jXOT&OPhdwAYh7j(55bbrPH-Kjwv zfdnsI^971-<}6mFjW8XNjQ7Wpwnj1+P{;jVO9TF*PA`jR9oh(P7VE3Cl;%r0lV4IQ zHcB~5h?+;z^0z~QB$xF0Ia2DQNSk8X$?1L4mauU8wvSYEK917xT&f$C07M^>u8u3E zG?}EI9{mF>Dw3|x`-D1_Ahm@>0E1ej=gF_gMw85SQ6~rB^Hc)3 z9c-*JVALvue&YmMP`g^cJ(L#I+4T;NM(CVyl~!Kwh#^7gy}rhshDX9>{psgad{F?a zRsw?78??$VwB0I$*CA@V-P_>Z9!5jpn8CY?0-E{Q5d15tXGO55$|R2_L*;&o_{>L! zqlwhqoOl+k&*a+JVZG6m=bjvBqv_b`o|@;PR=V76H|l}(t?a(u$ZcRQ{QzUSoBK<1 zED!>B*Eh6G%7tvQ$k8y=&@b^LAtmYSRvqZ)Mt>nD*JfvtX}!aGR;*0FQc&Lg6rEmEsunZoQyPkM!HY;>!W=9hcrZ{Juo-STR&d<7Z>6K)Bpeg diff --git a/res/gta5sync_zh_TW.ts b/res/gta5sync_zh_TW.ts index 20b79d4..699c74d 100644 --- a/res/gta5sync_zh_TW.ts +++ b/res/gta5sync_zh_TW.ts @@ -200,21 +200,21 @@ Pictures and Savegames 關閉(&C) - - + + 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 圖片更新失敗 @@ -352,14 +352,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! 自訂圖片 @@ -1004,43 +1004,43 @@ Y: %2 關閉(&C) - - + + Export as &Picture... 匯出成圖片(&P)... - - + + Export as &Snapmatic... 匯出成 Snapmatic(&S)... - - + + &Edit Properties... 編輯屬性(&E) ... - - + + &Overwrite Image... 修改圖片(&O)... - - + + Open &Map Viewer... 開啟地圖檢視器(&M)... - - + + Open &JSON Editor... 開啟 JSON 編輯器(&J)... - + Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate @@ -1049,37 +1049,37 @@ Arrow Keys - Navigate 方向鍵 - 導覽 - - + + Snapmatic Picture Viewer Snapmatic 圖片檢視器 - - + + Failed at %1 失敗: %1 - - - + + + No Players - - + + No Crew - + Unknown Location 未知地點 - + Avatar Preview Mode Press 1 for Default View 大頭貼預覽模式 @@ -1290,23 +1290,23 @@ Press 1 for Default View - - - - - - - - - + + + + + + + + + + - - - - - - - + + + + + + Import... 匯入... @@ -1323,14 +1323,14 @@ Press 1 for Default View - + All image files (%1) 所有圖片 (%1) - + All files (**) 所有檔案 (**) @@ -1338,201 +1338,201 @@ Press 1 for Default View - + Can't import %1 because file can't be open 無法匯入 %1,因為檔案無法開啟 - + Can't import %1 because file can't be parsed properly 無法匯入 %1,因為檔案無法正確解析 - + Enabled pictures: %1 of %2 開啟圖片 %1 共 %2 - + Loading... 載入中... - + 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 @@ -1542,91 +1542,91 @@ 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... 更改標題 @@ -1640,17 +1640,15 @@ Press 1 for Default View QApplication - Font - 字體 + 字體 - Selected Font: %1 - 選擇的字體: %1 + 選擇的字體: %1 - + <h4>Welcome to %1!</h4>You want to configure %1 before you start using it? <h4>歡迎使用 %1!</h4> 你想在開始前先設定 %1 嗎? @@ -1728,37 +1726,37 @@ Press 1 for Default View 刪除 - + &View 檢視(&V) - + &Export 匯出(&E) - + &Remove 移除(&R) - + &Select 選擇(&S) - + &Deselect 取消選擇(&D) - + Select &All 選擇全部(&A) - + &Deselect All 取消選擇全部(&D) @@ -1858,8 +1856,8 @@ Press 1 for Default View - - + + Snapmatic Properties Snapmatic 屬性 @@ -1951,8 +1949,8 @@ Press 1 for Default View - - + + Patching of Snapmatic Properties failed because of I/O Error 讀寫錯誤,未能更新 Snapmatic 屬性 @@ -1963,73 +1961,73 @@ Press 1 for Default View JSON 錯誤,未能更新 Snapmatic 屬性 - - + + Snapmatic Crew 幫會 - - + + New Snapmatic crew: 輸入新的幫會: - - + + Snapmatic Title 標題 - - + + New Snapmatic title: 輸入新的標題: - - - + + + Edit 編輯 - + Players: %1 (%2) Multiple Player are inserted here 玩家: %1 (%2) - + Player: %1 (%2) One Player is inserted here 玩家: %1 (%2) - + Title: %1 (%2) 標題: %1 (%2) - - + + Appropriate: %1 可使用: %1 - + Yes Yes, should work fine - + No No, could lead to issues - + Crew: %1 (%2) 幫會: %1 (%2) @@ -2038,64 +2036,64 @@ Press 1 for Default View SnapmaticPicture - + JSON is incomplete and malformed JSON 不完整和異常 - + JSON is incomplete JSON 不完整 - + JSON is malformed JSON 異常 - + PHOTO - %1 照片 - %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 @@ -2156,52 +2154,52 @@ 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) @@ -2229,22 +2227,22 @@ Press 1 for Default View TelemetryDialog - + You want help %1 to improve in the future by including personal usage data in your submission? 你希望通過收集資料來幫助改善 %1 嗎? - + %1 User Statistics %1 使用者統計 - + Yes, I want include personal usage data. 是的,我想幫忙. - + &OK 確定(&O) @@ -2421,15 +2419,15 @@ Press 1 for Default View 更改玩家(&P)... - - + + Show In-game 在遊戲中顯示 - - + + Hide In-game 在遊戲中隱藏 @@ -2462,7 +2460,7 @@ Press 1 for Default View %1 - Messages - + %1 - 新聞