add project build time

This commit is contained in:
Rafael 2016-04-27 23:01:53 +02:00
parent a8ab6ce298
commit 0ba7638e17
5 changed files with 107 additions and 67 deletions

View File

@ -30,7 +30,7 @@ AboutDialog::AboutDialog(QWidget *parent) :
QString appVersion = qApp->applicationVersion(); QString appVersion = qApp->applicationVersion();
QString buildType = GTA5SYNC_BUILDTYPE; QString buildType = GTA5SYNC_BUILDTYPE;
buildType.replace("_", " "); buildType.replace("_", " ");
ui->labAbout->setText(aboutStr.arg(appVersion % " (" % buildType % ")", QT_VERSION_STR, qVersion())); ui->labAbout->setText(aboutStr.arg(appVersion % " (" % buildType % ")", QT_VERSION_STR, qVersion(), __DATE__, __TIME__));
} }
AboutDialog::~AboutDialog() AboutDialog::~AboutDialog()

View File

@ -7,7 +7,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>375</width> <width>375</width>
<height>250</height> <height>260</height>
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
@ -37,7 +37,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>357</width> <width>357</width>
<height>201</height> <height>211</height>
</rect> </rect>
</property> </property>
<layout class="QVBoxLayout" name="vlAboutContent"> <layout class="QVBoxLayout" name="vlAboutContent">
@ -62,7 +62,16 @@
</sizepolicy> </sizepolicy>
</property> </property>
<property name="text"> <property name="text">
<string>&lt;span style=&quot; font-weight:600;&quot;&gt;gta5sync&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;A project for viewing and sync Grand Theft Auto 5 Snapmatic Pictures and Savegames&lt;br/&gt;&lt;br/&gt;Project version: %1&lt;br/&gt;Compiled with Qt %2&lt;br/&gt;Running with Qt %3&lt;br/&gt;&lt;br/&gt;Copyright &amp;copy; &lt;a href=&quot;https://github.com/Syping/&quot;&gt;Syping&lt;/a&gt; 2016&lt;br/&gt;gta5sync is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</string> <string>&lt;span style=&quot; font-weight:600;&quot;&gt;gta5sync&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt;
A project for viewing and sync Grand Theft Auto 5 Snapmatic Pictures and Savegames&lt;br/&gt;
&lt;br/&gt;
Project version: %1&lt;br/&gt;
Project build: %4, %5&lt;br/&gt;
Compiled with Qt %2&lt;br/&gt;
Running with Qt %3&lt;br/&gt;
&lt;br/&gt;
Copyright &amp;copy; &lt;a href=&quot;https://github.com/Syping/&quot;&gt;Syping&lt;/a&gt; 2016&lt;br/&gt;gta5sync is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>

View File

