add title to pictureDialog, add unix make install, tr update
This commit is contained in:
		
							parent
							
								
									7384f39c7d
								
							
						
					
					
						commit
						95968f5986
					
				
					 8 changed files with 165 additions and 121 deletions
				
			
		|  | @ -41,6 +41,7 @@ PictureDialog::PictureDialog(ProfileDatabase *profileDB, QWidget *parent) : | |||
|     jsonDrawString = ui->labJSON->text(); | ||||
|     ui->cmdExport->setEnabled(0); | ||||
|     plyrsList = QStringList(); | ||||
|     picTitl = ""; | ||||
|     crewID = ""; | ||||
|     locX = ""; | ||||
|     locY = ""; | ||||
|  | @ -75,6 +76,7 @@ void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, bool readOk) | |||
|         locZ = QString::number(picture->getLocationZ()); | ||||
|         crewID = QString::number(picture->getCrewNumber()); | ||||
|         plyrsList = picture->getPlayers(); | ||||
|         picTitl = picture->getPictureTitl(); | ||||
| 
 | ||||
|         QString plyrsStr; | ||||
|         if (plyrsList.length() >= 1) | ||||
|  | @ -100,7 +102,7 @@ void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, bool readOk) | |||
|         if (crewID == "") { crewID = tr("No crew"); } | ||||
| 
 | ||||
|         this->setWindowTitle(windowTitleStr.arg(picture->getPictureStr())); | ||||
|         ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, plyrsStr, crewID)); | ||||
|         ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, plyrsStr, crewID, picTitl)); | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|  | @ -136,7 +138,7 @@ void PictureDialog::on_playerNameUpdated() | |||
|             plyrsStr.append("</a>"); | ||||
|         } | ||||
|         plyrsStr.remove(0,2); | ||||
|         ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, plyrsStr, crewID)); | ||||
|         ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, plyrsStr, crewID, picTitl)); | ||||
|     } | ||||
| } | ||||
| 
 | ||||
|  |  | |||
|  | @ -49,6 +49,7 @@ private: | |||
|     QString jsonDrawString; | ||||
|     QString windowTitleStr; | ||||
|     QStringList plyrsList; | ||||
|     QString picTitl; | ||||
|     QString crewID; | ||||
|     QString locX; | ||||
|     QString locY; | ||||
|  |  | |||
|  | @ -62,29 +62,28 @@ | |||
|      </property> | ||||
|      <item> | ||||
|       <widget class="QLabel" name="labJSON"> | ||||
|        <property name="sizePolicy"> | ||||
|         <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> | ||||
|          <horstretch>0</horstretch> | ||||
|          <verstretch>0</verstretch> | ||||
|         </sizepolicy> | ||||
|        </property> | ||||
|        <property name="text"> | ||||
|         <string><span style=" font-weight:600;">Location: </span>%1, %2, %3 <br><span style=" font-weight:600;">Players: </span>%4<br><span style=" font-weight:600;">Crew ID: </span>%5</string> | ||||
|         <string><span style=" font-weight:600;">Title: </span>%6<br> | ||||
| <span style=" font-weight:600;">Location: </span>%1, %2, %3 <br> | ||||
| <span style=" font-weight:600;">Players: </span>%4<br> | ||||
| <span style=" font-weight:600;">Crew ID: </span>%5</string> | ||||
|        </property> | ||||
|        <property name="openExternalLinks"> | ||||
|         <bool>true</bool> | ||||
|        </property> | ||||
|       </widget> | ||||
|      </item> | ||||
|      <item> | ||||
|       <spacer name="hsJSON"> | ||||
|        <property name="orientation"> | ||||
|         <enum>Qt::Horizontal</enum> | ||||
|        </property> | ||||
|        <property name="sizeHint" stdset="0"> | ||||
|         <size> | ||||
|          <width>0</width> | ||||
|          <height>0</height> | ||||
|         </size> | ||||
|        </property> | ||||
|       </spacer> | ||||
|      </item> | ||||
|      <item> | ||||
|       <widget class="QPushButton" name="cmdExport"> | ||||
|        <property name="toolTip"> | ||||
|         <string>Export picture</string> | ||||
|        </property> | ||||
|        <property name="text"> | ||||
|         <string>Export</string> | ||||
|        </property> | ||||
|  | @ -92,6 +91,9 @@ | |||
|      </item> | ||||
|      <item> | ||||
|       <widget class="QPushButton" name="cmdClose"> | ||||
|        <property name="toolTip"> | ||||
|         <string>Close</string> | ||||
|        </property> | ||||
|        <property name="text"> | ||||
|         <string>Close</string> | ||||
|        </property> | ||||
|  |  | |||
|  | @ -66,13 +66,14 @@ FORMS    += \ | |||
|     UserInterface.ui | ||||
| 
 | ||||
