From 3a00e9b5b0d6190f89730d9834284e793628478e Mon Sep 17 00:00:00 2001 From: Syping Date: Wed, 17 Jan 2018 00:59:40 +0100 Subject: [PATCH] String Update + added new Dialog --- ProfileInterface.cpp | 2 +- SavegameDialog.cpp | 11 ++ SnapmaticWidget.cpp | 10 +- UserInterface.cpp | 54 ++++++- UserInterface.ui | 2 +- lang/README.txt | 10 +- lang/gta5sync_no.ts | 344 ++++++++++++++++++++++-------------------- res/gta5sync_de.qm | Bin 44780 -> 45245 bytes res/gta5sync_de.ts | 68 +++++---- res/gta5sync_en_US.qm | Bin 23768 -> 23644 bytes res/gta5sync_en_US.ts | 70 +++++---- res/gta5sync_fr.qm | Bin 25845 -> 25649 bytes res/gta5sync_fr.ts | 68 +++++---- res/gta5sync_ru.qm | Bin 31724 -> 31440 bytes res/gta5sync_ru.ts | 68 +++++---- 15 files changed, 420 insertions(+), 287 deletions(-) diff --git a/ProfileInterface.cpp b/ProfileInterface.cpp index 231598c..cdbb667 100644 --- a/ProfileInterface.cpp +++ b/ProfileInterface.cpp @@ -1102,7 +1102,7 @@ void ProfileInterface::deleteSelected() } if (selectedWidgts != 0) { - QMessageBox::warning(this, tr("Remove selected"), tr("Failed at remove the complete selected Snapmatic pictures and/or Savegame files")); + QMessageBox::warning(this, tr("Remove selected"), tr("Failed to remove all selected Snapmatic pictures and/or Savegame files")); } } } diff --git a/SavegameDialog.cpp b/SavegameDialog.cpp index c244ed0..302b92d 100644 --- a/SavegameDialog.cpp +++ b/SavegameDialog.cpp @@ -35,10 +35,21 @@ SavegameDialog::SavegameDialog(QWidget *parent) : ui->cmdClose->setFocus(); savegameLabStr = ui->labSavegameText->text(); + // Set Icon for Close Button if (QIcon::hasThemeIcon("dialog-close")) { ui->cmdClose->setIcon(QIcon::fromTheme("dialog-close")); } + else if (QIcon::hasThemeIcon("gtk-close")) + { + ui->cmdClose->setIcon(QIcon::fromTheme("gtk-close")); + } + + // Set Icon for Export Button + if (QIcon::hasThemeIcon("document-export")) + { + ui->cmdCopy->setIcon(QIcon::fromTheme("document-export")); + } refreshWindowSize(); } diff --git a/SnapmaticWidget.cpp b/SnapmaticWidget.cpp index d9fa875..d7fdcca 100644 --- a/SnapmaticWidget.cpp +++ b/SnapmaticWidget.cpp @@ -285,12 +285,18 @@ bool SnapmaticWidget::makePictureVisible() void SnapmaticWidget::makePictureHiddenSlot() { - makePictureHidden(); + if (!makePictureHidden()) + { + QMessageBox::warning(this, QApplication::translate("UserInterface", "Hide In-game"), QApplication::translate("SnapmaticWidget", "Failed to hide %1 In-game from your Snapmatic pictures").arg("\""+smpic->getPictureStr()+"\"")); + } } void SnapmaticWidget::makePictureVisibleSlot() { - makePictureVisible(); + if (!makePictureVisible()) + { + QMessageBox::warning(this, QApplication::translate("UserInterface", "Show In-game"), QApplication::translate("SnapmaticWidget", "Failed to show %1 In-game from your Snapmatic pictures").arg("\""+smpic->getPictureStr()+"\"")); + } } void SnapmaticWidget::editSnapmaticProperties() diff --git a/UserInterface.cpp b/UserInterface.cpp index 5948176..7c30b99 100644 --- a/UserInterface.cpp +++ b/UserInterface.cpp @@ -83,6 +83,40 @@ UserInterface::UserInterface(ProfileDatabase *profileDB, CrewDatabase *crewDB, D ui->cmdReload->setIcon(QIcon::fromTheme("reload")); } + // Set Icon for Choose GTA V Folder Menu Item + if (QIcon::hasThemeIcon("document-open-folder")) + { + ui->actionSelect_GTA_Folder->setIcon(QIcon::fromTheme("document-open-folder")); + } + else if (QIcon::hasThemeIcon("gtk-directory")) + { + ui->actionSelect_GTA_Folder->setIcon(QIcon::fromTheme("gtk-directory")); + } + + // Set Icon for Open File Menu Item + if (QIcon::hasThemeIcon("document-open")) + { + ui->actionOpen_File->setIcon(QIcon::fromTheme("document-open")); + } + + // Set Icon for Close Profile Menu Item + if (QIcon::hasThemeIcon("dialog-close")) + { + ui->actionSelect_profile->setIcon(QIcon::fromTheme("dialog-close")); + } + else if (QIcon::hasThemeIcon("gtk-close")) + { + ui->actionSelect_profile->setIcon(QIcon::fromTheme("gtk-close")); + } + + // Set Icon for Exit Menu Item + if (QIcon::hasThemeIcon("application-exit")) + { +#ifndef Q_OS_MACOS // Setting icon for exit/quit lead to a crash in Mac OS X + ui->actionExit->setIcon(QIcon::fromTheme("application-exit")); +#endif + } + // Set Icon for Preferences Menu Item if (QIcon::hasThemeIcon("preferences-system")) { @@ -97,12 +131,22 @@ UserInterface::UserInterface(ProfileDatabase *profileDB, CrewDatabase *crewDB, D #endif } - // Set Icon for Exit Menu Item - if (QIcon::hasThemeIcon("application-exit")) + // Set Icon for Profile Import Menu Item + if (QIcon::hasThemeIcon("document-import")) { -#ifndef Q_OS_MACOS // Setting icon for exit/quit lead to a crash in Mac OS X - ui->actionExit->setIcon(QIcon::fromTheme("application-exit")); -#endif + ui->action_Import->setIcon(QIcon::fromTheme("document-import")); + } + + // Set Icon for Profile Export Menu Item + if (QIcon::hasThemeIcon("document-export")) + { + ui->actionExport_selected->setIcon(QIcon::fromTheme("document-export")); + } + + // Set Icon for Profile Remove Menu Item + if (QIcon::hasThemeIcon("remove")) + { + ui->actionDelete_selected->setIcon(QIcon::fromTheme("remove")); } // DPI calculation diff --git a/UserInterface.ui b/UserInterface.ui index 151a728..7927dcc 100644 --- a/UserInterface.ui +++ b/UserInterface.ui @@ -171,7 +171,7 @@ 0 0 625 - 21 + 23 diff --git a/lang/README.txt b/lang/README.txt index f95afe5..c21786f 100644 --- a/lang/README.txt +++ b/lang/README.txt @@ -1,5 +1,5 @@ -Community translation files - -They get loaded in ApplicationPathExecFileFolder/lang - -You can help translate with using Qt Linguist, after you've translated you'll need to send me a pull request on https://github.com/Syping/gta5sync +Community translation files + +They get loaded in ApplicationPathExecFileFolder/lang + +You can help translate with using Qt Linguist, after you've translated you'll need to send me a pull request on https://github.com/Syping/gta5sync diff --git a/lang/gta5sync_no.ts b/lang/gta5sync_no.ts index e1b8829..fab80f3 100644 --- a/lang/gta5sync_no.ts +++ b/lang/gta5sync_no.ts @@ -171,6 +171,13 @@ Pictures and Savegames ImageEditorDialog + + + + + Snapmatic Image Editor + + Overwrite Image... @@ -202,13 +209,6 @@ Pictures and Savegames &Close - - - - - Snapmatic Image Editor - - Patching of Snapmatic Image failed because of I/O Error @@ -267,10 +267,8 @@ Pictures and Savegames - - - - Background Image: + + Background Image: %1 @@ -303,6 +301,13 @@ Pictures and Savegames &Cancel + + + + + Background Image: + + @@ -333,11 +338,6 @@ When you want to use it as Avatar the image will be detached! Select Colour... - - - Background Image: %1 - - File @@ -546,11 +546,6 @@ Y: %2 Feedback - - - Participation - - @@ -567,11 +562,6 @@ Y: %2 Hardware, Application and OS Specification - - - System Language Configuration - - Application Configuration @@ -606,8 +596,28 @@ Y: %2 - - &Send + + Language for Areas + + + + + Style + + + + + Style: + + + + + Font + + + + + Always use Message Font (Windows 2003 and earlier) @@ -615,6 +625,21 @@ Y: %2 Interface + + + Participation + + + + + System Language Configuration + + + + + &Send + + Language for Interface @@ -628,36 +653,11 @@ Y: %2 Current: %1 - - - Language for Areas - - - - - Style - - Use Default Style (Restart) - - - Style: - - - - - Font - - - - - Always use Message Font (Windows 2003 and earlier) - - Sync @@ -801,12 +801,6 @@ Y: %2 Export as &Snapmatic... - - - - &Edit Properties... - - @@ -814,15 +808,15 @@ Y: %2 - - - Open &Map Viewer... + + + &Edit Properties... - - - Open &JSON Editor... + + + Open &Map Viewer... @@ -971,6 +965,12 @@ Press 1 for Default View Exported Snapmatic to "%1" because of using the .auto extension. + + + + Open &JSON Editor... + + PlayerListDialog @@ -1112,28 +1112,21 @@ Press 1 for Default View Import - - - - - Can't import %1 because file can't be open - - - + GTA V Export (*.g5e) - + Savegames files (SGTA*) - + Snapmatic pictures (PGTA*) @@ -1142,6 +1135,16 @@ Press 1 for Default View Importable files (%1) + + + Snapmatic Loader + + + + + <h4>Following Snapmatic Pictures got repaired</h4>%1 + + @@ -1153,14 +1156,14 @@ Press 1 for Default View - + All files (**) - + No valid file is selected @@ -1179,16 +1182,23 @@ Press 1 for Default View - + Failed to read Snapmatic picture - + Failed to read Savegame file + + + + + Can't import %1 because file can't be open + + @@ -1258,16 +1268,6 @@ Press 1 for Default View Export selected... - - - Snapmatic Loader - - - - - <h4>Following Snapmatic Pictures got repaired</h4>%1 - - Initialising export... @@ -1299,8 +1299,9 @@ Press 1 for Default View - - Failed at remove the complete selected Snapmatic pictures and/or Savegame files + + + Qualify as Avatar @@ -1313,25 +1314,6 @@ Press 1 for Default View No Snapmatic pictures are selected - - - - - - - - %1 failed with... - -%2 - Action failed with... - - - - - - Qualify as Avatar - - @@ -1352,6 +1334,24 @@ Press 1 for Default View Patch file %1 of %2 files + + + + + + + + %1 failed with... + +%2 + Action failed with... + + + + + Failed to remove all selected Snapmatic pictures and/or Savegame files + + Qualify @@ -1407,7 +1407,7 @@ Press 1 for Default View - + All profile files (*.g5e SGTA* PGTA*) @@ -1434,7 +1434,7 @@ Press 1 for Default View SavegameDialog - + Savegame Viewer @@ -1454,7 +1454,7 @@ Press 1 for Default View - + Failed at %1 @@ -1633,7 +1633,7 @@ Press 1 for Default View - + Snapmatic Properties @@ -1687,6 +1687,18 @@ Press 1 for Default View Title: %1 (%2) + + + Players: %1 (%2) + Multiple Player are inserted here + + + + + Player: %1 (%2) + One Player is inserted here + + @@ -1725,18 +1737,6 @@ Press 1 for Default View Edit - - - Players: %1 (%2) - Multiple Player are inserted here - - - - - Player: %1 (%2) - One Player is inserted here - - Yes @@ -1768,7 +1768,7 @@ Press 1 for Default View - + Patching of Snapmatic Properties failed because of I/O Error @@ -1978,17 +1978,27 @@ Press 1 for Default View Failed at deleting %1 from your Snapmatic pictures + + + Failed to hide %1 In-game from your Snapmatic pictures + + + + + Failed to show %1 In-game from your Snapmatic pictures + + TelemetryDialog - You want help %1 to improve in the future by collection of data? + %1 User Statistics - %1 User Statistics + You want help %1 to improve in the future by collection of data? @@ -2066,38 +2076,13 @@ Press 1 for Default View &Selection visibility - - - Selection &mass tools - - - + &About %1 - - - Change &Title... - - - - - Change &Crew... - - - - - &Qualify as Avatar - - - - - Change &Players... - - &Exit @@ -2150,15 +2135,15 @@ Press 1 for Default View - + Select &GTA V Folder... - - + + Select GTA V Folder... @@ -2172,40 +2157,67 @@ Press 1 for Default View Hi&de In-game + + + Change &Players... + + + + + Selection &mass tools + + + + + Change &Title... + + + + + Change &Crew... + + + + + &Qualify as Avatar + + - - + + Select Profile - + Open File... - - - - + + + + Open File - + Can't open %1 because of not valid file format + Show In-game + Hide In-game diff --git a/res/gta5sync_de.qm b/res/gta5sync_de.qm index c2d6219a11e86bdd7a451e8ababbae8ed8a8b125..4818c6b8363d6b432fa4bf0376425d59295a683b 100644 GIT binary patch delta 2508 zcmbtVX;c(v7QIze(Op&Dw2mlYUlbK&Q$*B>3vt*~+)+_MK^j4uMwZ67whD0<#S)q* zimYz9MBEuLqK3F)h!PEBCVFHdaT|?2F)ndlPtQ4XPX12!slL@!^?mQY`|f-7t74=)de;fiBtHDPR`uKo9ItmCl3BIKnSZcCju@98xlYrj# z=sRFFFm&u(>q$v9d@TXphQaq_I1ysuYYF`MH}JIt-eCt{OW+;*;QJ(quw5R;xDT0+ zewOVE9$?sDS~bUnaP2Liv>1_}5zc>)s6qEBEe27EUV!6w7;})WZ~a*=VnU7O*m$Is zk~@#;8yj#Xx6h{CRuoPf?p>wS;5X~rX9Arv8j_tuGL?%>7Pvjc5RmrvF=Q!e4TY*(&Y|z zgwcaNFsO+1iehUMJAfP;_QZ)0U{Mu&vZ*JKJD6?cd??pk_WWOo`|b(s?9Hd!08JhH_se4d|7Yxj8hfDVHrx3q7Fc(hHMidYVz02jjUvAGsqEXJZot~7 zHa1R&fdMXFHbTv9VEY1_9$)_seEiJDF^3)u>TMHZFayQ2ZDMQJ0RxBIq~&^&lcMF@ zHnTk&xRAF)ff#`c4Wp-)UgIVVE(1ROja$_=oM`?k$8vp)aa^rmHOY|5)gFwea=ze> z0=}RxI@4T2AND{S2<7(-G*~%sq;)2YknI zuUoH@TOV`p&V~@D^*m=;KUd)G_n83YPga!Qazf%Ue#VU^U~wUzzGp5l-Hu-&2*3tg z-WU)IeALF5`cVdJrt_uw#AW>fzWmJ;VCFWyYE>Lr@(EwdZXh${^R=O*Pt;`o=z#_x za1nnku8#ECD{FaoM{ir#OLk=MaN9}o-az~*+qrB8pfk$5_{gs13elWH>KGLE++LtO zS~l||jMa(-_s0RM4OSfAuE_ZA0T3}(vHWl)ux*QCYng$voTezcQ3UL4P*k0#%IwrD zz8Lci2o6@%9sGstXjGhNCFb+)Dw>+eD&E}`KgLk6_S~T8IAa9TOBBxz1_PB@ir-I? zIrH8r`G`wEQqfAK>!kpaq)-|5ri#ikRQbtE8YU%e%CY-eXoxr~)60oSvX?UByq3K9 zPvz44Bu(@J<#IhqGL~1a^t?+R8=>5*rR(z|l&1sNQ}<3(Ha1azu5p)nMW|z@;Bapw z8SJ9qmfJx^oGbKx-4iIRmtz&~##Uj_%`<>Yxe#e8pycd?n8M2x^SKbOAbI^&LXwG+ zTQW(|MZKUtQ46{hLjJ0d_3Hp&;T2)+If~`vB5a8Gfh?pGHU)&x?rB2R`Ek@A?}ggH z$>jf~!sU@9Ms}2N_2CEV{s{wQ zl!-05#{uEF6*J6fq-yZ(jHKFOBze+^G$NB;O5MKxtFR6l#Q- z(x!+Gnwrn7Sdc955*&Z-_Oe(!c7z2gH?D^fIfs z9pO~hvnt`S8DM9vlS4%JxW%e|eSZN`3RQD@Qdq?uRrVOd1hZ<{sRWuwWvca~ib%t1 zmC2v3i_NN1hF(vZ9#-5et4bp%tm=-cN;3plFkW@`IZ3uFMm{9=_S%!8cK#uNrtCzu zb0>AgnxEBuL&^EBe^UFl)3$3T$Y!zkB-4KN)QGa^tIL#Jk zb>Ti@nbt>rWGZ=T(+TydhB#p45i2I`Q(uVd4oq#Z;z>uvuc%8WVC1`4w45zMD zYc8Co6z8ZkH*cH(hD2x{czpq^k~A;eh-`mJW8O(Q8oo)RvMsCgRlS~Gmzol!WWJO? zMEdj#haNddffiYGrlrFJxybkrCPGJF>$OA}WM*-QWVvskyU7TYC+0ZHb5gs=2Mnt2 z5fO=LI&HE?PKHO8Ha#O(>yfC_$u22l>q_(^gP3AVu;4ISnvJCYZkqguaNg)oo2Mb2 zekWrgooS(y8&^BaJG5@S^h(gjmX1OH3zeFdto88j?-8x{pO=`fm0$04mCx;VWVTtt d1%?sNCA3Kz=KcSnvQsk_{UKD{x!wL<{tcsR^8o+= delta 2218 zcmXAq2~-qU7KZ<-uA;lDx@nD#EvRfN2q-X$pe%|TxS>(OD2XNrO;ox8r6Gz&KyXWd z*eM98sGzt+h(rmvV-SfthUKVXoKcfW4vcaXjgDm0NHUky;T*nxRrkGn|NH*;>f+Dr z%q5O1vZ{iShNb7iba5j z0i(xl0fOhnD?h&Igm-^J=P-EJ&!mD_c=snR9RTnC#HCU2?oV9$0N#)Nf!$7W7~?W& zD}4HwFYH6uM4Ao!G8-{Ijw9>`0=v*h_eQ+3L71!0OD_)zQ{`bcwCMJOapA%rG2A6E^&_6HF9MCE9uKz|R_g!EooXum3^dIu0N zS+zRD4cNCszOQ=U?G88LcWO?Qzy(dEsErS}w!}iC@<$c1uIuQ<}mp) zS1#a;UeR2`fdF#fuUuP35irqLVfq4vwi#U8nOu7RiQK|DuiSTy=la9qNAiYaC4lCE z!s(0nfP=e%Pg?lc*2|Q#nzxk41554s&4NJB-S{kDQa+@EFB?OpZA;_J@+j@jX1?Ne zH1OUXzA|SS?T(Ke#XGY_|B)@ci(|Om@Me25Zl2wu<)eTVeRlC|3SizNALb(mUQmm@ zR$%=uwShYd9M~cE@l%*@lB^u8nf9E{d5ME& z-mx~|vp|id;t-G!rb%fukvSx}$Ij>&t2t^SK_A9x&iL&F)|fR7m+7Ev3zmnggBdhV$dW>;H%f@IT_=N!!g6&j*+?s_ zETOtHErNO0Gpb~sU`{0RH-vTn8waFz$t`MQR-RDVIG_3vDpdO|CX;Oxu7_sV)k6DwbAap#LWge<5HwDB8vC3Met^hylMZW@$UN$2pQv-7BbliYU889AvDxCN z?Ac`UtD=7Zb#Y^+7?M~<9HUT9Rp@=7PYgTs8gLjPPKjGcOc$fNX<}xhxbOjO%U~z* zou~Fdd5v743Cg-Ao*CvqjT$UAxRKG^%Eg8b9*F%-yn2`JADgzBbt41 zi1@vUwtev%v1J+qq?{AmGQI(XrwUWnD_nb3VPUA)c9fbqBuDIUi6Psc7w;S=x$dQ6 z=P7EgcVevAC8YtMo)o)pP`^w+Nlg7_+QE^MD%=35M@jnr{;WAATLhP^i&CyVb#Lqp zDbIYHW-XBNCqz^C_DJ~=UBEg)VPTe(|2>s8G(@t!$pPM4AQcLsDL5OzK=@oRN{U{fRMz;`c8AD%?f)m=Z2+E^zb5E&d zd-LUH(ZhZJVcpOled)Ses2kc%Ct^FV8y)mdVE9`)@4Lk`PLg$!M{My!-QosnRcx>> z+CYAY_*$XaN4NeqwQ6Ue&UTDyT0KoyvxJP7->y4-aTyR^qi|)Du4$PAu;ikyGnvvX zePPc@&A_{7%SF=#C0@Qo+b2;ZcTWvNaxW-vs*O@FS875cjDwAt`iY3)-vYO - + Savegames files (SGTA*) Spielstanddateien (SGTA*) - + Snapmatic pictures (PGTA*) Snapmatic Bilder (PGTA*) @@ -1718,7 +1718,7 @@ Drücke A für Standardansicht - + All files (**) Alle Dateien (**) @@ -1739,13 +1739,13 @@ Drücke A für Standardansicht - + Failed to read Snapmatic picture Fehler beim Lesen vom Snapmatic Bild - + Failed to read Savegame file Fehler beim Lesen von Spielstanddatei @@ -1795,7 +1795,7 @@ Drücke A für Standardansicht - + No valid file is selected Keine gültige Datei wurde ausgewählt @@ -1889,6 +1889,11 @@ Drücke A für Standardansicht 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 + @@ -1991,9 +1996,8 @@ Exportieren als: Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen? - Failed at remove the complete selected Snapmatic pictures and/or Savegame files - Fehlgeschlagen beim kompletten entfernen der ausgewählten Snapmatic Bilder und/oder der Spielstanddateien + Fehlgeschlagen beim kompletten entfernen der ausgewählten Snapmatic Bilder und/oder der Spielstanddateien Failed to import copy of Snapmatic picture because the file not begin with PGTA @@ -2079,13 +2083,13 @@ Exportieren als: 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) @@ -2125,7 +2129,7 @@ Exportieren als: SavegameDialog - + Savegame Viewer Spielstandanzeiger @@ -2157,7 +2161,7 @@ Exportieren als: Schließen - + Failed at %1 Fehlgeschlagen bei %1 @@ -2412,7 +2416,7 @@ Exportieren als: - + Snapmatic Properties Snapmatic Eigenschaften @@ -2575,7 +2579,7 @@ Exportieren als: - + Patching of Snapmatic Properties failed because of I/O Error Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler @@ -2745,6 +2749,16 @@ Exportieren als: Are you sure to delete %1 from your Snapmatic pictures? Bist du sicher %1 von deine Snapmatic Bilder zu löschen? + + + Failed to hide %1 In-game from your Snapmatic pictures + Fehlgeschlagen beim Ausblenden von %1 im Spiel von deinen Snapmatic Bildern + + + + Failed to show %1 In-game from your Snapmatic pictures + Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern + Edi&t @@ -3146,7 +3160,7 @@ Exportieren als: - + Select &GTA V Folder... Wähle &GTA V Ordner... @@ -3245,16 +3259,16 @@ Exportieren als: - - + + Select Profile Profil auswählen - - + + Select GTA V Folder... Wähle GTA V Ordner... @@ -3263,7 +3277,7 @@ Exportieren als: Wähle GTA V &Ordner... - + Open File... Datei öffnen... @@ -3284,20 +3298,20 @@ Exportieren als: - + &About %1 &Über %1 - - - - + + + + Open File Datei öffnen - + Can't open %1 because of not valid file format Kann nicht %1 öffnen weil Dateiformat nicht gültig ist @@ -3333,12 +3347,14 @@ Exportieren als: + Show In-game Im Spiel anzeigen + Hide In-game Im Spiel ausblenden diff --git a/res/gta5sync_en_US.qm b/res/gta5sync_en_US.qm index 6469f65f9ba05f4551409c399d5249b19f066b46..5cbde30112677fbe15aa466b740086aa7d7d756d 100644 GIT binary patch delta 1892 zcmX9;dsI~Q7T)K~IWu#9XND04C%l4zfj9#*#A5~$kjI^oH)v=VuU<8S9!th$D7LC` zH0`RlRx9qg#=QwX0#lQGU?9eol@v=^sKZ4fQ|u`v8Jcz{&5HV1=dW*_-`V@Of8V#i zy)T{QhC8^|L%4*xP$!pHS8V6f>%239*OSmG5M?qF{J@eA>fSX=i6o|{;PCHt=gm?q ziT*Q01^T)%^X%nhX?GEsR*_{QtuT=+6KRDNWa*Cvwvpxg1mLg|&zaL|$U2eg{*f|L zk!9;9SLGm4(G8mSGB9Z^HkFOKE=q}vzKre3p_*#C%Cb(Yeei7?g!&BBKuo>WT!$D-o}^3 zjS@Y0k6&^I+4FYuPc3)}RcG6+DP14rR>lwib}dBr2O&-QB1Gk%nm@5QlTt$H=foZY#Pc$ zSh8XiW=R``mbiT&?^iMebAF=GwL2L;IV|{V|3x(YJr&c8D(007{*KM~zeKpcw3BFR zrEqVc4`>s9eSd<^>!L7`XJ4;03g&FDxcEXhDvpcQdsY%zmx&uBiRjOvqR$3$#&NMB z4lm2TDmH9E)!fg;z4yzB;x3BKn<^kyxDpU-(_ELe;XOgH;709&rO`z34ce9bYNF)7 zC>f$Xc)5-R)}qLZx)5PMQK?7qicYRnX%lDpp3pU)hI&OQx?_bmiKZ#KwgD7M)atss z(UlOJ?u+6D@Xs>c$Vne=JfpjLD2b?SpKiPz&dBQ2i|!t%-J}oiv4OxYefIrkBJl@( z&YivJ`c{3>0YAi>uCLzP1gA~XuRdLgu8-xd!G8u+hFpNv4M*WUhS!ete=d>SHX zfsQj&bT=wvdb6)eZm@2_X}*f?vvPAQ7Ng55pWGaQ-SeH?RSh;}>ww5EbIBiNjuOTC zW&c_fEgh5x8Y?mH&GN+^ShzVl`KQjyVCPYB3K@hqU5E=cNH+qQ3A-Wq@c)p{3?W;m zU@vTzf-5E&tg%0WK)qr4Oem(=WvD3x+9n%bJn=USD;c)u?jRDrHPpxBT-<4B;IR4~ z|54E$VrX#V4cc)-vk4n8>44$=TTrODTp5$>!D+@=CoDaw!)UpJTXNPY@hqmm`mwP* zWWo+_sF)mPd~OhJ$$isUcL0w`++{qn2=;OP+j!zs1(xqt744bE4=X}p%cDVp+=F(n zR`#)&MCXN|QyzRq?lDb!25+$IOqqAk?TqJ5i(@@R5B=5j_?iIBlVb7=v=Yrdqx{Cq znGVyT^O(n}=S(fnXCmsZ>B9~%v28N-Uuc8+MW(N!jv?A(x*dVXhMhA7cG@tvPd!aE QUp~G-{@Qx{pwk}x2gMg0rvLx| delta 1964 zcmX9;eNa^88vmWcIqaTuc3C&T4HE^FRTtRBfL#bz1!Vb_1<}GX+i)!!c1a*?G9<55 zdh0fA=Nfmem>L_IQsxH;smzEm%AhWn&}(K>nOxy=QBk=Wmh~|E*Kf`{?{nVg_whVe zJDAIz%=;lsvM1ESobVKwm@hqbv$dn(j&s1`&ER~5g^8ZebwUgHMM-ox={c_xn!x+c z0J*Pw#&in?VQ9|;G!-yRmF2a-Fjba!9)|vCAb$Z2|BENI%W;e@5u;ZPB1Jp(_K3S&)lKOCL z@)aP`j0?>e@4#)|H7O(;MbT;z141~9__Sg|1;y(M# z8LG|>W?wA+3w5!Rb-h_ar0&Xf?Ch{scHhPn5-7xvb2&d+qvSSrN&WBae)A5JtB`GV z3<1esvu$ljz!Q7f_U<`^TDFT@K#U{VQzwYY@(i~3Lk$qs$NDzVy~5RO|JVnBaxMEq zZyun#!d`0$A#bwTk>Qm<#=qHLGl+xO&OV3_rtjPUq2(fw^IE|4vkw8eIzX%S2CQt| z20W$@D6fsAH?GJ#0#-#OKE)+HcmmM(a+b6S66G{!Pu>lr#&TOOEv9SxWHmQWxW~1| zenR9kWGko3Y2mtdCjv{NIA87Gftg4Bn6kx>*=IRl$5x`#&ke6R4or7)_Xqk2jofcv zP0`_aZmP~SD(~WSY2*Cr3*Gc$74O0V4N0M##RD}=VU8y(he%bi5gP+ zwjzZ4lv=nZ*YOtSwA{wetG}%9o+9<~KT{may9vyY6>S6b(BrQuy1U7h5ToM9f?~?g zTE$RjJ>@Y~aq~a|P!y(k*iOkvGbwpn54oXJhW8kWz(>loNiV?PR;J(COXm-i`TKk{ z4(}^ndz&d)4a&+>PU>Zia??*lBq};aS?B&Md0zFLfO?#gOIM5 z>jLM6bql)hmy)RmgjuyiK&V&H->2~8%#}|D&PtCj5zPIaz_dCctMNTzvr#DU^wMkN z!WzX9%1plSd?T?+{Z^>R9w(jV3Ki=K*-WA8m&XC~cXGHwSAR$Fo?1@&92HtkD*!{j z(7Tj4Cszx7*Z%;l8-@O7a>@Dv;gZop)+Y#g}>$IMWY>MgPB5)Z^Sif0>pNSsWuZ* zRRfvj;z-{LNLcuR#I$dwu;j_RlzKz5M%o%g`siw=;YI~>j_2Lm=zEASi z(4+QjX<(O=0`sW!%??_)>6@hgAHPEE+j84$VG^?~<{EO;ERmj`H zv=_Dt+R_G9%>27VKvF$7hZGC=NL8IjXnafc`mtwe0o16rXY2sD8>+@QI_Gz)niyLB z7PTL3+f+?9>LKu<%B!Ibm^f4Q)h$w};H*3*n6#g(=UXV!(>m0K@8~b-Lvoy`FOJPo zmxN5k;X^+r{!RVrAlb4kNbT82%_KacKDdhFV^gV*oh+s0`?eoVht;P`Ln)SDs;|3g zlwvLhaZ(T2{3C`3sb z_rPJ=;i;OJ-y?T;tL7hPi0kZ9&BuSNr1b8W)sjv>q3OTSMlR%Qu0 - + GTA V Export (*.g5e) - + Savegames files (SGTA*) - + Snapmatic pictures (PGTA*) @@ -1166,14 +1166,14 @@ Press 1 for Default View - + All files (**) - + No valid file is selected @@ -1192,13 +1192,13 @@ Press 1 for Default View - + Failed to read Snapmatic picture - + Failed to read Savegame file @@ -1308,11 +1308,6 @@ Press 1 for Default View You really want remove the selected Snapmatic picutres and Savegame files? - - - Failed at remove the complete selected Snapmatic pictures and/or Savegame files - - @@ -1362,6 +1357,11 @@ Press 1 for Default View Action failed with... + + + Failed to remove all selected Snapmatic pictures and/or Savegame files + + Qualify @@ -1417,7 +1417,7 @@ Press 1 for Default View - + All profile files (*.g5e SGTA* PGTA*) @@ -1444,7 +1444,7 @@ Press 1 for Default View SavegameDialog - + Savegame Viewer @@ -1464,7 +1464,7 @@ Press 1 for Default View - + Failed at %1 @@ -1643,7 +1643,7 @@ Press 1 for Default View - + Snapmatic Properties @@ -1778,7 +1778,7 @@ Press 1 for Default View - + Patching of Snapmatic Properties failed because of I/O Error @@ -1988,6 +1988,16 @@ Press 1 for Default View Failed at deleting %1 from your Snapmatic pictures + + + Failed to hide %1 In-game from your Snapmatic pictures + + + + + Failed to show %1 In-game from your Snapmatic pictures + + TelemetryDialog @@ -2079,7 +2089,7 @@ Press 1 for Default View - + &About %1 @@ -2135,15 +2145,15 @@ Press 1 for Default View - + Select &GTA V Folder... - - + + Select GTA V Folder... @@ -2184,38 +2194,40 @@ Press 1 for Default View - - + + Select Profile - + Open File... - - - - + + + + Open File - + Can't open %1 because of not valid file format + Show In-game + Hide In-game diff --git a/res/gta5sync_fr.qm b/res/gta5sync_fr.qm index 157f41e9501710850b76b71e7dd629fa53cc992e..c7b8fc44e7e29132df4aab251cce792a5c9106fc 100644 GIT binary patch delta 1586 zcmXYxdr(w$6vw~!?!CKvAM8plVhZ?#WI;sarN~1N5LS@Kt_UpoK#UqeO(h${t-x_o zGMx=c!v~6{sN(}slE48aWmHy486TNVxig}T4{Xh-#tz;7`poX{_dDl&&-tF~>S9h@ zVzwBV1zSD**yJ@^qkU}IyMf6%Ksu*TX8`7(2WD>vci=-{&Tw!o9FVvXoP(H~46fG< zxK}BR_!a#0Fd!)q{4C-dcfcP{0ER6C@3;sg{LgG(XzQ}*T^lBZdDa&69f&mG%)n}3R2G~!ZrA{EHy-ZgfmvVSd1*Q@u7nYP z3v)fZR>A-(qAY*6w8d7Dbk^4dK;*xtu++&T~w4Hpx3aT$>`^tjjdqpXiDx|}-_xSy)s!5ukV0H}ZBj#cCU!V|7V zT145}xVGJ)G+!&{DEpFBZdVvHTwz8b=V-2=doQ_%1uekPChk?wWnwD#_gSiLo{Q%O z-%ZZs4F_ug%`Jta*YSDX9WY_WLcU~AA>hA)uMMO!Q!Dwp0W%O_;p;!irMVvBk2kae zo_T6Mq7hJir1tJ4!&=JJSp~kp#3Xegy9|h!X|Gm|5~gTG*D6xC&)%x?V?!$JPL-c+ zZjYwEy_CH4h316m2{3%Qrl}_s2rbfdbWlr&^l5%hBXjE8wR}=1wQ!5pyEBMtdZ3*# zP)`=|)yDVNQ49ak&OYb>((AM(b^Cx2PP?qVh(@zb`|+6Dv@|K&whr=IYMQq50yS?! zrS@q{HEhtu3ZCcM>B9Gd=e;M4>=KVm-Ws zMKx4t{8(Y>tmov7P+{p3qM8@p|09Gv3ZW{9x}337sBcdP^4x{4IP&!LX5pGOm8SNM z&>IwC07l*wna7kUx>!Y2EFBWs2>VW() z_5$9=HnUu8_VS<=+bUjuyc)1t#H;ZPtyG`rC_4pcA1RDHsxV4an08d`9c3Yp^@_I| z`T<>&_~2w0FeOgxyPQpJyeKiJ*U>nzfxhkztmPjf%5+((*69M(uJ5l;H_PfV-+RJ+bi|# zETR?pR{EiuzA33^rI#&t$n@_h)Q^|B9f`DBcVywQ3kdX=4I73oroN}h-rtP?l67*x zgcqb>m%P$Mod~kZpCwdN2e!yH6Y00mAlEYVF`HJbFinu_^;BrMMLzp>Ak7geoyUZ3%}`hrj@+!vq53-Gq>}(9^|Ja9Vd}4qe*va!Mmg< zR^jw~{fPG{eDEfHOg{}|X0yJu=OmR`uV22|Oy!K%?|p3nVlwrIuTnb0QvLa6(m$zC e@A{g29&?O>S&yp#bi)^o8#T$s#?M2FL;eLOfVkoS delta 1675 zcmXApdr(w$6vw~!axc60-d$D#!c<^QBn3i15Le|P$U~Ngzyk78S6G!|0cF8-$~Dok z2jgfPGA5-MGK!iaf+m82qLC>`T#fyy#+7;?4>hL7Mq{y_RA zc#l7j{u17O(}9dV@c!MO*ax5X#en+|e8w+auvKQVH$vw|1OBauHVptvdBkob&S`@F z2yw|UteGi*^G$quyq^S$I9T8a%nttlYnVvM!e$- z%rBOiG(l#13FCJ7O<+O=vnpeZDr{!TX8%bQe#3lFy9}6eoq4Qo0s`aM+{?7SM9G@B z8GtM&cK?b1!0oWidF$Cj>ve$Y8qqe$sF;_wA;xQ^E|6`UQ%wfw*rUcFAoKy-(h>|r z++kb0rUBvoYzH?Jh;C}s&#B5iGQ$RBrg(6@XDVsmNp3i=4RC7Vp7&oN#&fUElDe!Wo*O?G zsOFsy)c}e?nc7W!_O&kP5$VR8_vZsM*YdT#BvT*3*S#N|^pOueE>{|7L!RMFBO1O!i2baj!X6GjxjBvLpvok~8Yn=DLFx^?@JriaRfFX|~G z)0L4=>&U`yl?jJ>X(;lP=DM$`sPB{|ohE8gs&ezxn=~}MvZIT#rWcgm7sh(FNjinT|Rkwq^$jWrREh73(rZSXo0t zBku`CaZgCVW1(mj(ViF9{T&F*J1126k;^GrLVafvW#OvO6G52{wFrH=@zk|^;f7y` zGcftK$ULHl!YrcNg+d&;!RE%h&U_}$UsVf4)yYi#M`n&%OdO$^i}DmRM;(BiyS6;u z-5RYE&rETl5la-WJSqqB9L1}V44^wG_Eww%l)uT;70R4{NoG=^c*7%|GWMA`*!UE1 zXb~Tt>;Y!K5=XA25i2F8brTRYD7|rt?AH`a+1IJM1+7x016AQ-kg9?WWMk$fsVZiO z7Fd}{4N|o$jZ*wBsn%yJ{U0GSX-MiY(?z*0MB1O5C0z^~0p9vb>b1~AIm@K}FHJNe z<dYCI@z^YTl;bLZhmdp^w>oPnn6`s(K9x4RKVR9WA3!_p5%?y8_H+ z_2dx>lK!IF`!=0V@U-2v_p*lUQlD<8?7MH58E{m6AFQ@*e&!U6xnWyit+t&BWPCmj>AGFVn^+#~2HXOa)q_MZ3;qE~zkSEo)5L z{1S6%k;!7xmYIr7`4(DFD>jyzjh4cEZE0b?rF@;KOlvGIm{qb)n`W#qtu~rXwg) - + Savegames files (SGTA*) Fichiers de sauvegarde GTA (SGTA*) - + Snapmatic pictures (PGTA*) Photos Snapmatic (PGTA*) @@ -1404,7 +1404,7 @@ Appuyer sur 1 pour le mode par défaut - + All files (**) Tous les fichiers (**) @@ -1426,7 +1426,7 @@ Appuyer sur 1 pour le mode par défaut - + No valid file is selected Fichier invalide @@ -1437,13 +1437,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 @@ -1597,6 +1597,11 @@ Appuyer sur 1 pour le mode par défaut Action failed with... + + + Failed to remove all selected Snapmatic pictures and/or Savegame files + + Qualify @@ -1683,18 +1688,17 @@ Appuyer sur 1 pour le mode par défaut Supprimer la sélection ? - Failed at remove the complete selected Snapmatic pictures and/or Savegame files - Impossible de supprimer la sélection + Impossible de 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) @@ -1721,7 +1725,7 @@ Appuyer sur 1 pour le mode par défaut SavegameDialog - + Savegame Viewer Gestionnaire de sauvegardes @@ -1741,7 +1745,7 @@ Appuyer sur 1 pour le mode par défaut &Fermer - + Failed at %1 Échec de %1 @@ -1922,7 +1926,7 @@ Appuyer sur 1 pour le mode par défaut - + Snapmatic Properties Propriétés Snapmatic @@ -2069,7 +2073,7 @@ 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 @@ -2223,6 +2227,16 @@ Appuyer sur 1 pour le mode par défaut Failed at deleting %1 from your Snapmatic pictures Impossible de supprimer %1 + + + Failed to hide %1 In-game from your Snapmatic pictures + + + + + Failed to show %1 In-game from your Snapmatic pictures + + Edi&t @@ -2462,15 +2476,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... @@ -2535,44 +2549,46 @@ Appuyer sur 1 pour le mode par défaut - + &About %1 &À propos de %1 - - + + Select Profile Sélectionner un profil - + Open File... Ouvrir... - - - - + + + + Open File Ouvrir - + Can't open %1 because of not valid file format Impossible d'ouvrir %1, format invalide + Show In-game + Hide In-game diff --git a/res/gta5sync_ru.qm b/res/gta5sync_ru.qm index 5edd3699b30e103efa3f3918816716ae3f16a420..2b2e99e219ef64274dd1cbf1267cfb2d85e88913 100644 GIT binary patch delta 1889 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 - + Savegames files (SGTA*) Файлы сохранения (SGTA*) - + Snapmatic pictures (PGTA*) Картинка Snapmatic (PGTA*) @@ -1380,7 +1380,7 @@ Press 1 for Default View - + All files (**) Все файлы (**) @@ -1401,13 +1401,13 @@ Press 1 for Default View - + Failed to read Snapmatic picture Не удалось загрузить картинку Snapmatic - + Failed to read Savegame file Не удалось загрузить файл сохранения @@ -1418,7 +1418,7 @@ Press 1 for Default View - + No valid file is selected Выбранный файл неверен @@ -1533,9 +1533,8 @@ Press 1 for Default View Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений? - Failed at remove the complete selected Snapmatic pictures and/or Savegame files - Не удалось удалить полностью выбранные картинки Snapmatic и/или файлы сохранений + Не удалось удалить полностью выбранные картинки Snapmatic и/или файлы сохранений @@ -1586,6 +1585,11 @@ Press 1 for Default View Action failed with... + + + Failed to remove all selected Snapmatic pictures and/or Savegame files + + Qualify @@ -1695,13 +1699,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) @@ -1728,7 +1732,7 @@ Press 1 for Default View SavegameDialog - + Savegame Viewer Просмотрщик сохранений @@ -1756,7 +1760,7 @@ Press 1 for Default View Закрыть - + Failed at %1 Ошибка при %1 @@ -1957,7 +1961,7 @@ Press 1 for Default View - + Snapmatic Properties Свойства Snapmatic @@ -2098,7 +2102,7 @@ Press 1 for Default View - + Patching of Snapmatic Properties failed because of I/O Error Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода @@ -2242,6 +2246,16 @@ Press 1 for Default View Failed at deleting %1 from your Snapmatic pictures Не удалось удалить %1 из колелкции картинок Snapmatic + + + Failed to hide %1 In-game from your Snapmatic pictures + + + + + Failed to show %1 In-game from your Snapmatic pictures + + Edi&t @@ -2424,7 +2438,7 @@ Press 1 for Default View - + Select &GTA V Folder... Выбрать &папку GTA V... @@ -2556,16 +2570,16 @@ Press 1 for Default View - - + + Select Profile Выбор профиля - - + + Select GTA V Folder... Выбрать папку GTA V... @@ -2578,25 +2592,25 @@ Press 1 for Default View - + &About %1 &О программе %1 - + Open File... Открыть файл... - - - - + + + + Open File Открыть файл - + Can't open %1 because of not valid file format Не удалось открыть %1 из-за неверного формата файла @@ -2616,12 +2630,14 @@ Press 1 for Default View + Show In-game + Hide In-game