@ -9,7 +9,21 @@
<translation>О программе gta5sync</translation> <translation>О программе gta5sync</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.ui" line="100"/> <location filename="../AboutDialog.ui" line="65"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;gta5sync&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt;
A project for viewing and sync Grand Theft Auto 5 Snapmatic Pictures and Savegames&lt;br/&gt;
&lt;br/&gt;
Project version: %1&lt;br/&gt;
Project build: %4, %5&lt;br/&gt;
Compiled with Qt %2&lt;br/&gt;
Running with Qt %3&lt;br/&gt;
&lt;br/&gt;
Copyright &amp;copy; &lt;a href=&quot;https://github.com/Syping/&quot;&gt;Syping&lt;/a&gt; 2016&lt;br/&gt;gta5sync is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../AboutDialog.ui" line="109"/>
<source>&amp;Close</source> <source>&amp;Close</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -21,11 +35,6 @@
<source>Close</source> <source>Close</source>
<translation type="obsolete">Закрыть</translation> <translation type="obsolete">Закрыть</translation>
</message> </message>
<message>
<location filename="../AboutDialog.ui" line="65"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;gta5sync&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;A project for viewing and sync Grand Theft Auto 5 Snapmatic Pictures and Savegames&lt;br/&gt;&lt;br/&gt;Project version: %1&lt;br/&gt;Compiled with Qt %2&lt;br/&gt;Running with Qt %3&lt;br/&gt;&lt;br/&gt;Copyright &amp;copy; &lt;a href=&quot;https://github.com/Syping/&quot;&gt;Syping&lt;/a&gt; 2016&lt;br/&gt;gta5sync is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>ExportDialog</name> <name>ExportDialog</name>
@ -291,7 +300,7 @@
<message> <message>
<location filename="../PictureDialog.ui" line="132"/> <location filename="../PictureDialog.ui" line="132"/>
<location filename="../PictureCopy.cpp" line="49"/> <location filename="../PictureCopy.cpp" line="49"/>
<location filename="../PictureExport.cpp" line="50"/> <location filename="../PictureExport.cpp" line="87"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -353,31 +362,31 @@
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureExport.cpp" line="49"/> <location filename="../PictureExport.cpp" line="86"/>
<source>Export as JPG picture...</source> <source>Export as JPG picture...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureExport.cpp" line="53"/> <location filename="../PictureExport.cpp" line="90"/>
<source>JPEG picture (*.jpg)</source> <source>JPEG picture (*.jpg)</source>
<translation>Картинка JPEG (*.jpg)</translation> <translation>Картинка JPEG (*.jpg)</translation>
</message> </message>
<message> <message>
<location filename="../PictureExport.cpp" line="54"/> <location filename="../PictureExport.cpp" line="91"/>
<source>Portable Network Graphics (*.png)</source> <source>Portable Network Graphics (*.png)</source>
<translation>Картинка Portable Network Graphics (*.png)</translation> <translation>Картинка Portable Network Graphics (*.png)</translation>
</message> </message>
<message> <message>
<location filename="../PictureExport.cpp" line="107"/> <location filename="../PictureExport.cpp" line="141"/>
<location filename="../PictureExport.cpp" line="111"/> <location filename="../PictureExport.cpp" line="145"/>
<location filename="../PictureExport.cpp" line="125"/> <location filename="../PictureExport.cpp" line="179"/>
<location filename="../PictureExport.cpp" line="131"/> <location filename="../PictureExport.cpp" line="185"/>
<source>Export as JPG picture</source> <source>Export as JPG picture</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureCopy.cpp" line="72"/> <location filename="../PictureCopy.cpp" line="72"/>
<location filename="../PictureExport.cpp" line="107"/> <location filename="../PictureExport.cpp" line="141"/>
<source>Overwrite %1 with current Snapmatic picture?</source> <source>Overwrite %1 with current Snapmatic picture?</source>
<translation>Перезаписать %1 текущей картинкой Snapmatic?</translation> <translation>Перезаписать %1 текущей картинкой Snapmatic?</translation>
</message> </message>
@ -391,18 +400,18 @@
</message> </message>
<message> <message>
<location filename="../PictureCopy.cpp" line="76"/> <location filename="../PictureCopy.cpp" line="76"/>
<location filename="../PictureExport.cpp" line="111"/> <location filename="../PictureExport.cpp" line="145"/>
<source>Failed to overwrite %1 with current Snapmatic picture</source> <source>Failed to overwrite %1 with current Snapmatic picture</source>
<translation>Не удалось перезаписать %1 картинкой Snapmatic</translation> <translation>Не удалось перезаписать %1 картинкой Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../PictureExport.cpp" line="125"/> <location filename="../PictureExport.cpp" line="179"/>
<source>Failed to export current Snapmatic picture</source> <source>Failed to export current Snapmatic picture</source>
<translation>Не удалось экспортировать текущую картинку Snapmatic</translation> <translation>Не удалось экспортировать текущую картинку Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../PictureCopy.cpp" line="95"/> <location filename="../PictureCopy.cpp" line="95"/>
<location filename="../PictureExport.cpp" line="131"/> <location filename="../PictureExport.cpp" line="185"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Выбранный файл неверен</translation> <translation>Выбранный файл неверен</translation>
</message> </message>
@ -659,9 +668,9 @@
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ExportThread.cpp" line="50"/> <location filename="../ExportThread.cpp" line="89"/>
<location filename="../ExportThread.cpp" line="65"/> <location filename="../ExportThread.cpp" line="126"/>
<location filename="../ExportThread.cpp" line="86"/> <location filename="../ExportThread.cpp" line="147"/>
<source>Export file %1 of %2 files</source> <source>Export file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>