| TRANSLATIONS += \ | ||||
|     gta5sync_de.ts | ||||
|     res/gta5sync_de.ts | ||||
| 
 | ||||
| RESOURCES += \ | ||||
|     res/app.qrc | ||||
| 
 | ||||
| OTHER_FILES += \ | ||||
|     app.rc | ||||
| OTHER_FILES += app.rc \ | ||||
|     res/gta5sync.desktop \ | ||||
|     res/gta5sync_de.ts | ||||
| 
 | ||||
| win32: RC_FILE += app.rc | ||||
| 
 | ||||
|  | @ -100,6 +101,6 @@ isEqual(QT_MAJOR_VERSION, 4): SOURCES += qjson4/QJsonArray.cpp \ | |||
| # UNIX SYSTEM STUFF | ||||
| 
 | ||||
| unix: !macx: appfiles.path = $$(INSTALL_PATH)/share/applications | ||||
| unix: !macx: appfiles.files = $$PWD/res/5sync.desktop | ||||
| unix: !macx: appfiles.files = $$PWD/res/gta5sync.desktop | ||||
| unix: !macx: target.path = $$(INSTALL_PATH)/bin | ||||
| unix: !macx: INSTALLS += target appfiles | ||||
|  |  | |||
|  | @ -6,7 +6,6 @@ | |||
|     </qresource> | ||||
|     <qresource prefix="/img"> | ||||
|         <file>savegame.png</file> | ||||
|         <file>5sync.ico</file> | ||||
|         <file>5sync-48.png</file> | ||||
|     </qresource> | ||||
| </RCC> | ||||
|  |  | |||
							
								
								
									
										11
									
								
								res/gta5sync.desktop
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										11
									
								
								res/gta5sync.desktop
									
										
									
									
									
										Executable file
									
								
							|  | @ -0,0 +1,11 @@ | |||
| [Desktop Entry] | ||||
| Version=1.0 | ||||
| Encoding=UTF-8 | ||||
| Type=Application | ||||
| Name=gta5sync | ||||
| Comment=gta5sync | ||||
| Categories=Qt;Application;Utility; | ||||
| Exec=gta5sync | ||||
| Icon=gta5sync | ||||
| Terminal=false | ||||
| StartupNotify=false | ||||
										
											Binary file not shown.
										
									
								
							|  | @ -4,17 +4,17 @@ | |||
| <context> | ||||
|     <name>AboutDialog</name> | ||||
|     <message> | ||||
|         <location filename="AboutDialog.ui" line="14"/> | ||||
|         <location filename="../AboutDialog.ui" line="14"/> | ||||
|         <source>About gta5sync</source> | ||||
|         <translation>Über gta5sync</translation> | ||||
|     </message> | ||||
|     <message utf8="true"> | ||||
|         <location filename="AboutDialog.ui" line="59"/> | ||||
|         <location filename="../AboutDialog.ui" line="59"/> | ||||
|         <source><span style=" font-weight:600;">gta5sync</span><br/><br/>A project for viewing and sync Grand Theft Auto 5 Snapmatic Pictures and Savegames<br/><br/>Project version: %1<br/>Compiled with Qt %2<br/>Running with Qt %3<br/><br/>Copyright © <a href="https://github.com/Syping/">Syping</a> 2016<br/>gta5sync is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
 | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="AboutDialog.ui" line="104"/> | ||||