Binary file not shown.

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS> <!DOCTYPE TS>
<TS version="2.1" language="de_DE"> <TS version="2.0" language="de_DE">
<context> <context>
<name>AboutDialog</name> <name>AboutDialog</name>
<message> <message>
@ -9,7 +9,30 @@
<translation>Über gta5sync</translation> <translation>Über gta5sync</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.ui" line="100"/> <location filename="../AboutDialog.ui" line="65"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;gta5sync&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt;
A project for viewing and sync Grand Theft Auto 5 Snapmatic Pictures and Savegames&lt;br/&gt;
&lt;br/&gt;
Project version: %1&lt;br/&gt;
Project build: %4, %5&lt;br/&gt;
Compiled with Qt %2&lt;br/&gt;
Running with Qt %3&lt;br/&gt;
&lt;br/&gt;
Copyright &amp;copy; &lt;a href=&quot;https://github.com/Syping/&quot;&gt;Syping&lt;/a&gt; 2016&lt;br/&gt;gta5sync is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;gta5sync&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt;
Ein Projekt zum ansehen und synchronisieren von Grand Theft Auto 5 Snapmatic Bilder und Spielständen&lt;br/&gt;
&lt;br/&gt;
Projektversion: %1&lt;br/&gt;
Projektbau: %4, %5&lt;br/&gt;
Gebaut mit Qt %2&lt;br/&gt;
Läuft auf Qt %3&lt;br/&gt;
&lt;br/&gt;
Copyright &amp;copy; &lt;a href=&quot;https://github.com/Syping/&quot;&gt;Syping&lt;/a&gt; 2016&lt;br/&gt;gta5sync is lizenziert unter &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation>
</message>
<message>
<location filename="../AboutDialog.ui" line="109"/>
<source>&amp;Close</source> <source>&amp;Close</source>
<translation>S&amp;chließen</translation> <translation>S&amp;chließen</translation>
</message> </message>
@ -26,7 +49,6 @@
<translation type="obsolete">Schließen</translation> <translation type="obsolete">Schließen</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.ui" line="65"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;gta5sync&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;A project for viewing and sync Grand Theft Auto 5 Snapmatic Pictures and Savegames&lt;br/&gt;&lt;br/&gt;Project version: %1&lt;br/&gt;Compiled with Qt %2&lt;br/&gt;Running with Qt %3&lt;br/&gt;&lt;br/&gt;Copyright &amp;copy; &lt;a href=&quot;https://github.com/Syping/&quot;&gt;Syping&lt;/a&gt; 2016&lt;br/&gt;gta5sync is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source> <source>&lt;span style=&quot; font-weight:600;&quot;&gt;gta5sync&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;A project for viewing and sync Grand Theft Auto 5 Snapmatic Pictures and Savegames&lt;br/&gt;&lt;br/&gt;Project version: %1&lt;br/&gt;Compiled with Qt %2&lt;br/&gt;Running with Qt %3&lt;br/&gt;&lt;br/&gt;Copyright &amp;copy; &lt;a href=&quot;https://github.com/Syping/&quot;&gt;Syping&lt;/a&gt; 2016&lt;br/&gt;gta5sync is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;gta5sync&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;Ein Projekt zum ansehen und synchronisieren von Grand Theft Auto 5 Snapmatic Bilder und Spielständen&lt;br/&gt;&lt;br/&gt;Projektversion: %1&lt;br/&gt;Gebaut mit Qt %2&lt;br/&gt;Läuft auf Qt %3&lt;br/&gt;&lt;br/&gt;Copyright &amp;copy; &lt;a href=&quot;https://github.com/Syping/&quot;&gt;Syping&lt;/a&gt; 2016&lt;br/&gt;gta5sync is lizenziert unter &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation> <translation>&lt;span style=&quot; font-weight:600;&quot;&gt;gta5sync&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;Ein Projekt zum ansehen und synchronisieren von Grand Theft Auto 5 Snapmatic Bilder und Spielständen&lt;br/&gt;&lt;br/&gt;Projektversion: %1&lt;br/&gt;Gebaut mit Qt %2&lt;br/&gt;Läuft auf Qt %3&lt;br/&gt;&lt;br/&gt;Copyright &amp;copy; &lt;a href=&quot;https://github.com/Syping/&quot;&gt;Syping&lt;/a&gt; 2016&lt;br/&gt;gta5sync is lizenziert unter &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation>
</message> </message>
@ -40,7 +62,7 @@
</message> </message>
<message> <message>
<source>Format</source> <source>Format</source>
<translation type="vanished">Format</translation> <translation>Format</translation>
</message> </message>
<message> <message>
<location filename="../ExportDialog.ui" line="48"/> <location filename="../ExportDialog.ui" line="48"/>
@ -54,7 +76,7 @@
</message> </message>
<message> <message>
<source>Resolution</source> <source>Resolution</source>
<translation type="vanished">Auflösung</translation> <translation>Auflösung</translation>
</message> </message>
<message> <message>
<location filename="../ExportDialog.ui" line="42"/> <location filename="../ExportDialog.ui" line="42"/>
@ -106,11 +128,11 @@
<name>OptionsDialog</name> <name>OptionsDialog</name>
<message> <message>
<source>Options</source> <source>Options</source>
<translation type="vanished">Optionen</translation> <translation>Optionen</translation>
</message> </message>
<message> <message>
<source>gta5sync - Options</source> <source>gta5sync - Options</source>
<translation type="vanished">gta5sync - Optionen</translation> <translation>gta5sync - Optionen</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="14"/> <location filename="../OptionsDialog.ui" line="14"/>
@ -159,11 +181,11 @@
</message> </message>
<message> <message>
<source>Default Size: %1x%2</source> <source>Default Size: %1x%2</source>
<translation type="vanished">Standard Größe: %1x%2</translation> <translation>Standard Größe: %1x%2</translation>
</message> </message>
<message> <message>
<source>Desktop Size: %1x%2</source> <source>Desktop Size: %1x%2</source>
<translation type="vanished">Desktop Größe: %1x%2</translation> <translation>Desktop Größe: %1x%2</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="114"/> <location filename="../OptionsDialog.ui" line="114"/>
@ -172,7 +194,7 @@
</message> </message>
<message> <message>
<source>Custom Size</source> <source>Custom Size</source>
<translation type="vanished">Eigene Größe</translation> <translation>Eigene Größe</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="104"/> <location filename="../OptionsDialog.ui" line="104"/>
@ -256,7 +278,7 @@
<message> <message>
<source>%1 (%2 if available) [sys]</source> <source>%1 (%2 if available) [sys]</source>
<comment>System like PC System = %1, System Language like Deutsch = %2</comment> <comment>System like PC System = %1, System Language like Deutsch = %2</comment>
<translation type="vanished">%1 (%2 wenn verfügbar) [sys]</translation> <translation>%1 (%2 wenn verfügbar) [sys]</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.cpp" line="104"/> <location filename="../OptionsDialog.cpp" line="104"/>
@ -304,7 +326,7 @@
</message> </message>
<message> <message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4&lt;br/&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Crew ID: &lt;/span&gt;%5&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source> <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4&lt;br/&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Crew ID: &lt;/span&gt;%5&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="vanished">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Titel: &lt;/span&gt;%6&lt;br/&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Standort: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Spieler: &lt;/span&gt;%4&lt;br/&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Crew ID: &lt;/span&gt;%5&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation> <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Titel: &lt;/span&gt;%6&lt;br/&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Standort: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Spieler: &lt;/span&gt;%4&lt;br/&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Crew ID: &lt;/span&gt;%5&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="81"/> <location filename="../PictureDialog.ui" line="81"/>
@ -320,7 +342,7 @@
<message> <message>
<location filename="../PictureDialog.ui" line="132"/> <location filename="../PictureDialog.ui" line="132"/>
<location filename="../PictureCopy.cpp" line="49"/> <location filename="../PictureCopy.cpp" line="49"/>
<location filename="../PictureExport.cpp" line="50"/> <location filename="../PictureExport.cpp" line="87"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exportieren</translation> <translation>&amp;Exportieren</translation>
</message> </message>
@ -348,7 +370,7 @@
&lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%1, %2, %3 &lt;br&gt; &lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%1, %2, %3 &lt;br&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4&lt;br&gt; &lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4&lt;br&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Crew ID: &lt;/span&gt;%5</source> &lt;span style=&quot; font-weight:600;&quot;&gt;Crew ID: &lt;/span&gt;%5</source>
<translation type="vanished">&lt;span style=&quot; font-weight:600;&quot;&gt;Titel: &lt;/span&gt;%6&lt;br&gt; <translation>&lt;span style=&quot; font-weight:600;&quot;&gt;Titel: &lt;/span&gt;%6&lt;br&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Standort: &lt;/span&gt;%1, %2, %3 &lt;br&gt; &lt;span style=&quot; font-weight:600;&quot;&gt;Standort: &lt;/span&gt;%1, %2, %3 &lt;br&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Spieler: &lt;/span&gt;%4&lt;br&gt; &lt;span style=&quot; font-weight:600;&quot;&gt;Spieler: &lt;/span&gt;%4&lt;br&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Crew ID: &lt;/span&gt;%5</translation> &lt;span style=&quot; font-weight:600;&quot;&gt;Crew ID: &lt;/span&gt;%5</translation>
@ -410,31 +432,31 @@
<translation type="obsolete">Exportiere Bild...</translation> <translation type="obsolete">Exportiere Bild...</translation>
</message> </message>
<message> <message>
<location filename="../PictureExport.cpp" line="49"/> <location filename="../PictureExport.cpp" line="86"/>
<source>Export as JPG picture...</source> <source>Export as JPG picture...</source>
<translation>Exportiere als JPG Bild...</translation> <translation>Exportiere als JPG Bild...</translation>
</message> </message>
<message> <message>
<location filename="../PictureExport.cpp" line="53"/> <location filename="../PictureExport.cpp" line="90"/>
<source>JPEG picture (*.jpg)</source> <source>JPEG picture (*.jpg)</source>
<translation>JPEG Bild (*.jpg)</translation> <translation>JPEG Bild (*.jpg)</translation>
</message> </message>
<message> <message>
<location filename="../PictureExport.cpp" line="54"/> <location filename="../PictureExport.cpp" line="91"/>
<source>Portable Network Graphics (*.png)</source> <source>Portable Network Graphics (*.png)</source>
<translation>Portable Network Graphics (*.png)</translation> <translation>Portable Network Graphics (*.png)</translation>
</message> </message>
<message> <message>
<location filename="../PictureExport.cpp" line="107"/> <location filename="../PictureExport.cpp" line="141"/>
<location filename="../PictureExport.cpp" line="111"/> <location filename="../PictureExport.cpp" line="145"/>
<location filename="../PictureExport.cpp" line="125"/> <location filename="../PictureExport.cpp" line="179"/>
<location filename="../PictureExport.cpp" line="131"/> <location filename="../PictureExport.cpp" line="185"/>
<source>Export as JPG picture</source> <source>Export as JPG picture</source>
<translation>Exportiere als JPG Bild</translation> <translation>Exportiere als JPG Bild</translation>
</message> </message>
<message> <message>
<location filename="../PictureCopy.cpp" line="72"/> <location filename="../PictureCopy.cpp" line="72"/>
<location filename="../PictureExport.cpp" line="107"/> <location filename="../PictureExport.cpp" line="141"/>
<source>Overwrite %1 with current Snapmatic picture?</source> <source>Overwrite %1 with current Snapmatic picture?</source>
<translation>Überschreibe %1 mit aktuellen Snapmatic Bild?</translation> <translation>Überschreibe %1 mit aktuellen Snapmatic Bild?</translation>
</message> </message>
@ -448,12 +470,12 @@
</message> </message>
<message> <message>
<location filename="../PictureCopy.cpp" line="76"/> <location filename="../PictureCopy.cpp" line="76"/>
<location filename="../PictureExport.cpp" line="111"/> <location filename="../PictureExport.cpp" line="145"/>
<source>Failed to overwrite %1 with current Snapmatic picture</source> <source>Failed to overwrite %1 with current Snapmatic picture</source>
<translation>Fehlgeschlagen beim Überschreiben von %1 mit aktuellen Snapmatic Bild</translation> <translation>Fehlgeschlagen beim Überschreiben von %1 mit aktuellen Snapmatic Bild</translation>
</message> </message>
<message> <message>
<location filename="../PictureExport.cpp" line="125"/> <location filename="../PictureExport.cpp" line="179"/>
<source>Failed to export current Snapmatic picture</source> <source>Failed to export current Snapmatic picture</source>
<translation>Fehlgeschlagen beim Exportieren vom aktuellen Snapmatic Bild</translation> <translation>Fehlgeschlagen beim Exportieren vom aktuellen Snapmatic Bild</translation>
</message> </message>
@ -508,7 +530,7 @@
</message> </message>
<message> <message>
<location filename="../PictureCopy.cpp" line="95"/> <location filename="../PictureCopy.cpp" line="95"/>
<location filename="../PictureExport.cpp" line="131"/> <location filename="../PictureExport.cpp" line="185"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Keine gültige Datei wurde ausgewählt</translation> <translation>Keine gültige Datei wurde ausgewählt</translation>
</message> </message>
@ -694,7 +716,7 @@ JPG pictures make it possible to open the picture with a Image Viewer
GTA Snapmatic make it possible to import the picture into the game GTA Snapmatic make it possible to import the picture into the game
Export as:</source> Export as:</source>
<translation type="vanished">Exportiere Snapmatic Bilder <translation>Exportiere Snapmatic Bilder
JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen
Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren
@ -802,9 +824,9 @@ Exportieren als:</translation>
<translation type="obsolete">Aktueller Exportiervorgang: %1</translation> <translation type="obsolete">Aktueller Exportiervorgang: %1</translation>
</message> </message>
<message> <message>
<location filename="../ExportThread.cpp" line="50"/> <location filename="../ExportThread.cpp" line="89"/>
<location filename="../ExportThread.cpp" line="65"/> <location filename="../ExportThread.cpp" line="126"/>
<location filename="../ExportThread.cpp" line="86"/> <location filename="../ExportThread.cpp" line="147"/>
<source>Export file %1 of %2 files</source> <source>Export file %1 of %2 files</source>
<translation>Exportiere Datei %1 von %2 Dateien</translation> <translation>Exportiere Datei %1 von %2 Dateien</translation>
</message> </message>
@ -829,7 +851,7 @@ Exportieren als:</translation>
</message> </message>
<message> <message>
<source>Cop&amp;y</source> <source>Cop&amp;y</source>
<translation type="vanished">&amp;Kopieren</translation> <translation>&amp;Kopieren</translation>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="61"/> <location filename="../SavegameDialog.ui" line="61"/>
@ -838,11 +860,11 @@ Exportieren als:</translation>
</message> </message>
<message> <message>
<source>Copy</source> <source>Copy</source>
<translation type="vanished">Kopieren</translation> <translation>Kopieren</translation>
</message> </message>
<message> <message>
<source>Close</source> <source>Close</source>
<translation type="vanished">Schließen</translation> <translation>Schließen</translation>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.cpp" line="24"/> <location filename="../SavegameDialog.cpp" line="24"/>
@ -874,7 +896,7 @@ Exportieren als:</translation>
</message> </message>
<message> <message>
<source>Copy</source> <source>Copy</source>
<translation type="vanished">Kopieren</translation> <translation>Kopieren</translation>
</message> </message>
<message> <message>
<location filename="../SavegameWidget.ui" line="103"/> <location filename="../SavegameWidget.ui" line="103"/>
@ -1351,7 +1373,7 @@ Exportieren als:</translation>
</message> </message>
<message> <message>
<source>Select &amp;Profile</source> <source>Select &amp;Profile</source>
<translation type="vanished">&amp;Profil auswählen</translation> <translation>&amp;Profil auswählen</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="176"/> <location filename="../UserInterface.ui" line="176"/>
@ -1360,7 +1382,7 @@ Exportieren als:</translation>
</message> </message>
<message> <message>
<source>&amp;Options</source> <source>&amp;Options</source>
<translation type="vanished">&amp;Optionen</translation> <translation>&amp;Optionen</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="207"/> <location filename="../UserInterface.ui" line="207"/>
@ -1389,7 +1411,7 @@ Exportieren als:</translation>
</message> </message>
<message> <message>
<source>Ctrl+R</source> <source>Ctrl+R</source>
<translation type="vanished">Strg+R</translation> <translation>Strg+R</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="259"/> <location filename="../UserInterface.ui" line="259"/>
@ -1429,7 +1451,7 @@ Exportieren als:</translation>
</message> </message>
<message> <message>
<source>Import</source> <source>Import</source>
<translation type="vanished">Importieren</translation> <translation>Importieren</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="355"/> <location filename="../UserInterface.cpp" line="355"/>
@ -1446,15 +1468,15 @@ Exportieren als:</translation>
</message> </message>
<message> <message>
<source>Change GTA V &amp;Folder</source> <source>Change GTA V &amp;Folder</source>
<translation type="vanished">GTA V &amp;Ordner ändern</translation> <translation>GTA V &amp;Ordner ändern</translation>
</message> </message>
<message> <message>
<source>gta5sync</source> <source>gta5sync</source>
<translation type="vanished">gta5sync</translation> <translation>gta5sync</translation>
</message> </message>
<message> <message>
<source>Grand Theft Auto V Folder not found!</source> <source>Grand Theft Auto V Folder not found!</source>
<translation type="vanished">Grand Theft Auto V Ordner wurde nicht gefunden!</translation> <translation>Grand Theft Auto V Ordner wurde nicht gefunden!</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="103"/> <location filename="../UserInterface.ui" line="103"/>
@ -1467,11 +1489,11 @@ Exportieren als:</translation>
</message> </message>
<message> <message>
<source>Reload profiles</source> <source>Reload profiles</source>
<translation type="vanished">Profile neuladen</translation> <translation>Profile neuladen</translation>
</message> </message>
<message> <message>
<source>Not able to reload profiles</source> <source>Not able to reload profiles</source>
<translation type="vanished">Nicht fähig Profile neuzuladen</translation> <translation>Nicht fähig Profile neuzuladen</translation>
</message> </message>
</context> </context>
</TS> </TS>