|         <location filename="../AboutDialog.ui" line="104"/> | ||||
|         <source>Close</source> | ||||
|         <translation>Schließen</translation> | ||||
|     </message> | ||||
|  | @ -22,71 +22,92 @@ | |||
| <context> | ||||
|     <name>PictureDialog</name> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.ui" line="14"/> | ||||
|         <location filename="../PictureDialog.ui" line="14"/> | ||||
|         <source>%1 - Snapmatic Picture Viewer</source> | ||||
|         <translation>%1 - Snapmatic Bildansicht</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.ui" line="66"/> | ||||
|         <source><span style=" font-weight:600;">Location: </span>%1, %2, %3 <br><span style=" font-weight:600;">Players: </span>%4<br><span style=" font-weight:600;">Crew ID: </span>%5</source> | ||||
|         <translation><span style=" font-weight:600;">Standort: </span>%1, %2, %3 <br><span style=" font-weight:600;">Spieler: </span>%4<br><span style=" font-weight:600;">Crew ID: </span>%5</translation> | ||||
|         <translation type="obsolete"><span style=" font-weight:600;">Standort: </span>%1, %2, %3 <br><span style=" font-weight:600;">Spieler: </span>%4<br><span style=" font-weight:600;">Crew ID: </span>%5</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.ui" line="89"/> | ||||
|         <source><span style=" font-weight:600;">Picture Title: </span>%6<br> | ||||
| <span style=" font-weight:600;">Location: </span>%1, %2, %3 <br> | ||||
| <span style=" font-weight:600;">Players: </span>%4<br> | ||||
| <span style=" font-weight:600;">Crew ID: </span>%5</source> | ||||
|         <translation type="obsolete"><span style=" font-weight:600;">Bildtitel: </span>%6<br> | ||||
| <span style=" font-weight:600;">Standort: </span>%1, %2, %3 <br> | ||||
| <span style=" font-weight:600;">Spieler: </span>%4<br> | ||||
| <span style=" font-weight:600;">Crew ID: </span>%5</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.ui" line="72"/> | ||||
|         <source><span style=" font-weight:600;">Title: </span>%6<br> | ||||
| <span style=" font-weight:600;">Location: </span>%1, %2, %3 <br> | ||||
| <span style=" font-weight:600;">Players: </span>%4<br> | ||||
| <span style=" font-weight:600;">Crew ID: </span>%5</source> | ||||
|         <translation><span style=" font-weight:600;">Titel: </span>%6<br> | ||||
| <span style=" font-weight:600;">Standort: </span>%1, %2, %3 <br> | ||||
| <span style=" font-weight:600;">Spieler: </span>%4<br> | ||||
| <span style=" font-weight:600;">Crew ID: </span>%5</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.ui" line="88"/> | ||||
|         <source>Export</source> | ||||
|         <translation>Exportieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.ui" line="96"/> | ||||
|         <location filename="../PictureDialog.ui" line="95"/> | ||||
|         <location filename="../PictureDialog.ui" line="98"/> | ||||
|         <source>Close</source> | ||||
|         <translation>Schließen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.cpp" line="61"/> | ||||
|         <location filename="PictureDialog.cpp" line="107"/> | ||||
|         <location filename="../PictureDialog.cpp" line="63"/> | ||||
|         <location filename="../PictureDialog.cpp" line="110"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>Snapmatic Bildansicht</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.cpp" line="61"/> | ||||
|         <location filename="PictureDialog.cpp" line="107"/> | ||||
|         <location filename="../PictureDialog.cpp" line="63"/> | ||||
|         <location filename="../PictureDialog.cpp" line="110"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>Fehlgeschlagen bei %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.cpp" line="96"/> | ||||
|         <location filename="PictureDialog.cpp" line="106"/> | ||||
|         <location filename="../PictureDialog.cpp" line="99"/> | ||||
|         <location filename="../PictureDialog.cpp" line="109"/> | ||||
|         <source>No player</source> | ||||
|         <translation>Keine Spieler</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.cpp" line="99"/> | ||||
|         <location filename="PictureDialog.cpp" line="106"/> | ||||
|         <location filename="../PictureDialog.cpp" line="102"/> | ||||
|         <location filename="../PictureDialog.cpp" line="109"/> | ||||
|         <source>No crew</source> | ||||
|         <translation>Keine Crew</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.cpp" line="163"/> | ||||
|         <location filename="../PictureDialog.cpp" line="167"/> | ||||
|         <source>JPEG picture (*.jpg)</source> | ||||
|         <translation>JPEG Bild (*.jpg)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.cpp" line="164"/> | ||||
|         <location filename="../PictureDialog.cpp" line="168"/> | ||||
|         <source>Portable Network Graphics (*.png)</source> | ||||
|         <translation>Portable Network Graphics (*.png)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.cpp" line="234"/> | ||||
|         <location filename="../PictureDialog.cpp" line="267"/> | ||||
|         <source>Overwrite %1 with current Snapmatic picture?</source> | ||||
|         <translation>Überschreibe %1 mit aktuellen Snapmatic Bild?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.cpp" line="238"/> | ||||
|         <location filename="../PictureDialog.cpp" line="271"/> | ||||
|         <source>Failed to overwrite %1 with current Snapmatic picture</source> | ||||
|         <translation>Fehlgeschlagen beim Überschreiben von %1 mit aktuellen Snapmatic Bild</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.cpp" line="252"/> | ||||
|         <location filename="../PictureDialog.cpp" line="285"/> | ||||
|         <source>Failed to save current picture</source> | ||||
|         <translation>Fehlgeschlagen beim Speichern vom aktuellen Bild</translation> | ||||
|     </message> | ||||
|  | @ -95,11 +116,12 @@ | |||
|         <translation type="obsolete">JPEG Bild (*.jpg);;Portable Network Graphics (*.png)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.cpp" line="159"/> | ||||
|         <location filename="PictureDialog.cpp" line="234"/> | ||||
|         <location filename="PictureDialog.cpp" line="238"/> | ||||
|         <location filename="PictureDialog.cpp" line="252"/> | ||||
|         <location filename="PictureDialog.cpp" line="258"/> | ||||
|         <location filename="../PictureDialog.ui" line="85"/> | ||||
|         <location filename="../PictureDialog.cpp" line="163"/> | ||||
|         <location filename="../PictureDialog.cpp" line="267"/> | ||||
|         <location filename="../PictureDialog.cpp" line="271"/> | ||||
|         <location filename="../PictureDialog.cpp" line="285"/> | ||||
|         <location filename="../PictureDialog.cpp" line="291"/> | ||||
|         <source>Export picture</source> | ||||
|         <translation>Bild exportieren</translation> | ||||
|     </message> | ||||
|  | @ -112,7 +134,7 @@ | |||
|         <translation type="obsolete">Beim Speichern des Bildes ist ein Fehler aufgetreten</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="PictureDialog.cpp" line="258"/> | ||||
|         <location filename="../PictureDialog.cpp" line="291"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>Keine gültige Datei wurde ausgewählt</translation> | ||||
|     </message> | ||||
|  | @ -120,27 +142,28 @@ | |||
| <context> | ||||
|     <name>ProfileInterface</name> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.ui" line="14"/> | ||||
|         <location filename="../ProfileInterface.ui" line="14"/> | ||||
|         <source>Profile Interface</source> | ||||
|         <translation>Profil Interface</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.ui" line="52"/> | ||||
|         <location filename="../ProfileInterface.ui" line="52"/> | ||||
|         <source>Loading file %1 of %2 files</source> | ||||
|         <oldsource>Loading %1 files of %2 files</oldsource> | ||||
|         <translation>Lade Datei %1 von %2 Dateien</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.ui" line="179"/> | ||||
|         <location filename="ProfileInterface.cpp" line="163"/> | ||||
|         <location filename="ProfileInterface.cpp" line="221"/> | ||||
|         <location filename="ProfileInterface.cpp" line="234"/> | ||||
|         <location filename="ProfileInterface.cpp" line="241"/> | ||||
|         <location filename="ProfileInterface.cpp" line="247"/> | ||||
|         <location filename="ProfileInterface.cpp" line="262"/> | ||||
|         <location filename="ProfileInterface.cpp" line="272"/> | ||||
|         <location filename="ProfileInterface.cpp" line="308"/> | ||||
|         <location filename="ProfileInterface.cpp" line="314"/> | ||||
|         <location filename="../ProfileInterface.ui" line="179"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="164"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="236"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="271"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="277"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="292"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="302"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="338"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="344"/> | ||||
|         <source>Import copy</source> | ||||
|         <translation>Kopie importieren</translation> | ||||
|     </message> | ||||
|  | @ -153,68 +176,73 @@ | |||
|         <translation type="obsolete">Ansehen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.ui" line="189"/> | ||||
|         <location filename="../ProfileInterface.ui" line="189"/> | ||||
|         <source>Close Profile</source> | ||||
|         <translation>Profil schließen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.cpp" line="87"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="87"/> | ||||
|         <source>Loading...</source> | ||||
|         <translation>Lade...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.cpp" line="167"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="168"/> | ||||
|         <source>All profile files (SGTA* PGTA*)</source> | ||||
|         <translation>Alle Profildateien (SGTA* PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.cpp" line="168"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="169"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>Spielstanddateien (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.cpp" line="169"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="170"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation>Snapmatic Bilder (PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.cpp" line="170"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="171"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>Alle Dateien (**)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.cpp" line="221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="221"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Fehler beim Lesen vom Snapmatic Bild</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.cpp" line="234"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="236"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>Fehler beim Lesen von Spielstanddatei</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.cpp" line="241"/> | ||||
|         <location filename="ProfileInterface.cpp" line="247"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="264"/> | ||||
|         <source>Can't import %1 because of not valid file format</source> | ||||
|         <translation>Kann %1 nicht importieren weil das Dateiformat nicht gültig ist</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="271"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="277"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>Keine gültige Datei wurde ausgewählt</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.cpp" line="262"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="292"/> | ||||
|         <source>Failed to import copy of Snapmatic picture because the file not begin with PGTA</source> | ||||
|         <translation>Fehlgeschlagenen beim Import vom Snapmatic Bild weil die Datei nicht mit PGTA begint </translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.cpp" line="272"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="302"/> | ||||
|         <source>Failed to import copy of Snapmatic picture because the copy failed</source> | ||||
|         <translation>Fehlgeschlagenen beim Import vom Snapmatic Bild weil kopieren fehlgeschlagen ist</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.cpp" line="308"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="338"/> | ||||
|         <source>Failed to import copy of Savegame file because the copy failed</source> | ||||
|         <translation>Fehlgeschlagenen beim Import vom Spielstand weil kopieren fehlgeschlagen ist</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="ProfileInterface.cpp" line="314"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="344"/> | ||||
|         <source>Failed to import copy of Savegame file because no free Savegame slot left</source> | ||||
|         <translation>Fehlgeschlagenen beim Import vom Spielstand weil kein Spielstandslot mehr übrig ist</translation> | ||||
|     </message> | ||||
|  | @ -222,23 +250,23 @@ | |||
| <context> | ||||
|     <name>SavegameDialog</name> | ||||
|     <message> | ||||
|         <location filename="SavegameDialog.ui" line="14"/> | ||||
|         <location filename="SavegameDialog.cpp" line="24"/> | ||||
|         <location filename="../SavegameDialog.ui" line="14"/> | ||||
|         <location filename="../SavegameDialog.cpp" line="24"/> | ||||
|         <source>Savegame Viewer</source> | ||||
|         <translation>Spielstandanzeiger</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameDialog.ui" line="20"/> | ||||
|         <location filename="../SavegameDialog.ui" line="20"/> | ||||
|         <source><span style=" font-weight:600;">Savegame</span><br><br>%1</source> | ||||
|         <translation><span style=" font-weight:600;">Spielstand</span><br><br>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameDialog.ui" line="58"/> | ||||
|         <location filename="../SavegameDialog.ui" line="58"/> | ||||
|         <source>Close</source> | ||||
|         <translation>Schließen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameDialog.cpp" line="24"/> | ||||
|         <location filename="../SavegameDialog.cpp" line="24"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>Fehlgeschlagen bei %1</translation> | ||||
|     </message> | ||||
|  | @ -246,72 +274,72 @@ | |||
| <context> | ||||
|     <name>SavegameWidget</name> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.ui" line="14"/> | ||||
|         <location filename="../SavegameWidget.ui" line="14"/> | ||||
|         <source>Savegame Widget</source> | ||||
|         <translation>Spielstand Widget</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.ui" line="36"/> | ||||
|         <location filename="../SavegameWidget.ui" line="36"/> | ||||
|         <source>The Third Way (100%) - 00/00/00 00:00:00</source> | ||||
|         <translation>The Third Way (100%) - 00/00/00 00:00:00</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.ui" line="46"/> | ||||
|         <location filename="../SavegameWidget.ui" line="46"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>Kopieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.ui" line="56"/> | ||||
|         <location filename="../SavegameWidget.ui" line="56"/> | ||||
|         <source>Delete</source> | ||||
|         <translation>Löschen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.cpp" line="55"/> | ||||
|         <location filename="SavegameWidget.cpp" line="68"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="55"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="68"/> | ||||
|         <source>Delete savegame</source> | ||||
|         <translation>Savegame löschen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.cpp" line="55"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="55"/> | ||||
|         <source>Are you sure to delete %1 from your savegames?</source> | ||||
|         <translation>Bist du sicher %1 von deinen Spielständen zu löschen?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.cpp" line="68"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="68"/> | ||||
|         <source>Failed at deleting %1 from your savegames</source> | ||||
|         <translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.cpp" line="87"/> | ||||
|         <location filename="SavegameWidget.cpp" line="132"/> | ||||
|         <location filename="SavegameWidget.cpp" line="136"/> | ||||
|         <location filename="SavegameWidget.cpp" line="149"/> | ||||
|         <location filename="SavegameWidget.cpp" line="155"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="88"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="133"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="137"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="150"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="156"/> | ||||
|         <source>Copy savegame</source> | ||||
|         <translation>Spielstand kopieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.cpp" line="90"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="91"/> | ||||
|         <source>Savegame files (SGTA*)</source> | ||||
|         <translation>Spielstanddateien (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.cpp" line="91"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="92"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>Alle Dateien (**)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.cpp" line="132"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="133"/> | ||||
|         <source>Overwrite %1 with current savegame?</source> | ||||
|         <translation>Überschreibe %1 mit aktuellen Spielstand?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.cpp" line="136"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="137"/> | ||||
|         <source>Failed to overwrite %1 with current savegame</source> | ||||
|         <translation>Fehlgeschlagen beim Überschreiben von %1 mit aktuellen Spielstand </translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.cpp" line="149"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="150"/> | ||||
|         <source>Failed to copy current savegame</source> | ||||
|         <translation>Fehlgeschlagen beim Kopieren vom Spielstand</translation> | ||||
|     </message> | ||||
|  | @ -320,7 +348,7 @@ | |||
|         <translation type="obsolete">Beim Kopieren vom Spielstand ist ein Fehler aufgetreten</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SavegameWidget.cpp" line="155"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="156"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>Keine gültige Datei wurde ausgewählt</translation> | ||||
|     </message> | ||||
|  | @ -336,33 +364,33 @@ | |||
| <context> | ||||
|     <name>SnapmaticWidget</name> | ||||
|     <message> | ||||
|         <location filename="SnapmaticWidget.ui" line="14"/> | ||||
|         <location filename="../SnapmaticWidget.ui" line="14"/> | ||||
|         <source>Snapmatic Widget</source> | ||||
|         <translation>Snapmatic Widget</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SnapmaticWidget.ui" line="51"/> | ||||
|         <location filename="../SnapmaticWidget.ui" line="51"/> | ||||
|         <source>PHOTO - 00/00/00 00:00:00</source> | ||||
|         <translation>FOTO - 00/00/00 00:00:00</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SnapmaticWidget.ui" line="61"/> | ||||
|         <location filename="../SnapmaticWidget.ui" line="61"/> | ||||
|         <source>View</source> | ||||
|         <translation>Ansehen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SnapmaticWidget.ui" line="71"/> | ||||
|         <location filename="../SnapmaticWidget.ui" line="71"/> | ||||
|         <source>Delete</source> | ||||
|         <translation>Löschen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SnapmaticWidget.cpp" line="75"/> | ||||
|         <location filename="SnapmaticWidget.cpp" line="88"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="75"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="88"/> | ||||
|         <source>Delete picture</source> | ||||
|         <translation>Bild löschen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SnapmaticWidget.cpp" line="75"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="75"/> | ||||
|         <source>Are you sure to delete %1 from your Snapmatic pictures?</source> | ||||
|         <translation>Bist du sicher %1 von deinen Snapmatic Bilder zu löschen?</translation> | ||||
|     </message> | ||||
|  | @ -371,7 +399,7 @@ | |||
|         <translation type="obsolete">Bist du sicher %1 von deinen Snapmatic Bilder zu löschen?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="SnapmaticWidget.cpp" line="88"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="88"/> | ||||
|         <source>Failed at deleting %1 from your Snapmatic pictures</source> | ||||
|         <translation>Fehlgeschlagen beim Löschen %1 von deinen Snapmatic Bildern</translation> | ||||
|     </message> | ||||
|  | @ -387,33 +415,33 @@ | |||
|         <translation type="obsolete">GTA V Sync</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="UserInterface.ui" line="20"/> | ||||
|         <location filename="../UserInterface.ui" line="20"/> | ||||
|         <source>gta5sync - %1</source> | ||||
|         <translation>gta5sync - %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="UserInterface.ui" line="86"/> | ||||
|         <location filename="../UserInterface.ui" line="86"/> | ||||
|         <source>File</source> | ||||
|         <translation>Datei</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="UserInterface.ui" line="93"/> | ||||
|         <location filename="../UserInterface.ui" line="93"/> | ||||
|         <source>Help</source> | ||||
|         <translation>Hilfe</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="UserInterface.ui" line="102"/> | ||||
|         <location filename="../UserInterface.ui" line="102"/> | ||||
|         <source>About gta5sync</source> | ||||
|         <translation>Über gta5sync</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="UserInterface.ui" line="105"/> | ||||
|         <location filename="../UserInterface.ui" line="105"/> | ||||
|         <source>Ctrl+A</source> | ||||
|         <translation>Strg+A</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="UserInterface.ui" line="110"/> | ||||
|         <location filename="UserInterface.cpp" line="117"/> | ||||
|         <location filename="../UserInterface.ui" line="110"/> | ||||
|         <location filename="../UserInterface.cpp" line="117"/> | ||||
|         <source>Close</source> | ||||
|         <translation>Schließen</translation> | ||||
|     </message> | ||||
|  | @ -422,30 +450,30 @@ | |||
|         <translation type="obsolete">Schließen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="UserInterface.ui" line="113"/> | ||||
|         <location filename="../UserInterface.ui" line="113"/> | ||||
|         <source>Ctrl+Q</source> | ||||
|         <translation>Strg+Q</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="UserInterface.ui" line="59"/> | ||||
|         <location filename="UserInterface.ui" line="118"/> | ||||
|         <location filename="UserInterface.cpp" line="45"/> | ||||
|         <location filename="UserInterface.cpp" line="152"/> | ||||
|         <location filename="../UserInterface.ui" line="59"/> | ||||
|         <location filename="../UserInterface.ui" line="118"/> | ||||
|         <location filename="../UserInterface.cpp" line="45"/> | ||||
|         <location filename="../UserInterface.cpp" line="152"/> | ||||
|         <source>Select profile</source> | ||||
|         <translation>Profil auswählen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="UserInterface.ui" line="121"/> | ||||
|         <location filename="../UserInterface.ui" line="121"/> | ||||
|         <source>Ctrl+P</source> | ||||
|         <translation>Strg+P</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="UserInterface.cpp" line="70"/> | ||||
|         <location filename="../UserInterface.cpp" line="70"/> | ||||
|         <source>GTA V Folder not found!</source> | ||||
|         <translation>GTA V Ordner nicht gefunden!</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="UserInterface.cpp" line="70"/> | ||||
|         <location filename="../UserInterface.cpp" line="70"/> | ||||
|         <source>gta5sync</source> | ||||
|         <translation>gta5sync</translation> | ||||
|     </message> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue