This commit is contained in:
		
							parent
							
								
									04603af8ff
								
							
						
					
					
						commit
						817f356b33
					
				
					 32 changed files with 1179 additions and 920 deletions
				
			
		|  | @ -28,7 +28,9 @@ cmake \ | |||
|    "-DGTA5VIEW_BUILDCODE=${PACKAGE_CODE}" \ | ||||
|    "-DGTA5VIEW_APPVER=${APPLICATION_VERSION}" \ | ||||
|    "-DGTA5VIEW_COMMIT=${APPLICATION_COMMIT}" \ | ||||
|    "-DWITH_DONATE=ON" \ | ||||
|    "-DWITH_TELEMETRY=ON" \ | ||||
|    "-DDONATE_ADDRESSES=$(cat ${PROJECT_DIR}/.ci/donate.txt)" \ | ||||
|    "-DTELEMETRY_WEBURL=https://dev.syping.de/gta5view-userstats/" \ | ||||
|    "-DQCONF_BUILD=ON" \ | ||||
|    ../../ && \ | ||||
|  |  | |||
							
								
								
									
										1
									
								
								.ci/donate.txt
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								.ci/donate.txt
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1 @@ | |||
| btc:187NSQSPzdMpQDGhxZAuw4AhZ7LgoAPV7D,eth:0x19d71DfCa86104d37a13D3c5d419936421CDC569,ltc:LKr6yvBoMMGmcxViS8Kc1A2sDjVSWTXn4m,xmr:43TB3ZMP5nk1pu5EQXRGPzdTKvmFEBGgccX3tNhRknLLiUYQ7z7dNedVHEA6WrWdByZv1isvFmjSGhCF7ddx3eRxFdm5Fzz,zec:t1SpfDKj6qGZFwyRdzJBw9w2PTj8rUixZGh | ||||
|  | @ -14,7 +14,9 @@ cd build && \ | |||
|    "-DGTA5VIEW_BUILDCODE=${PACKAGE_CODE}" \ | ||||
|    "-DGTA5VIEW_APPVER=${APPLICATION_VERSION}" \ | ||||
|    "-DGTA5VIEW_COMMIT=${APPLICATION_COMMIT}" \ | ||||
|    "-DWITH_DONATE=ON" \ | ||||
|    "-DWITH_TELEMETRY=ON" \ | ||||
|    "-DDONATE_ADDRESSES=$(cat ${PROJECT_DIR}/.ci/donate.txt)" \ | ||||
|    "-DTELEMETRY_WEBURL=https://dev.syping.de/gta5view-userstats/" \ | ||||
|    ../ && \ | ||||
| make -j 4 && \ | ||||
|  |  | |||
|  | @ -17,7 +17,9 @@ mingw64-qt-cmake \ | |||
|    "-DGTA5VIEW_BUILDCODE=${PACKAGE_CODE}" \ | ||||
|    "-DGTA5VIEW_APPVER=${APPLICATION_VERSION}" \ | ||||
|    "-DGTA5VIEW_COMMIT=${APPLICATION_COMMIT}" \ | ||||
|    "-DWITH_DONATE=ON" \ | ||||
|    "-DWITH_TELEMETRY=ON" \ | ||||
|    "-DDONATE_ADDRESSES=$(cat ${PROJECT_DIR}/.ci/donate.txt)" \ | ||||
|    "-DTELEMETRY_WEBURL=https://dev.syping.de/gta5view-userstats/" \ | ||||
|    .. && \ | ||||
| make -j 4 && \ | ||||
|  |  | |||
|  | @ -13,7 +13,9 @@ mingw64-qt-cmake \ | |||
|    "-DGTA5VIEW_BUILDCODE=${PACKAGE_CODE}" \ | ||||
|    "-DGTA5VIEW_APPVER=${APPLICATION_VERSION}" \ | ||||
|    "-DGTA5VIEW_COMMIT=${APPLICATION_COMMIT}" \ | ||||
|    "-DWITH_DONATE=ON" \ | ||||
|    "-DWITH_TELEMETRY=ON" \ | ||||
|    "-DDONATE_ADDRESSES=$(cat ${PROJECT_DIR}/.ci/donate.txt)" \ | ||||
|    "-DTELEMETRY_WEBURL=https://dev.syping.de/gta5view-userstats/" \ | ||||
|    "-DQCONF_BUILD=ON" \ | ||||
|    "-DGTA5VIEW_INLANG=RUNDIR:SEPARATOR:lang" \ | ||||
|  |  | |||
|  | @ -15,6 +15,8 @@ modules: | |||
|     config-opts: | ||||
|       - -DFLATPAK_BUILD=ON | ||||
|       - -DQCONF_BUILD=ON | ||||
|       - -DGTA5VIEW_BUILDCODE=Flatpak | ||||
|       - -DGTA5VIEW_BUILDTYPE=Release | ||||
|     sources: | ||||
|       - type: dir | ||||
|         path: ../ | ||||
|  |  | |||
|  | @ -217,6 +217,22 @@ if(FLATPAK_BUILD) | |||
|     ) | ||||
| endif() | ||||
| 
 | ||||
| option(WITH_DONATE "Donate menu option and donation dialog" OFF) | ||||
| if(WITH_DONATE) | ||||
|     set(DONATE_ADDRESSES "" CACHE STRING "Donation addresses") | ||||
|     list(APPEND GTA5VIEW_DEFINES | ||||
|         -DGTA5SYNC_DONATE | ||||
|     ) | ||||
|     list(APPEND GTA5VIEW_RESOURCES | ||||
|         res/donate.qrc | ||||
|     ) | ||||
|     if(DONATE_ADDRESSES) | ||||
|         list(APPEND GTA5VIEW_DEFINES | ||||
|             "-DGTA5SYNC_DONATE_ADDRESSES=\"${DONATE_ADDRESSES}\"" | ||||
|         ) | ||||
|     endif() | ||||
| endif() | ||||
| 
 | ||||
| option(WITH_MOTD "Developer message system directed to users" OFF) | ||||
| if(WITH_MOTD) | ||||
|     set(MOTD_WEBURL "" CACHE STRING "Messages WebURL") | ||||
|  |  | |||
|  | @ -234,15 +234,12 @@ void OptionsDialog::setupLanguageBox() | |||
|     availableLanguages.removeDuplicates(); | ||||
|     availableLanguages.sort(); | ||||
| 
 | ||||
|     for (QString lang : availableLanguages) | ||||
|     { | ||||
|     for (QString lang : availableLanguages) { | ||||
|         // correcting Language Location if possible
 | ||||
|         QString aLang = lang; | ||||
|         if (QFile::exists(":/global/global." % lang % ".loc")) | ||||
|         { | ||||
|         if (QFile::exists(":/global/global." % lang % ".loc")) { | ||||
|             QFile locFile(":/global/global." % lang % ".loc"); | ||||
|             if (locFile.open(QFile::ReadOnly)) | ||||
|             { | ||||
|             if (locFile.open(QFile::ReadOnly)) { | ||||
|                 aLang = QString::fromUtf8(locFile.readLine()).trimmed(); | ||||
|                 locFile.close(); | ||||
|             } | ||||
|  | @ -253,8 +250,7 @@ void OptionsDialog::setupLanguageBox() | |||
|         QString langIconStr = "flag-" % TranslationClass::getCountryCode(langLocale); | ||||
| 
 | ||||
|         ui->cbAreaLanguage->addItem(QIcon::fromTheme(langIconStr), cbLangStr, lang); | ||||
|         if (currentAreaLanguage == lang) | ||||
|         { | ||||
|         if (currentAreaLanguage == lang) { | ||||
| #if QT_VERSION >= 0x050000 | ||||
|             ui->cbAreaLanguage->setCurrentText(cbLangStr); | ||||
| #else | ||||
|  | @ -265,8 +261,7 @@ void OptionsDialog::setupLanguageBox() | |||
|     } | ||||
| 
 | ||||
|     QString aCurrentAreaLanguage = Translator->getCurrentAreaLanguage(); | ||||
|     if (QFile::exists(":/global/global." % aCurrentAreaLanguage % ".loc")) | ||||
|     { | ||||
|     if (QFile::exists(":/global/global." % aCurrentAreaLanguage % ".loc")) { | ||||
|         qDebug() << "locFile found"; | ||||
|         QFile locFile(":/global/global." % aCurrentAreaLanguage % ".loc"); | ||||
|         if (locFile.open(QFile::ReadOnly)) | ||||
|  | @ -286,10 +281,8 @@ void OptionsDialog::setupRadioButtons() | |||
|     contentMode = settings->value("ContentMode", 0).toInt(&contentModeOk); | ||||
|     settings->endGroup(); | ||||
| 
 | ||||
|     if (contentModeOk) | ||||
|     { | ||||
|         switch (contentMode) | ||||
|         { | ||||
|     if (contentModeOk) { | ||||
|         switch (contentMode) { | ||||
|         case 0: | ||||
|         case 20: | ||||
|             ui->rbModern->setChecked(true); | ||||
|  | @ -329,8 +322,7 @@ void OptionsDialog::setupInterfaceSettings() | |||
|             currentIndex++; | ||||
|         } | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         if (availableStyles.contains(currentStyle, Qt::CaseInsensitive)) { | ||||
|             int currentIndex = 0; | ||||
|             for (const QString ¤tStyleFF : availableStyles) { | ||||
|  | @ -379,16 +371,13 @@ void OptionsDialog::applySettings() | |||
| 
 | ||||
|     settings->beginGroup("Profile"); | ||||
|     int newContentMode = 20; | ||||
|     if (ui->rbModern->isChecked()) | ||||
|     { | ||||
|     if (ui->rbModern->isChecked()) { | ||||
|         newContentMode = 20; | ||||
|     } | ||||
|     else if (ui->rbClassic->isChecked()) | ||||
|     { | ||||
|     else if (ui->rbClassic->isChecked()) { | ||||
|         newContentMode = 10; | ||||
|     } | ||||
|     if (ui->cbDoubleclick->isChecked()) | ||||
|     { | ||||
|     if (ui->cbDoubleclick->isChecked()) { | ||||
|         newContentMode++; | ||||
|     } | ||||
|     settings->setValue("ContentMode", newContentMode); | ||||
|  | @ -400,18 +389,15 @@ void OptionsDialog::applySettings() | |||
|     settings->endGroup(); | ||||
| 
 | ||||
|     settings->beginGroup("Pictures"); | ||||
|     if (ui->cbPicCustomQuality->isChecked()) | ||||
|     { | ||||
|     if (ui->cbPicCustomQuality->isChecked()) { | ||||
|         settings->setValue("CustomQuality", ui->hsPicQuality->value()); | ||||
|     } | ||||
|     settings->setValue("CustomQualityEnabled", ui->cbPicCustomQuality->isChecked()); | ||||
|     QString sizeMode = "Default"; | ||||
|     if (ui->rbPicDesktopRes->isChecked()) | ||||
|     { | ||||
|     if (ui->rbPicDesktopRes->isChecked()) { | ||||
|         sizeMode = "Desktop"; | ||||
|     } | ||||
|     else if (ui->rbPicCustomRes->isChecked()) | ||||
|     { | ||||
|     else if (ui->rbPicCustomRes->isChecked()) { | ||||
|         sizeMode = "Custom"; | ||||
|         settings->setValue("CustomSize", QSize(ui->sbPicExportWidth->value(), ui->sbPicExportHeight->value())); | ||||
|     } | ||||
|  | @ -456,8 +442,7 @@ void OptionsDialog::applySettings() | |||
|     settings->endGroup(); | ||||
|     Telemetry->refresh(); | ||||
|     Telemetry->work(); | ||||
|     if (ui->cbUsageData->isChecked() && Telemetry->canPush()) | ||||
|     { | ||||
|     if (ui->cbUsageData->isChecked() && Telemetry->canPush()) { | ||||
|         QJsonDocument jsonDocument; | ||||
|         QJsonObject jsonObject; | ||||
|         jsonObject["Type"] = "SettingsUpdated"; | ||||
|  | @ -478,22 +463,19 @@ void OptionsDialog::applySettings() | |||
|     bool languageChanged = ui->cbLanguage->itemData(ui->cbLanguage->currentIndex()).toString() != currentLanguage; | ||||
|     bool languageAreaChanged = ui->cbAreaLanguage->itemData(ui->cbLanguage->currentIndex()).toString() != currentAreaLanguage; | ||||
| #endif | ||||
|     if (languageChanged) | ||||
|     { | ||||
|     if (languageChanged) { | ||||
|         Translator->unloadTranslation(qApp); | ||||
|         Translator->initUserLanguage(); | ||||
|         Translator->loadTranslation(qApp); | ||||
|     } | ||||
|     else if (languageAreaChanged) | ||||
|     { | ||||
|     else if (languageAreaChanged) { | ||||
|         Translator->initUserLanguage(); | ||||
|     } | ||||
| 
 | ||||
|     settings->sync(); | ||||
|     emit settingsApplied(newContentMode, languageChanged); | ||||
| 
 | ||||
|     if ((forceCustomFolder && ui->txtFolder->text() != currentCFolder) || (forceCustomFolder != currentFFolder && forceCustomFolder)) | ||||
|     { | ||||
|     if ((forceCustomFolder && ui->txtFolder->text() != currentCFolder) || (forceCustomFolder != currentFFolder && forceCustomFolder)) { | ||||
|         QMessageBox::information(this, tr("%1", "%1").arg(GTA5SYNC_APPSTR), tr("The new Custom Folder will initialise after you restart %1.").arg(GTA5SYNC_APPSTR)); | ||||
|     } | ||||
| } | ||||
|  | @ -510,11 +492,9 @@ void OptionsDialog::setupDefaultProfile() | |||
| 
 | ||||
| void OptionsDialog::commitProfiles(const QStringList &profiles) | ||||
| { | ||||
|     for (QString profile : profiles) | ||||
|     { | ||||
|     for (QString profile : profiles) { | ||||
|         ui->cbProfiles->addItem(tr("Profile: %1").arg(profile), profile); | ||||
|         if (defaultProfile == profile) | ||||
|         { | ||||
|         if (defaultProfile == profile) { | ||||
| #if QT_VERSION >= 0x050000 | ||||
|             ui->cbProfiles->setCurrentText(tr("Profile: %1").arg(profile)); | ||||
| #else | ||||
|  | @ -552,8 +532,7 @@ void OptionsDialog::setupPictureSettings() | |||
| 
 | ||||
|     // Quality Settings
 | ||||
|     customQuality = settings->value("CustomQuality", defaultQuality).toInt(); | ||||
|     if (customQuality < 1 || customQuality > 100) | ||||
|     { | ||||
|     if (customQuality < 1 || customQuality > 100) { | ||||
|         customQuality = 100; | ||||
|     } | ||||
|     ui->hsPicQuality->setValue(customQuality); | ||||
|  | @ -561,42 +540,34 @@ void OptionsDialog::setupPictureSettings() | |||
| 
 | ||||
|     // Size Settings
 | ||||
|     cusExportSize = settings->value("CustomSize", defExportSize).toSize(); | ||||
|     if (cusExportSize.width() > 3840) | ||||
|     { | ||||
|     if (cusExportSize.width() > 3840) { | ||||
|         cusExportSize.setWidth(3840); | ||||
|     } | ||||
|     else if (cusExportSize.height() > 2160) | ||||
|     { | ||||
|     else if (cusExportSize.height() > 2160) { | ||||
|         cusExportSize.setHeight(2160); | ||||
|     } | ||||
|     if (cusExportSize.width() < 1) | ||||
|     { | ||||
|     if (cusExportSize.width() < 1) { | ||||
|         cusExportSize.setWidth(1); | ||||
|     } | ||||
|     else if (cusExportSize.height() < 1) | ||||
|     { | ||||
|     else if (cusExportSize.height() < 1) { | ||||
|         cusExportSize.setHeight(1); | ||||
|     } | ||||
|     ui->sbPicExportWidth->setValue(cusExportSize.width()); | ||||
|     ui->sbPicExportHeight->setValue(cusExportSize.height()); | ||||
| 
 | ||||
|     QString sizeMode = settings->value("ExportSizeMode", "Default").toString(); | ||||
|     if (sizeMode == "Desktop") | ||||
|     { | ||||
|     if (sizeMode == "Desktop") { | ||||
|         ui->rbPicDesktopRes->setChecked(true); | ||||
|     } | ||||
|     else if (sizeMode == "Custom") | ||||
|     { | ||||
|     else if (sizeMode == "Custom") { | ||||
|         ui->rbPicCustomRes->setChecked(true); | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         ui->rbPicDefaultRes->setChecked(true); | ||||
|     } | ||||
| 
 | ||||
|     aspectRatio = (Qt::AspectRatioMode)settings->value("AspectRatio", Qt::KeepAspectRatio).toInt(); | ||||
|     if (aspectRatio == Qt::IgnoreAspectRatio) | ||||
|     { | ||||
|     if (aspectRatio == Qt::IgnoreAspectRatio) { | ||||
|         ui->cbIgnoreAspectRatio->setChecked(true); | ||||
|     } | ||||
| 
 | ||||
|  | @ -615,17 +586,14 @@ void OptionsDialog::setupStatisticsSettings() | |||
|     ui->cbUsageData->setChecked(settings->value("PushUsageData", false).toBool()); | ||||
|     settings->endGroup(); | ||||
| 
 | ||||
|     if (Telemetry->isStateForced()) | ||||
|     { | ||||
|     if (Telemetry->isStateForced()) { | ||||
|         ui->cbParticipateStats->setEnabled(false); | ||||
|     } | ||||
| 
 | ||||
|     if (Telemetry->isRegistered()) | ||||
|     { | ||||
|     if (Telemetry->isRegistered()) { | ||||
|         ui->labParticipationID->setText(tr("Participation ID: %1").arg(Telemetry->getRegisteredID())); | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         ui->labParticipationID->setText(tr("Participation ID: %1").arg(tr("Not registered"))); | ||||
|         ui->cmdCopyStatsID->setVisible(false); | ||||
|     } | ||||
|  | @ -639,62 +607,49 @@ void OptionsDialog::setupWindowsGameSettings() | |||
| #ifdef GTA5SYNC_GAME | ||||
|     GameVersion gameVersion = AppEnv::getGameVersion(); | ||||
| #ifdef Q_OS_WIN | ||||
|     if (gameVersion != GameVersion::NoVersion) | ||||
|     { | ||||
|         if (gameVersion == GameVersion::SocialClubVersion) | ||||
|         { | ||||
|     if (gameVersion != GameVersion::NoVersion) { | ||||
|         if (gameVersion == GameVersion::SocialClubVersion) { | ||||
|             ui->gbSteam->setDisabled(true); | ||||
|             ui->labSocialClubFound->setText(tr("Found: %1").arg(QString("<span style=\"color: green\">%1</span>").arg(tr("Yes")))); | ||||
|             ui->labSteamFound->setText(tr("Found: %1").arg(QString("<span style=\"color: red\">%1</span>").arg(tr("No")))); | ||||
|             if (AppEnv::getGameLanguage(GameVersion::SocialClubVersion) != GameLanguage::Undefined) | ||||
|             { | ||||
|             if (AppEnv::getGameLanguage(GameVersion::SocialClubVersion) != GameLanguage::Undefined) { | ||||
|                 ui->labSocialClubLanguage->setText(tr("Language: %1").arg(QLocale(AppEnv::gameLanguageToString(AppEnv::getGameLanguage(GameVersion::SocialClubVersion))).nativeLanguageName())); | ||||
|             } | ||||
|             else | ||||
|             { | ||||
|             else { | ||||
|                 ui->labSocialClubLanguage->setText(tr("Language: %1").arg(tr("OS defined"))); | ||||
|             } | ||||
|             ui->labSteamLanguage->setVisible(false); | ||||
|         } | ||||
|         else if (gameVersion == GameVersion::SteamVersion) | ||||
|         { | ||||
|         else if (gameVersion == GameVersion::SteamVersion) { | ||||
|             ui->gbSocialClub->setDisabled(true); | ||||
|             ui->labSocialClubFound->setText(tr("Found: %1").arg(QString("<span style=\"color: red\">%1</span>").arg(tr("No")))); | ||||
|             ui->labSteamFound->setText(tr("Found: %1").arg(QString("<span style=\"color: green\">%1</span>").arg(tr("Yes")))); | ||||
|             ui->labSocialClubLanguage->setVisible(false); | ||||
|             if (AppEnv::getGameLanguage(GameVersion::SteamVersion) != GameLanguage::Undefined) | ||||
|             { | ||||
|             if (AppEnv::getGameLanguage(GameVersion::SteamVersion) != GameLanguage::Undefined) { | ||||
|                 ui->labSteamLanguage->setText(tr("Language: %1").arg(QLocale(AppEnv::gameLanguageToString(AppEnv::getGameLanguage(GameVersion::SteamVersion))).nativeLanguageName())); | ||||
|             } | ||||
|             else | ||||
|             { | ||||
|             else { | ||||
|                 ui->labSteamLanguage->setText(tr("Language: %1").arg(tr("Steam defined"))); | ||||
|             } | ||||
|         } | ||||
|         else | ||||
|         { | ||||
|         else { | ||||
|             ui->labSocialClubFound->setText(tr("Found: %1").arg(QString("<span style=\"color: green\">%1</span>").arg(tr("Yes")))); | ||||
|             ui->labSteamFound->setText(tr("Found: %1").arg(QString("<span style=\"color: green\">%1</span>").arg(tr("Yes")))); | ||||
|             if (AppEnv::getGameLanguage(GameVersion::SocialClubVersion) != GameLanguage::Undefined) | ||||
|             { | ||||
|             if (AppEnv::getGameLanguage(GameVersion::SocialClubVersion) != GameLanguage::Undefined) { | ||||
|                 ui->labSocialClubLanguage->setText(tr("Language: %1").arg(QLocale(AppEnv::gameLanguageToString(AppEnv::getGameLanguage(GameVersion::SocialClubVersion))).nativeLanguageName())); | ||||
|             } | ||||
|             else | ||||
|             { | ||||
|             else { | ||||
|                 ui->labSocialClubLanguage->setText(tr("Language: %1").arg(tr("OS defined"))); | ||||
|             } | ||||
|             if (AppEnv::getGameLanguage(GameVersion::SteamVersion) != GameLanguage::Undefined) | ||||
|             { | ||||
|             if (AppEnv::getGameLanguage(GameVersion::SteamVersion) != GameLanguage::Undefined) { | ||||
|                 ui->labSteamLanguage->setText(tr("Language: %1").arg(QLocale(AppEnv::gameLanguageToString(AppEnv::getGameLanguage(GameVersion::SteamVersion))).nativeLanguageName())); | ||||
|             } | ||||
|             else | ||||
|             { | ||||
|             else { | ||||
|                 ui->labSteamLanguage->setText(tr("Language: %1").arg(tr("Steam defined"))); | ||||
|             } | ||||
|         } | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         ui->tabWidget->removeTab(ui->tabWidget->indexOf(ui->tabGame)); | ||||
|     } | ||||
| #else | ||||
|  | @ -707,12 +662,10 @@ void OptionsDialog::setupWindowsGameSettings() | |||
| 
 | ||||
| void OptionsDialog::on_cbIgnoreAspectRatio_toggled(bool checked) | ||||
| { | ||||
|     if (checked) | ||||
|     { | ||||
|     if (checked) { | ||||
|         aspectRatio = Qt::IgnoreAspectRatio; | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         aspectRatio = Qt::KeepAspectRatio; | ||||
|     } | ||||
| } | ||||
|  | @ -724,8 +677,7 @@ void OptionsDialog::setupCustomGTAFolder() | |||
|     settings->beginGroup("dir"); | ||||
|     currentCFolder = settings->value("dir", "").toString(); | ||||
|     currentFFolder = settings->value("force", false).toBool(); | ||||
|     if (currentCFolder == "" && ok) | ||||
|     { | ||||
|     if (currentCFolder == "" && ok) { | ||||
|         currentCFolder = defaultGameFolder; | ||||
|     } | ||||
|     ui->txtFolder->setText(currentCFolder); | ||||
|  | @ -754,8 +706,7 @@ void OptionsDialog::setupSnapmaticPictureViewer() | |||
| void OptionsDialog::on_cmdExploreFolder_clicked() | ||||
| { | ||||
|     QString GTAV_Folder = QFileDialog::getExistingDirectory(this, UserInterface::tr("Select GTA V Folder..."), StandardPaths::documentsLocation(), QFileDialog::ShowDirsOnly); | ||||
|     if (QFileInfo(GTAV_Folder).exists()) | ||||
|     { | ||||
|     if (QFileInfo(GTAV_Folder).exists()) { | ||||
|         ui->txtFolder->setText(GTAV_Folder); | ||||
|     } | ||||
| } | ||||
|  |  | |||
|  | @ -38,6 +38,7 @@ | |||
| #include <QSpacerItem> | ||||
| #include <QPushButton> | ||||
| #include <QMessageBox> | ||||
| #include <QClipboard> | ||||
| #include <QSettings> | ||||
| #include <QFileInfo> | ||||
| #include <QTimer> | ||||
|  | @ -50,11 +51,11 @@ | |||
| UserInterface::UserInterface(ProfileDatabase *profileDB, CrewDatabase *crewDB, DatabaseThread *threadDB, MessageThread *threadMessage, QWidget *parent) : | ||||
|     QMainWindow(parent), profileDB(profileDB), crewDB(crewDB), threadDB(threadDB), threadMessage(threadMessage), | ||||
|     ui(new Ui::UserInterface) | ||||
| #else | ||||
|   #else | ||||
| UserInterface::UserInterface(ProfileDatabase *profileDB, CrewDatabase *crewDB, DatabaseThread *threadDB, QWidget *parent) : | ||||
|     QMainWindow(parent), profileDB(profileDB), crewDB(crewDB), threadDB(threadDB), | ||||
|     ui(new Ui::UserInterface) | ||||
| #endif | ||||
|   #endif | ||||
| { | ||||
|     ui->setupUi(this); | ||||
|     contentMode = 0; | ||||
|  | @ -153,6 +154,84 @@ UserInterface::UserInterface(ProfileDatabase *profileDB, CrewDatabase *crewDB, D | |||
|         ui->actionDelete_selected->setIcon(QIcon::fromTheme("remove")); | ||||
|     } | ||||
| 
 | ||||
| #ifdef GTA5SYNC_DONATE | ||||
| #ifdef GTA5SYNC_DONATE_ADDRESSES | ||||
|     donateAction = new QAction(tr("&Donate"), this); | ||||
|     if (QIcon::hasThemeIcon("help-donate")) { | ||||
|         donateAction->setIcon(QIcon::fromTheme("help-donate")); | ||||
|     } | ||||
|     else if (QIcon::hasThemeIcon("taxes-finances")) { | ||||
|         donateAction->setIcon(QIcon::fromTheme("taxes-finances")); | ||||
|     } | ||||
|     ui->menuHelp->insertAction(ui->actionAbout_gta5sync, donateAction); | ||||
|     QObject::connect(donateAction, &QAction::triggered, this, [=](){ | ||||
|         QDialog *donateDialog = new QDialog(this); | ||||
|         donateDialog->setWindowTitle(QString("%1 - %2").arg(GTA5SYNC_APPSTR, tr("Donate"))); | ||||
| #if QT_VERSION >= 0x050900 | ||||
|         donateDialog->setWindowFlag(Qt::WindowContextHelpButtonHint, false); | ||||
| #else | ||||
|         donateDialog->setWindowFlags(donateDialog->windowFlags()^Qt::WindowContextHelpButtonHint); | ||||
| #endif | ||||
|         QVBoxLayout *donateLayout = new QVBoxLayout; | ||||
|         donateDialog->setLayout(donateLayout); | ||||
|         QLabel *methodsLabel = new QLabel(QString("<b>%1</b>").arg(tr("Donation methods")), this); | ||||
|         methodsLabel->setWordWrap(true); | ||||
|         donateLayout->addWidget(methodsLabel); | ||||
|         const QStringList addressList = QString::fromUtf8(GTA5SYNC_DONATE_ADDRESSES).split(','); | ||||
|         for (const QString &address : addressList) { | ||||
|             const QStringList addressList = address.split(':'); | ||||
|             if (addressList.length() == 2) { | ||||
|                 const QString currency = addressList.at(0); | ||||
|                 const QString address = addressList.at(1); | ||||
|                 QHBoxLayout *addressLayout = new QHBoxLayout; | ||||
|                 const QString iconPath = QString(":/donate/%1.svgz").arg(currency); | ||||
|                 if (QFile::exists(iconPath)) { | ||||
|                     QLabel *currencyLabel = new QLabel(this); | ||||
|                     currencyLabel->setFixedSize(32, 32); | ||||
|                     currencyLabel->setScaledContents(true); | ||||
|                     currencyLabel->setPixmap(QIcon(iconPath).pixmap(QSize(32, 32))); | ||||
|                     addressLayout->addWidget(currencyLabel); | ||||
|                 } | ||||
|                 else { | ||||
|                     QLabel *currencyLabel = new QLabel(QString("<b>%1</b>").arg(currency.toUpper()), this); | ||||
|                     addressLayout->addWidget(currencyLabel); | ||||
|                 } | ||||
|                 QLabel *addressLabel = new QLabel(address, this); | ||||
|                 addressLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); | ||||
|                 addressLabel->setTextFormat(Qt::PlainText); | ||||
|                 addressLabel->setTextInteractionFlags(Qt::TextSelectableByMouse); | ||||
|                 addressLabel->setWordWrap(true); | ||||
|                 addressLayout->addWidget(addressLabel); | ||||
|                 QPushButton *addressButton = new QPushButton(tr("Copy"), this); | ||||
|                 QObject::connect(addressButton, &QPushButton::pressed, this, [=](){ | ||||
|                     QApplication::clipboard()->setText(address); | ||||
|                 }); | ||||
|                 addressLayout->addWidget(addressButton); | ||||
|                 donateLayout->addLayout(addressLayout); | ||||
|             } | ||||
|         } | ||||
|         QHBoxLayout *buttonLayout = new QHBoxLayout; | ||||
|         buttonLayout->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum)); | ||||
|         QPushButton *closeButton = new QPushButton(donateDialog); | ||||
|         closeButton->setText(tr("&Close")); | ||||
|         if (QIcon::hasThemeIcon("dialog-close")) { | ||||
|             closeButton->setIcon(QIcon::fromTheme("dialog-close")); | ||||
|         } | ||||
|         else if (QIcon::hasThemeIcon("gtk-close")) { | ||||
|             closeButton->setIcon(QIcon::fromTheme("gtk-close")); | ||||
|         } | ||||
|         buttonLayout->addWidget(closeButton); | ||||
|         donateLayout->addLayout(buttonLayout); | ||||
|         QObject::connect(closeButton, &QPushButton::clicked, donateDialog, &QDialog::accept); | ||||
|         QObject::connect(donateDialog, &QDialog::finished, donateDialog, &QDialog::deleteLater); | ||||
|         QTimer::singleShot(0, closeButton, [=](){ | ||||
|             closeButton->setFocus(); | ||||
|         }); | ||||
|         donateDialog->open(); | ||||
|     }); | ||||
| #endif | ||||
| #endif | ||||
| 
 | ||||
|     // DPI calculation
 | ||||
|     qreal screenRatio = AppEnv::screenRatio(); | ||||
| #ifndef Q_QS_ANDROID | ||||
|  | @ -172,22 +251,20 @@ void UserInterface::setupDirEnv(bool showFolderDialog) | |||
|     if (folderExists) { | ||||
|         QDir::setCurrent(GTAV_Folder); | ||||
|     } | ||||
|     else { | ||||
|         if (showFolderDialog) { | ||||
|             GTAV_Folder = QFileDialog::getExistingDirectory(this, tr("Select GTA V Folder..."), StandardPaths::documentsLocation(), QFileDialog::ShowDirsOnly); | ||||
|             if (QFileInfo(GTAV_Folder).exists()) { | ||||
|                 folderExists = true; | ||||
|                 QDir::setCurrent(GTAV_Folder); | ||||
|                 AppEnv::setGameFolder(GTAV_Folder); | ||||
|     else if (showFolderDialog) { | ||||
|         GTAV_Folder = QFileDialog::getExistingDirectory(this, tr("Select GTA V Folder..."), StandardPaths::documentsLocation(), QFileDialog::ShowDirsOnly); | ||||
|         if (QFileInfo(GTAV_Folder).exists()) { | ||||
|             folderExists = true; | ||||
|             QDir::setCurrent(GTAV_Folder); | ||||
|             AppEnv::setGameFolder(GTAV_Folder); | ||||
| 
 | ||||
|                 // First time folder selection save
 | ||||
|                 settings.beginGroup("dir"); | ||||
|                 if (settings.value("dir", "").toString().isEmpty()) | ||||
|                 { | ||||
|                     settings.setValue("dir", GTAV_Folder); | ||||
|                 } | ||||
|                 settings.endGroup(); | ||||
|             // First time folder selection save
 | ||||
|             settings.beginGroup("dir"); | ||||
|             if (settings.value("dir", "").toString().isEmpty()) | ||||
|             { | ||||
|                 settings.setValue("dir", GTAV_Folder); | ||||
|             } | ||||
|             settings.endGroup(); | ||||
|         } | ||||
|     } | ||||
| 
 | ||||
|  | @ -289,8 +366,7 @@ void UserInterface::openProfile(const QString &profileName_) | |||
| 
 | ||||
| void UserInterface::closeProfile() | ||||
| { | ||||
|     if (profileOpen) | ||||
|     { | ||||
|     if (profileOpen) { | ||||
|         closeProfile_p(); | ||||
|     } | ||||
|     setWindowTitle(defaultWindowTitle.arg(tr("Select Profile"))); | ||||
|  | @ -465,68 +541,61 @@ fileDialogPreOpen: | |||
| bool UserInterface::openFile(QString selectedFile, bool warn) | ||||
| { | ||||
|     QString selectedFileName = QFileInfo(selectedFile).fileName(); | ||||
|     if (QFile::exists(selectedFile)) | ||||
|     { | ||||
|         if (selectedFileName.left(4) == "PGTA" || selectedFileName.right(4) == ".g5e") | ||||
|         { | ||||
|     if (QFile::exists(selectedFile)) { | ||||
|         if (selectedFileName.left(4) == "PGTA" || selectedFileName.right(4) == ".g5e") { | ||||
|             SnapmaticPicture *picture = new SnapmaticPicture(selectedFile); | ||||
|             if (picture->readingPicture()) | ||||
|             { | ||||
|             if (picture->readingPicture()) { | ||||
|                 openSnapmaticFile(picture); | ||||
|                 delete picture; | ||||
|                 return true; | ||||
|             } | ||||
|             else | ||||
|             { | ||||
|                 if (warn) QMessageBox::warning(this, tr("Open File"), ProfileInterface::tr("Failed to read Snapmatic picture")); | ||||
|             else { | ||||
|                 if (warn) | ||||
|                     QMessageBox::warning(this, tr("Open File"), ProfileInterface::tr("Failed to read Snapmatic picture")); | ||||
|                 delete picture; | ||||
|                 return false; | ||||
|             } | ||||
|         } | ||||
|         else if (selectedFileName.left(4) == "SGTA") | ||||
|         { | ||||
|         else if (selectedFileName.left(4) == "SGTA") { | ||||
|             SavegameData *savegame = new SavegameData(selectedFile); | ||||
|             if (savegame->readingSavegame()) | ||||
|             { | ||||
|             if (savegame->readingSavegame()) { | ||||
|                 openSavegameFile(savegame); | ||||
|                 delete savegame; | ||||
|                 return true; | ||||
|             } | ||||
|             else | ||||
|             { | ||||
|                 if (warn) QMessageBox::warning(this, tr("Open File"), ProfileInterface::tr("Failed to read Savegame file")); | ||||
|             else { | ||||
|                 if (warn) | ||||
|                     QMessageBox::warning(this, tr("Open File"), ProfileInterface::tr("Failed to read Savegame file")); | ||||
|                 delete savegame; | ||||
|                 return false; | ||||
|             } | ||||
|         } | ||||
|         else | ||||
|         { | ||||
|         else { | ||||
|             SnapmaticPicture *picture = new SnapmaticPicture(selectedFile); | ||||
|             SavegameData *savegame = new SavegameData(selectedFile); | ||||
|             if (picture->readingPicture()) | ||||
|             { | ||||
|             if (picture->readingPicture()) { | ||||
|                 delete savegame; | ||||
|                 openSnapmaticFile(picture); | ||||
|                 delete picture; | ||||
|                 return true; | ||||
|             } | ||||
|             else if (savegame->readingSavegame()) | ||||
|             { | ||||
|             else if (savegame->readingSavegame()) { | ||||
|                 delete picture; | ||||
|                 openSavegameFile(savegame); | ||||
|                 delete savegame; | ||||
|                 return true; | ||||
|             } | ||||
|             else | ||||
|             { | ||||
|             else { | ||||
|                 delete savegame; | ||||
|                 delete picture; | ||||
|                 if (warn) QMessageBox::warning(this, tr("Open File"), tr("Can't open %1 because of not valid file format").arg("\""+selectedFileName+"\"")); | ||||
|                 if (warn) | ||||
|                     QMessageBox::warning(this, tr("Open File"), tr("Can't open %1 because of not valid file format").arg("\""+selectedFileName+"\"")); | ||||
|                 return false; | ||||
|             } | ||||
|         } | ||||
|     } | ||||
|     if (warn) QMessageBox::warning(this, tr("Open File"), ProfileInterface::tr("No valid file is selected")); | ||||
|     if (warn) | ||||
|         QMessageBox::warning(this, tr("Open File"), ProfileInterface::tr("No valid file is selected")); | ||||
|     return false; | ||||
| } | ||||
| 
 | ||||
|  | @ -571,13 +640,11 @@ void UserInterface::openSavegameFile(SavegameData *savegame) | |||
| 
 | ||||
| void UserInterface::settingsApplied(int _contentMode, bool languageChanged) | ||||
| { | ||||
|     if (languageChanged) | ||||
|     { | ||||
|     if (languageChanged) { | ||||
|         retranslateUi(); | ||||
|     } | ||||
|     contentMode = _contentMode; | ||||
|     if (profileOpen) | ||||
|     { | ||||
|     if (profileOpen) { | ||||
|         profileUI->settingsApplied(contentMode, languageChanged); | ||||
|     } | ||||
| } | ||||
|  | @ -611,7 +678,11 @@ void UserInterface::showMessages(const QStringList messages) | |||
| { | ||||
|     QDialog *messageDialog = new QDialog(this); | ||||
|     messageDialog->setWindowTitle(tr("%1 - Messages").arg(GTA5SYNC_APPSTR)); | ||||
| #if QT_VERSION >= 0x050900 | ||||
|     messageDialog->setWindowFlag(Qt::WindowContextHelpButtonHint, false); | ||||
| #else | ||||
|     messageDialog->setWindowFlags(messageDialog->windowFlags()^Qt::WindowContextHelpButtonHint); | ||||
| #endif | ||||
|     QVBoxLayout *messageLayout = new QVBoxLayout; | ||||
|     messageDialog->setLayout(messageLayout); | ||||
|     QStackedWidget *stackWidget = new QStackedWidget(messageDialog); | ||||
|  | @ -682,7 +753,9 @@ void UserInterface::showMessages(const QStringList messages) | |||
|     }); | ||||
|     QObject::connect(closeButton, &QPushButton::clicked, messageDialog, &QDialog::accept); | ||||
|     QObject::connect(messageDialog, &QDialog::finished, messageDialog, &QDialog::deleteLater); | ||||
|     QTimer::singleShot(0, closeButton, SLOT(setFocus())); | ||||
|     QTimer::singleShot(0, closeButton, [=](){ | ||||
|         closeButton->setFocus(); | ||||
|     }); | ||||
|     messageDialog->show(); | ||||
| } | ||||
| 
 | ||||
|  | @ -698,10 +771,8 @@ void UserInterface::updateCacheId(uint cacheId) | |||
| void UserInterface::on_actionSelect_GTA_Folder_triggered() | ||||
| { | ||||
|     QString GTAV_Folder_Temp = QFileDialog::getExistingDirectory(this, tr("Select GTA V Folder..."), StandardPaths::documentsLocation(), QFileDialog::ShowDirsOnly); | ||||
|     if (QFileInfo(GTAV_Folder_Temp).exists()) | ||||
|     { | ||||
|         if (profileOpen) | ||||
|         { | ||||
|     if (QFileInfo(GTAV_Folder_Temp).exists()) { | ||||
|         if (profileOpen) { | ||||
|             closeProfile_p(); | ||||
|         } | ||||
|         GTAV_Folder = GTAV_Folder_Temp; | ||||
|  | @ -714,36 +785,36 @@ void UserInterface::on_actionSelect_GTA_Folder_triggered() | |||
| void UserInterface::on_action_Enable_In_game_triggered() | ||||
| { | ||||
|     if (profileOpen) | ||||
|     { | ||||
|         profileUI->enableSelected(); | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| void UserInterface::on_action_Disable_In_game_triggered() | ||||
| { | ||||
|     if (profileOpen) | ||||
|     { | ||||
|         profileUI->disableSelected(); | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| void UserInterface::retranslateUi() | ||||
| { | ||||
|     ui->retranslateUi(this); | ||||
| #ifdef GTA5SYNC_DONATE | ||||
| #ifdef GTA5SYNC_DONATE_ADDRESSES | ||||
|     donateAction->setText(tr("&Donate")); | ||||
| #endif | ||||
| #endif | ||||
|     ui->actionAbout_gta5sync->setText(tr("&About %1").arg(GTA5SYNC_APPSTR)); | ||||
|     QString appVersion = GTA5SYNC_APPVER; | ||||
| #ifndef GTA5SYNC_BUILDTYPE_REL | ||||
| #ifdef GTA5SYNC_COMMIT | ||||
|     if (!appVersion.contains("-")) { appVersion = appVersion % "-" % GTA5SYNC_COMMIT; } | ||||
|     if (!appVersion.contains("-")) | ||||
|         appVersion = appVersion % "-" % GTA5SYNC_COMMIT; | ||||
| #endif | ||||
| #endif | ||||
|     ui->labVersion->setText(QString("%1 %2").arg(GTA5SYNC_APPSTR, appVersion)); | ||||
|     if (profileOpen) | ||||
|     { | ||||
|     if (profileOpen) { | ||||
|         setWindowTitle(defaultWindowTitle.arg(profileName)); | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         setWindowTitle(defaultWindowTitle.arg(tr("Select Profile"))); | ||||
|     } | ||||
| } | ||||
|  |  | |||
|  | @ -90,6 +90,11 @@ private: | |||
|     DatabaseThread *threadDB; | ||||
| #ifdef GTA5SYNC_MOTD | ||||
|     MessageThread *threadMessage; | ||||
| #endif | ||||
| #ifdef GTA5SYNC_DONATE | ||||
| #ifdef GTA5SYNC_DONATE_ADDRESSES | ||||
|     QAction *donateAction; | ||||
| #endif | ||||
| #endif | ||||
|     Ui::UserInterface *ui; | ||||
|     ProfileInterface *profileUI; | ||||
|  |  | |||
							
								
								
									
										
											BIN
										
									
								
								res/btc.svgz
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								res/btc.svgz
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										9
									
								
								res/donate.qrc
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								res/donate.qrc
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,9 @@ | |||
| <RCC> | ||||
|     <qresource prefix="/donate"> | ||||
|         <file>btc.svgz</file> | ||||
|         <file>eth.svgz</file> | ||||
|         <file>ltc.svgz</file> | ||||
|         <file>xmr.svgz</file> | ||||
|         <file>zec.svgz</file> | ||||
|     </qresource> | ||||
| </RCC> | ||||
							
								
								
									
										
											BIN
										
									
								
								res/eth.svgz
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								res/eth.svgz
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										212
									
								
								res/gta5sync.ts
									
										
									
									
									
								
							
							
						
						
									
										212
									
								
								res/gta5sync.ts
									
										
									
									
									
								
							|  | @ -192,21 +192,21 @@ Pictures and Savegames</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -728,26 +728,26 @@ Y: %2</source> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Found: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="406"/> | ||||
|         <location filename="../OptionsDialog.ui" line="429"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="645"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -768,7 +768,7 @@ Y: %2</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="580"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -804,8 +804,8 @@ Y: %2</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="594"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -828,7 +828,7 @@ Y: %2</source> | |||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="230"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="279"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="274"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -923,62 +923,62 @@ Y: %2</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="519"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="521"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="496"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="501"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="581"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Yes</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>No</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1055,42 +1055,42 @@ Y: %2</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="468"/> | ||||
|         <location filename="../PictureDialog.cpp" line="463"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="662"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="219"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="657"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="220"/> | ||||
|         <source>No Players</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="641"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="636"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="597"/> | ||||
|         <location filename="../PictureDialog.cpp" line="592"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1341,7 +1341,7 @@ Press 1 for Default View</source> | |||
|         <location filename="../ImportDialog.cpp" line="534"/> | ||||
|         <location filename="../ImportDialog.cpp" line="844"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="441"/> | ||||
|         <location filename="../UserInterface.cpp" line="517"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1386,26 +1386,26 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="514"/> | ||||
|         <location filename="../UserInterface.cpp" line="438"/> | ||||
|         <location filename="../UserInterface.cpp" line="514"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../UserInterface.cpp" line="439"/> | ||||
|         <location filename="../UserInterface.cpp" line="515"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="516"/> | ||||
|         <location filename="../UserInterface.cpp" line="440"/> | ||||
|         <location filename="../UserInterface.cpp" line="516"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1424,13 +1424,13 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1640,7 +1640,7 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="437"/> | ||||
|         <location filename="../UserInterface.cpp" line="513"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1854,8 +1854,8 @@ Press 1 for Default View</source> | |||
|         <location filename="../JsonEditorDialog.cpp" line="176"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="212"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1947,8 +1947,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1960,72 +1960,72 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="207"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="237"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="256"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="208"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <source>Edit</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="210"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="211"/> | ||||
|         <source>Players: %1 (%2)</source> | ||||
|         <comment>Multiple Player are inserted here</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="213"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="214"/> | ||||
|         <source>Player: %1 (%2)</source> | ||||
|         <comment>One Player is inserted here</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="239"/> | ||||
|         <source>Title: %1 (%2)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>Appropriate: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <source>Yes</source> | ||||
|         <comment>Yes, should work fine</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>No</source> | ||||
|         <comment>No, could lead to issues</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="258"/> | ||||
|         <source>Crew: %1 (%2)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2259,7 +2259,7 @@ Press 1 for Default View</source> | |||
|     <name>UserInterface</name> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="20"/> | ||||
|         <location filename="../UserInterface.cpp" line="68"/> | ||||
|         <location filename="../UserInterface.cpp" line="69"/> | ||||
|         <source>%2 - %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2291,7 +2291,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="216"/> | ||||
|         <location filename="../UserInterface.cpp" line="715"/> | ||||
|         <source>&Close</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2327,8 +2328,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="66"/> | ||||
|         <location filename="../UserInterface.cpp" line="733"/> | ||||
|         <location filename="../UserInterface.cpp" line="67"/> | ||||
|         <location filename="../UserInterface.cpp" line="805"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2384,15 +2385,15 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="232"/> | ||||
|         <location filename="../UserInterface.cpp" line="309"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="756"/> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <location filename="../UserInterface.cpp" line="700"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="708"/> | ||||
|         <location filename="../UserInterface.cpp" line="255"/> | ||||
|         <location filename="../UserInterface.cpp" line="773"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2449,32 +2450,53 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="70"/> | ||||
|         <location filename="../UserInterface.cpp" line="296"/> | ||||
|         <location filename="../UserInterface.cpp" line="747"/> | ||||
|         <location filename="../UserInterface.cpp" line="71"/> | ||||
|         <location filename="../UserInterface.cpp" line="372"/> | ||||
|         <location filename="../UserInterface.cpp" line="818"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="434"/> | ||||
|         <location filename="../UserInterface.cpp" line="159"/> | ||||
|         <location filename="../UserInterface.cpp" line="802"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <source>Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <source>Donation methods</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="205"/> | ||||
|         <source>Copy</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>Open File</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="613"/> | ||||
|         <location filename="../UserInterface.cpp" line="680"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -177,8 +177,8 @@ Snapmatic Bilder und Spielständen</translation> | |||
| <context> | ||||
|     <name>ImageEditorDialog</name> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|  | @ -210,13 +210,13 @@ Snapmatic Bilder und Spielständen</translation> | |||
|         <translation>S&chließen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation>Patchen von Snapmatic Bild fehlgeschlagen wegen I/O Fehler</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation>Patchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler</translation> | ||||
|  | @ -756,26 +756,26 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Found: %1</source> | ||||
|         <translation>Gefunden: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="406"/> | ||||
|         <location filename="../OptionsDialog.ui" line="429"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="645"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation>Sprache: %1</translation> | ||||
|     </message> | ||||
|  | @ -796,7 +796,7 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="580"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation>An %1 Benutzerstatistik teilnehmen</translation> | ||||
|     </message> | ||||
|  | @ -827,8 +827,8 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="594"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>Teilnahme ID: %1</translation> | ||||
|     </message> | ||||
|  | @ -885,7 +885,7 @@ Y: %2</translation> | |||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="230"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="279"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="274"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation>Aktuell: %1</translation> | ||||
|     </message> | ||||
|  | @ -922,7 +922,7 @@ Y: %2</translation> | |||
|         <translation>Abbre&chen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|  | @ -961,56 +961,56 @@ Y: %2</translation> | |||
|         <translation>%1 (Sprachenpriorität)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>Der eigene Ordner wird initialisiert sobald du %1 neugestartet hast.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="581"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>%1 Benutzerstatistik Online ansehen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>Nicht registriert</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>Ja</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>No</source> | ||||
|         <translation>Nein</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>OS-defined</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Steam-definiert</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>Kein Profil</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="519"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="521"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="496"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="501"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>Profil: %1</translation> | ||||
|     </message> | ||||
|  | @ -1090,7 +1090,7 @@ Y: %2</translation> | |||
|         <translation>&Kartenansicht öffnen...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="468"/> | ||||
|         <location filename="../PictureDialog.cpp" line="463"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|  | @ -1099,37 +1099,37 @@ Taste 2 - Overlay umschalten | |||
| Pfeiltasten - Navigieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>Snapmatic Bildansicht</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>Fehlgeschlagen beim %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="641"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="636"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation>Keine Crew</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="662"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="219"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="657"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="220"/> | ||||
|         <source>No Players</source> | ||||
|         <translation>Keine Spieler</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="597"/> | ||||
|         <location filename="../PictureDialog.cpp" line="592"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation>Avatar Vorschaumodus | ||||
| Drücke 1 für Standardmodus</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation>Unbekannter Standort</translation> | ||||
|     </message> | ||||
|  | @ -1379,13 +1379,13 @@ Drücke 1 für Standardmodus</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../UserInterface.cpp" line="439"/> | ||||
|         <location filename="../UserInterface.cpp" line="515"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>Spielstanddateien (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="516"/> | ||||
|         <location filename="../UserInterface.cpp" line="440"/> | ||||
|         <location filename="../UserInterface.cpp" line="516"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation>Snapmatic Bilder (PGTA*)</translation> | ||||
|     </message> | ||||
|  | @ -1405,7 +1405,7 @@ Drücke 1 für Standardmodus</translation> | |||
|         <location filename="../ImportDialog.cpp" line="534"/> | ||||
|         <location filename="../ImportDialog.cpp" line="844"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="441"/> | ||||
|         <location filename="../UserInterface.cpp" line="517"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>Alle Dateien (**)</translation> | ||||
|     </message> | ||||
|  | @ -1426,13 +1426,13 @@ Drücke 1 für Standardmodus</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Fehler beim Lesen vom Snapmatic Bild</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>Fehler beim Lesen von Spielstanddatei</translation> | ||||
|     </message> | ||||
|  | @ -1473,7 +1473,7 @@ Drücke 1 für Standardmodus</translation> | |||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>Keine gültige Datei wurde ausgewählt</translation> | ||||
|     </message> | ||||
|  | @ -1677,13 +1677,13 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Exportiere Datei %1 von %2 Dateien</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="437"/> | ||||
|         <location filename="../UserInterface.cpp" line="513"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="514"/> | ||||
|         <location filename="../UserInterface.cpp" line="438"/> | ||||
|         <location filename="../UserInterface.cpp" line="514"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation>GTA V Export (*.g5e)</translation> | ||||
|     </message> | ||||
|  | @ -1906,8 +1906,8 @@ Drücke 1 für Standardmodus</translation> | |||
|         <location filename="../JsonEditorDialog.cpp" line="176"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="212"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation>Snapmatic Eigenschaften</translation> | ||||
|  | @ -1949,7 +1949,7 @@ Drücke 1 für Standardmodus</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation>Snapmatic Titel</translation> | ||||
|     </message> | ||||
|  | @ -1959,30 +1959,30 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Snapmatic Werte</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="258"/> | ||||
|         <source>Crew: %1 (%2)</source> | ||||
|         <translation>Crew: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="239"/> | ||||
|         <source>Title: %1 (%2)</source> | ||||
|         <translation>Titel: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="210"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="211"/> | ||||
|         <source>Players: %1 (%2)</source> | ||||
|         <comment>Multiple Player are inserted here</comment> | ||||
|         <translation>Spieler: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="213"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="214"/> | ||||
|         <source>Player: %1 (%2)</source> | ||||
|         <comment>One Player is inserted here</comment> | ||||
|         <translation>Spieler: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>Appropriate: %1</source> | ||||
|         <translation>Angemessen: %1</translation> | ||||
|     </message> | ||||
|  | @ -2022,20 +2022,20 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Abbre&chen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="207"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="237"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="256"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="208"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <source>Edit</source> | ||||
|         <translation>Bearbeiten</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <source>Yes</source> | ||||
|         <comment>Yes, should work fine</comment> | ||||
|         <translation>Ja</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>No</source> | ||||
|         <comment>No, could lead to issues</comment> | ||||
|         <translation>Nein</translation> | ||||
|  | @ -2057,27 +2057,27 @@ Drücke 1 für Standardmodus</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation>Neuer Snapmatic Titel:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation>Snapmatic Crew</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation>Neue Snapmatic Crew:</translation> | ||||
|     </message> | ||||
|  | @ -2410,7 +2410,7 @@ Drücke 1 für Standardmodus</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="232"/> | ||||
|         <location filename="../UserInterface.cpp" line="309"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation>Wähle &GTA V Ordner...</translation> | ||||
|     </message> | ||||
|  | @ -2426,7 +2426,8 @@ Drücke 1 für Standardmodus</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="216"/> | ||||
|         <location filename="../UserInterface.cpp" line="715"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>S&chließen</translation> | ||||
|     </message> | ||||
|  | @ -2461,53 +2462,74 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Dateien &importieren...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="70"/> | ||||
|         <location filename="../UserInterface.cpp" line="296"/> | ||||
|         <location filename="../UserInterface.cpp" line="747"/> | ||||
|         <location filename="../UserInterface.cpp" line="71"/> | ||||
|         <location filename="../UserInterface.cpp" line="372"/> | ||||
|         <location filename="../UserInterface.cpp" line="818"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation>Profil auswählen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="756"/> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <location filename="../UserInterface.cpp" line="700"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="708"/> | ||||
|         <location filename="../UserInterface.cpp" line="255"/> | ||||
|         <location filename="../UserInterface.cpp" line="773"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation>Wähle GTA V Ordner...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="434"/> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation>Datei öffnen...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="20"/> | ||||
|         <location filename="../UserInterface.cpp" line="68"/> | ||||
|         <location filename="../UserInterface.cpp" line="69"/> | ||||
|         <source>%2 - %1</source> | ||||
|         <translation>%2 - %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="66"/> | ||||
|         <location filename="../UserInterface.cpp" line="733"/> | ||||
|         <location filename="../UserInterface.cpp" line="67"/> | ||||
|         <location filename="../UserInterface.cpp" line="805"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation>&Über %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="159"/> | ||||
|         <location filename="../UserInterface.cpp" line="802"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation>Spen&den</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <source>Donate</source> | ||||
|         <translation>Spenden</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <source>Donation methods</source> | ||||
|         <translation>Spendenmethoden</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="205"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>Kopieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>Open File</source> | ||||
|         <translation>Datei öffnen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation>Kann nicht %1 öffnen weil Dateiformat nicht gültig ist</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="613"/> | ||||
|         <location filename="../UserInterface.cpp" line="680"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation>%1 - Nachrichten</translation> | ||||
|     </message> | ||||
|  |  | |||
|  | @ -167,8 +167,8 @@ Pictures and Savegames</source> | |||
| <context> | ||||
|     <name>ImageEditorDialog</name> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|  | @ -200,13 +200,13 @@ Pictures and Savegames</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -728,26 +728,26 @@ Y: %2</source> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Found: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="406"/> | ||||
|         <location filename="../OptionsDialog.ui" line="429"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="645"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -763,7 +763,7 @@ Y: %2</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="580"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -784,8 +784,8 @@ Y: %2</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="594"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -848,7 +848,7 @@ Y: %2</source> | |||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="230"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="279"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="274"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -923,62 +923,62 @@ Y: %2</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>The new Custom Folder will initialize after you restart %1.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="519"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="521"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="496"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="501"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="581"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Yes</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>No</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1049,42 +1049,42 @@ Y: %2</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="468"/> | ||||
|         <location filename="../PictureDialog.cpp" line="463"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="662"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="219"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="657"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="220"/> | ||||
|         <source>No Players</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="641"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="636"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="597"/> | ||||
|         <location filename="../PictureDialog.cpp" line="592"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1357,19 +1357,19 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="514"/> | ||||
|         <location filename="../UserInterface.cpp" line="438"/> | ||||
|         <location filename="../UserInterface.cpp" line="514"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../UserInterface.cpp" line="439"/> | ||||
|         <location filename="../UserInterface.cpp" line="515"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="516"/> | ||||
|         <location filename="../UserInterface.cpp" line="440"/> | ||||
|         <location filename="../UserInterface.cpp" line="516"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1384,14 +1384,14 @@ Press 1 for Default View</source> | |||
|         <location filename="../ImportDialog.cpp" line="534"/> | ||||
|         <location filename="../ImportDialog.cpp" line="844"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="441"/> | ||||
|         <location filename="../UserInterface.cpp" line="517"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1410,13 +1410,13 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1640,7 +1640,7 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="437"/> | ||||
|         <location filename="../UserInterface.cpp" line="513"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1854,8 +1854,8 @@ Press 1 for Default View</source> | |||
|         <location filename="../JsonEditorDialog.cpp" line="176"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="212"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1901,30 +1901,30 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="258"/> | ||||
|         <source>Crew: %1 (%2)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="239"/> | ||||
|         <source>Title: %1 (%2)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="210"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="211"/> | ||||
|         <source>Players: %1 (%2)</source> | ||||
|         <comment>Multiple Player are inserted here</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="213"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="214"/> | ||||
|         <source>Player: %1 (%2)</source> | ||||
|         <comment>One Player is inserted here</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>Appropriate: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1964,20 +1964,20 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="207"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="237"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="256"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="208"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <source>Edit</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <source>Yes</source> | ||||
|         <comment>Yes, should work fine</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>No</source> | ||||
|         <comment>No, could lead to issues</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1999,33 +1999,33 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2259,7 +2259,7 @@ Press 1 for Default View</source> | |||
|     <name>UserInterface</name> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="20"/> | ||||
|         <location filename="../UserInterface.cpp" line="68"/> | ||||
|         <location filename="../UserInterface.cpp" line="69"/> | ||||
|         <source>%2 - %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2291,7 +2291,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="216"/> | ||||
|         <location filename="../UserInterface.cpp" line="715"/> | ||||
|         <source>&Close</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2322,8 +2323,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="66"/> | ||||
|         <location filename="../UserInterface.cpp" line="733"/> | ||||
|         <location filename="../UserInterface.cpp" line="67"/> | ||||
|         <location filename="../UserInterface.cpp" line="805"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2379,15 +2380,15 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="232"/> | ||||
|         <location filename="../UserInterface.cpp" line="309"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="756"/> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <location filename="../UserInterface.cpp" line="700"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="708"/> | ||||
|         <location filename="../UserInterface.cpp" line="255"/> | ||||
|         <location filename="../UserInterface.cpp" line="773"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2435,32 +2436,53 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="70"/> | ||||
|         <location filename="../UserInterface.cpp" line="296"/> | ||||
|         <location filename="../UserInterface.cpp" line="747"/> | ||||
|         <location filename="../UserInterface.cpp" line="71"/> | ||||
|         <location filename="../UserInterface.cpp" line="372"/> | ||||
|         <location filename="../UserInterface.cpp" line="818"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="434"/> | ||||
|         <location filename="../UserInterface.cpp" line="159"/> | ||||
|         <location filename="../UserInterface.cpp" line="802"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <source>Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <source>Donation methods</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="205"/> | ||||
|         <source>Copy</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>Open File</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="613"/> | ||||
|         <location filename="../UserInterface.cpp" line="680"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -178,8 +178,8 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation> | |||
| <context> | ||||
|     <name>ImageEditorDialog</name> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|  | @ -211,13 +211,13 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation> | |||
|         <translation>&Fermer</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation>Échec du patch Snapmatic : I/O Error</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation>Échec du patch Snapmatic : Image Error</translation> | ||||
|  | @ -757,26 +757,26 @@ Y : %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Found: %1</source> | ||||
|         <translation>Trouvé : %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="406"/> | ||||
|         <location filename="../OptionsDialog.ui" line="429"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="645"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation>Langue : %1</translation> | ||||
|     </message> | ||||
|  | @ -797,7 +797,7 @@ Y : %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="580"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation>Participer aux statistiques d'usage %1</translation> | ||||
|     </message> | ||||
|  | @ -828,8 +828,8 @@ Y : %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="594"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>ID de participation : %1</translation> | ||||
|     </message> | ||||
|  | @ -881,7 +881,7 @@ Y : %2</translation> | |||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="230"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="279"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="274"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation>Actuel : %1</translation> | ||||
|     </message> | ||||
|  | @ -956,62 +956,62 @@ Y : %2</translation> | |||
|         <translation>%1 (Priorité de la langue)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>Le nouveau Dossier personnalisé sera initialisé au redémarrage de %1.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="581"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>Voir les statistiques d'usage %1 en ligne</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>Pas enregistré</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>Oui</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>No</source> | ||||
|         <translation>Non</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>Défini par le système d'exploitation</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Défini par Steam</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>Aucun profil</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="519"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="521"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="496"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="501"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>Profil : %1</translation> | ||||
|     </message> | ||||
|  | @ -1171,7 +1171,7 @@ Y : %2</translation> | |||
|         <translation>Ouvrir la &Visionneuse de Carte...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="468"/> | ||||
|         <location filename="../PictureDialog.cpp" line="463"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|  | @ -1180,37 +1180,37 @@ Touche 2 - Activer/désactiver l'overlay | |||
| Touches fléchées - Naviguer</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>Visionneuse de photo Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>Echec de %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="641"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="636"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation>Aucun crew</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="662"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="219"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="657"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="220"/> | ||||
|         <source>No Players</source> | ||||
|         <translation>Aucun joueurs</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="597"/> | ||||
|         <location filename="../PictureDialog.cpp" line="592"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation>Mode Aperçu Avatar | ||||
| Appuyer sur 1 pour le mode par défaut</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation>Emplacement inconnu</translation> | ||||
|     </message> | ||||
|  | @ -1391,13 +1391,13 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../UserInterface.cpp" line="439"/> | ||||
|         <location filename="../UserInterface.cpp" line="515"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>Fichiers de sauvegarde GTA (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="516"/> | ||||
|         <location filename="../UserInterface.cpp" line="440"/> | ||||
|         <location filename="../UserInterface.cpp" line="516"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation>Photos Snapmatic (PGTA*)</translation> | ||||
|     </message> | ||||
|  | @ -1412,7 +1412,7 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <location filename="../ImportDialog.cpp" line="534"/> | ||||
|         <location filename="../ImportDialog.cpp" line="844"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="441"/> | ||||
|         <location filename="../UserInterface.cpp" line="517"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>Tous les fichiers (**)</translation> | ||||
|     </message> | ||||
|  | @ -1434,7 +1434,7 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>Fichier invalide</translation> | ||||
|     </message> | ||||
|  | @ -1445,13 +1445,13 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Impossible d'ouvrir la photo Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>Impossible de lire le fichier de sauvegarde</translation> | ||||
|     </message> | ||||
|  | @ -1679,13 +1679,13 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation>Supprimer la sélection ?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="437"/> | ||||
|         <location filename="../UserInterface.cpp" line="513"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="514"/> | ||||
|         <location filename="../UserInterface.cpp" line="438"/> | ||||
|         <location filename="../UserInterface.cpp" line="514"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation>GTA V Export (*.g5e)</translation> | ||||
|     </message> | ||||
|  | @ -1916,8 +1916,8 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <location filename="../JsonEditorDialog.cpp" line="176"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="212"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation>Propriétés Snapmatic</translation> | ||||
|  | @ -1959,7 +1959,7 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation>Titre Snapmatic</translation> | ||||
|     </message> | ||||
|  | @ -1969,30 +1969,30 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation>Valeurs Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="258"/> | ||||
|         <source>Crew: %1 (%2)</source> | ||||
|         <translation>Crew : %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="239"/> | ||||
|         <source>Title: %1 (%2)</source> | ||||
|         <translation>Titre : %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="210"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="211"/> | ||||
|         <source>Players: %1 (%2)</source> | ||||
|         <comment>Multiple Player are inserted here</comment> | ||||
|         <translation>Joueurs : %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="213"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="214"/> | ||||
|         <source>Player: %1 (%2)</source> | ||||
|         <comment>One Player is inserted here</comment> | ||||
|         <translation>Joueur : %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>Appropriate: %1</source> | ||||
|         <translation>Valide : %1</translation> | ||||
|     </message> | ||||
|  | @ -2032,21 +2032,21 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation>A&nnuler</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="207"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="237"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="256"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="208"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <source>Edit</source> | ||||
|         <translation>Éditer</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <source>Yes</source> | ||||
|         <comment>Yes, should work fine</comment> | ||||
|         <translatorcomment>Oui, devrait fonctionner</translatorcomment> | ||||
|         <translation>Oui</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>No</source> | ||||
|         <comment>No, could lead to issues</comment> | ||||
|         <translatorcomment>Non, pourrait causer des erreurs</translatorcomment> | ||||
|  | @ -2069,27 +2069,27 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation>La modification des propriétés Snapmatic a échoué : erreur d'entrée/sortie</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation>Nouveau titre Snapmatic :</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation>Crew Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation>Nouveau crew Snapmatic :</translation> | ||||
|     </message> | ||||
|  | @ -2349,7 +2349,8 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="216"/> | ||||
|         <location filename="../UserInterface.cpp" line="715"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>Fer&mer</translation> | ||||
|     </message> | ||||
|  | @ -2425,15 +2426,15 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="232"/> | ||||
|         <location filename="../UserInterface.cpp" line="309"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation>Modifier l'emplacement de &GTA V...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="756"/> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <location filename="../UserInterface.cpp" line="700"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="708"/> | ||||
|         <location filename="../UserInterface.cpp" line="255"/> | ||||
|         <location filename="../UserInterface.cpp" line="773"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation>Modifier l'emplacement de GTA V...</translation> | ||||
|     </message> | ||||
|  | @ -2487,44 +2488,69 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="20"/> | ||||
|         <location filename="../UserInterface.cpp" line="68"/> | ||||
|         <location filename="../UserInterface.cpp" line="69"/> | ||||
|         <source>%2 - %1</source> | ||||
|         <translation>%2 - %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="66"/> | ||||
|         <location filename="../UserInterface.cpp" line="733"/> | ||||
|         <location filename="../UserInterface.cpp" line="67"/> | ||||
|         <location filename="../UserInterface.cpp" line="805"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation>&À propos de %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="70"/> | ||||
|         <location filename="../UserInterface.cpp" line="296"/> | ||||
|         <location filename="../UserInterface.cpp" line="747"/> | ||||
|         <location filename="../UserInterface.cpp" line="71"/> | ||||
|         <location filename="../UserInterface.cpp" line="372"/> | ||||
|         <location filename="../UserInterface.cpp" line="818"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation>Sélectionner un profil</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="434"/> | ||||
|         <location filename="../UserInterface.cpp" line="159"/> | ||||
|         <location filename="../UserInterface.cpp" line="802"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <source>Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <source>Donation methods</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="205"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>Copier</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <source>&Copy</source> | ||||
|         <translation type="obsolete">&Copier</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation>Ouvrir...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>Open File</source> | ||||
|         <translation>Ouvrir</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation>Impossible d'ouvrir %1, format invalide</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="613"/> | ||||
|         <location filename="../UserInterface.cpp" line="680"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation>%1 - Nouvelles</translation> | ||||
|     </message> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -202,21 +202,21 @@ Pictures and Savegames</source> | |||
|         <translation>닫기(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|         <translation>스냅매틱 이미지 편집기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation>I/O 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation>이미지 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다.</translation> | ||||
|  | @ -763,26 +763,26 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Found: %1</source> | ||||
|         <translation>찾음: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="406"/> | ||||
|         <location filename="../OptionsDialog.ui" line="429"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="645"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation>언어: %1</translation> | ||||
|     </message> | ||||
|  | @ -803,7 +803,7 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="580"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation>사용자 통계 참가 %1</translation> | ||||
|     </message> | ||||
|  | @ -839,8 +839,8 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="594"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>참여 아이디: %1</translation> | ||||
|     </message> | ||||
|  | @ -863,7 +863,7 @@ Y: %2</translation> | |||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="230"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="279"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="274"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation>현재: %1</translation> | ||||
|     </message> | ||||
|  | @ -967,64 +967,64 @@ Y: %2</translation> | |||
|         <translation>%1 (인터페이스와 가까운 언어)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translatorcomment>%1</translatorcomment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>다시 시작한 후 새 사용자 지정 폴더가 초기화됩니다. %1.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translatorcomment>프로필 없음 (기본값)</translatorcomment> | ||||
|         <translation>프로필 없음</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="519"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="521"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="496"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="501"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>프로필: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="581"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>온라인 %1 사용자 통계 보기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>등록되지 않았습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>예</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>No</source> | ||||
|         <translation>아니요</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>OS 정의</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>스팀 정의</translation> | ||||
|     </message> | ||||
|  | @ -1104,7 +1104,7 @@ Y: %2</translation> | |||
|         <translation>JSON 편집기 열기(&J)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="468"/> | ||||
|         <location filename="../PictureDialog.cpp" line="463"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|  | @ -1113,35 +1113,35 @@ Arrow Keys - Navigate</source> | |||
| 화살표키 - 이동</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>스냅매틱 이미지 뷰어</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>%1에서 실패했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="662"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="219"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="657"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="220"/> | ||||
|         <source>No Players</source> | ||||
|         <translation>플레이어 없음</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="641"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="636"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation>조직 없음</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation>알 수 없는 위치</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="597"/> | ||||
|         <location filename="../PictureDialog.cpp" line="592"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation>아바타 미리 보기 모드입니다. | ||||
|  | @ -1393,7 +1393,7 @@ Press 1 for Default View</source> | |||
|         <location filename="../ImportDialog.cpp" line="534"/> | ||||
|         <location filename="../ImportDialog.cpp" line="844"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="441"/> | ||||
|         <location filename="../UserInterface.cpp" line="517"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>모든 파일 (**)</translation> | ||||
|     </message> | ||||
|  | @ -1438,26 +1438,26 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="514"/> | ||||
|         <location filename="../UserInterface.cpp" line="438"/> | ||||
|         <location filename="../UserInterface.cpp" line="514"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation>GTA V로 내보내기 (*.g5e)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../UserInterface.cpp" line="439"/> | ||||
|         <location filename="../UserInterface.cpp" line="515"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>세이브 파일 (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="516"/> | ||||
|         <location filename="../UserInterface.cpp" line="440"/> | ||||
|         <location filename="../UserInterface.cpp" line="516"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation>스냅매틱 이미지 (PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>올바른 파일이 선택되지 않았습니다.</translation> | ||||
|     </message> | ||||
|  | @ -1478,13 +1478,13 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>스냅매틱 이미지를 읽지 못했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>세이브 파일을 읽지 못했습니다.</translation> | ||||
|     </message> | ||||
|  | @ -1703,7 +1703,7 @@ Press 1 for Default View</source> | |||
|         <translation>제목 변경</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="437"/> | ||||
|         <location filename="../UserInterface.cpp" line="513"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation>모든 프로필 파일 (*.g5e SGTA* PGTA*)</translation> | ||||
|     </message> | ||||
|  | @ -1934,8 +1934,8 @@ Press 1 for Default View</source> | |||
|         <location filename="../JsonEditorDialog.cpp" line="176"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="212"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation>스냅매틱 속성</translation> | ||||
|  | @ -2027,8 +2027,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation>I/O 오류로 인해 스냅매틱 속성을 패치하지 못했습니다.</translation> | ||||
|  | @ -2040,76 +2040,76 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation>조직 스냅매틱</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation>새로운 조직 스냅매틱:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation>스냅매틱 제목</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation>새로운 스냅매틱 제목:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="207"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="237"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="256"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="208"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <source>Edit</source> | ||||
|         <translation>편집</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="210"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="211"/> | ||||
|         <source>Players: %1 (%2)</source> | ||||
|         <comment>Multiple Player are inserted here</comment> | ||||
|         <translatorcomment>여기에 여러 플레이어가 추가됩니다.</translatorcomment> | ||||
|         <translation>플레이어: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="213"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="214"/> | ||||
|         <source>Player: %1 (%2)</source> | ||||
|         <comment>One Player is inserted here</comment> | ||||
|         <translatorcomment>여기에 플레이어 하나가 추가됩니다.</translatorcomment> | ||||
|         <translation>플레이어: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="239"/> | ||||
|         <source>Title: %1 (%2)</source> | ||||
|         <translation>제목: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>Appropriate: %1</source> | ||||
|         <translation>변경: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <source>Yes</source> | ||||
|         <comment>Yes, should work fine</comment> | ||||
|         <translatorcomment>네, 잘 될 거예요.</translatorcomment> | ||||
|         <translation>예</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>No</source> | ||||
|         <comment>No, could lead to issues</comment> | ||||
|         <translatorcomment>아니요, 문제가 발생할 수 있습니다.</translatorcomment> | ||||
|         <translation>아니요</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="258"/> | ||||
|         <source>Crew: %1 (%2)</source> | ||||
|         <translation>조직: %1 (%2)</translation> | ||||
|     </message> | ||||
|  | @ -2344,7 +2344,7 @@ Press 1 for Default View</source> | |||
|     <name>UserInterface</name> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="20"/> | ||||
|         <location filename="../UserInterface.cpp" line="68"/> | ||||
|         <location filename="../UserInterface.cpp" line="69"/> | ||||
|         <source>%2 - %1</source> | ||||
|         <translation>%2 - %1</translation> | ||||
|     </message> | ||||
|  | @ -2377,7 +2377,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="216"/> | ||||
|         <location filename="../UserInterface.cpp" line="715"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>닫기(&C)</translation> | ||||
|     </message> | ||||
|  | @ -2413,8 +2414,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="66"/> | ||||
|         <location filename="../UserInterface.cpp" line="733"/> | ||||
|         <location filename="../UserInterface.cpp" line="67"/> | ||||
|         <location filename="../UserInterface.cpp" line="805"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation>%1 정보(&A)</translation> | ||||
|     </message> | ||||
|  | @ -2470,15 +2471,15 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="232"/> | ||||
|         <location filename="../UserInterface.cpp" line="309"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation>GTA V 폴더 선택(&G)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="756"/> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <location filename="../UserInterface.cpp" line="700"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="708"/> | ||||
|         <location filename="../UserInterface.cpp" line="255"/> | ||||
|         <location filename="../UserInterface.cpp" line="773"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation>GTA V 폴더 선택</translation> | ||||
|     </message> | ||||
|  | @ -2535,32 +2536,57 @@ Press 1 for Default View</source> | |||
|         <translation>인게임 숨기기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="70"/> | ||||
|         <location filename="../UserInterface.cpp" line="296"/> | ||||
|         <location filename="../UserInterface.cpp" line="747"/> | ||||
|         <location filename="../UserInterface.cpp" line="71"/> | ||||
|         <location filename="../UserInterface.cpp" line="372"/> | ||||
|         <location filename="../UserInterface.cpp" line="818"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation>프로필 선택</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="434"/> | ||||
|         <location filename="../UserInterface.cpp" line="159"/> | ||||
|         <location filename="../UserInterface.cpp" line="802"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <source>Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <source>Donation methods</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="205"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>복사</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <source>&Copy</source> | ||||
|         <translation type="obsolete">복사(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation>파일 열기...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>Open File</source> | ||||
|         <translation>파일 열기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation>올바른 파일 형식이 아니므로 %1을 열 수 없습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="613"/> | ||||
|         <location filename="../UserInterface.cpp" line="680"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation>%1 - 뉴스</translation> | ||||
|     </message> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -181,8 +181,8 @@ Pictures and Savegames</source> | |||
| <context> | ||||
|     <name>ImageEditorDialog</name> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|  | @ -214,13 +214,13 @@ Pictures and Savegames</source> | |||
|         <translation>&Закрыть</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation>Не удалось изменить картинку Snapmatic из-за ошибки ввода-вывода</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation>Не удалось изменить картинку Snapmatic из-за ошибки Image Error</translation> | ||||
|  | @ -763,26 +763,26 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Found: %1</source> | ||||
|         <translation>Найдено: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="406"/> | ||||
|         <location filename="../OptionsDialog.ui" line="429"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="645"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation>Язык: %1</translation> | ||||
|     </message> | ||||
|  | @ -803,7 +803,7 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="580"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation>Участвовать в пользовательской статистике %1</translation> | ||||
|     </message> | ||||
|  | @ -836,8 +836,8 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="594"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>Номер участника: %1</translation> | ||||
|     </message> | ||||
|  | @ -891,7 +891,7 @@ Y: %2</translation> | |||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="230"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="279"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="274"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation>Сейчас: %1</translation> | ||||
|     </message> | ||||
|  | @ -966,62 +966,62 @@ Y: %2</translation> | |||
|         <translation>%1 (Приоритетный язык)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>Другая папка будет загружена после перезапуска %1.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="581"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>Посмотреть пользовательскую статистику %1 онлайн</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>Не зарегистрирован</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>Да</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>No</source> | ||||
|         <translation>Нет</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>Настройка от ОС</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Настройка от Steam</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>Нет профиля</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="519"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="521"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="496"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="501"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>Профиль: %1</translation> | ||||
|     </message> | ||||
|  | @ -1101,7 +1101,7 @@ Y: %2</translation> | |||
|         <translation>Открыть &карту...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="468"/> | ||||
|         <location filename="../PictureDialog.cpp" line="463"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|  | @ -1110,37 +1110,37 @@ Arrow Keys - Navigate</source> | |||
| Стрелки - Навигация</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>Просмотрщик фотографий Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>Ошибка при %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="641"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="636"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation>Вне банды</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="662"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="219"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="657"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="220"/> | ||||
|         <source>No Players</source> | ||||
|         <translation>Игроков нет</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="597"/> | ||||
|         <location filename="../PictureDialog.cpp" line="592"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation>Режим просмотра аватарок | ||||
| Нажмите 1 для стандартного просмотра</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation>Неизвестное место</translation> | ||||
|     </message> | ||||
|  | @ -1391,13 +1391,13 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../UserInterface.cpp" line="439"/> | ||||
|         <location filename="../UserInterface.cpp" line="515"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>Файлы сохранения (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="516"/> | ||||
|         <location filename="../UserInterface.cpp" line="440"/> | ||||
|         <location filename="../UserInterface.cpp" line="516"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation>Картинка Snapmatic (PGTA*)</translation> | ||||
|     </message> | ||||
|  | @ -1405,7 +1405,7 @@ Press 1 for Default View</source> | |||
|         <location filename="../ImportDialog.cpp" line="534"/> | ||||
|         <location filename="../ImportDialog.cpp" line="844"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="441"/> | ||||
|         <location filename="../UserInterface.cpp" line="517"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>Все файлы (**)</translation> | ||||
|     </message> | ||||
|  | @ -1426,20 +1426,20 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Не удалось загрузить картинку Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>Не удалось загрузить файл сохранения</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>Выбранный файл неверен</translation> | ||||
|     </message> | ||||
|  | @ -1692,13 +1692,13 @@ Press 1 for Default View</source> | |||
|         <translation>Экспортируется файл %1 из %2</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="437"/> | ||||
|         <location filename="../UserInterface.cpp" line="513"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="514"/> | ||||
|         <location filename="../UserInterface.cpp" line="438"/> | ||||
|         <location filename="../UserInterface.cpp" line="514"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation>GTA V Export (*.g5e)</translation> | ||||
|     </message> | ||||
|  | @ -1921,8 +1921,8 @@ Press 1 for Default View</source> | |||
|         <location filename="../JsonEditorDialog.cpp" line="176"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="212"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation>Свойства Snapmatic</translation> | ||||
|  | @ -1963,7 +1963,7 @@ Press 1 for Default View</source> | |||
|         <translation>Значения в Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="258"/> | ||||
|         <source>Crew: %1 (%2)</source> | ||||
|         <translation>Банда: %1 (%2)</translation> | ||||
|     </message> | ||||
|  | @ -1974,30 +1974,30 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation>Заголовок Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="239"/> | ||||
|         <source>Title: %1 (%2)</source> | ||||
|         <translation>Заголовок: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="210"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="211"/> | ||||
|         <source>Players: %1 (%2)</source> | ||||
|         <comment>Multiple Player are inserted here</comment> | ||||
|         <translation>Игроки: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="213"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="214"/> | ||||
|         <source>Player: %1 (%2)</source> | ||||
|         <comment>One Player is inserted here</comment> | ||||
|         <translation>Игрок: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>Appropriate: %1</source> | ||||
|         <translation>Подходит: %1</translation> | ||||
|     </message> | ||||
|  | @ -2037,20 +2037,20 @@ Press 1 for Default View</source> | |||
|         <translation>&Отмена</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="207"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="237"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="256"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="208"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <source>Edit</source> | ||||
|         <translation>Правка</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <source>Yes</source> | ||||
|         <comment>Yes, should work fine</comment> | ||||
|         <translation>Да</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>No</source> | ||||
|         <comment>No, could lead to issues</comment> | ||||
|         <translation>Нет</translation> | ||||
|  | @ -2072,27 +2072,27 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation>Новый заголовок Snapmatic:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation>Банда на Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation>Новая банда на Snapmatic:</translation> | ||||
|     </message> | ||||
|  | @ -2392,7 +2392,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="232"/> | ||||
|         <location filename="../UserInterface.cpp" line="309"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation>Выбрать &папку GTA V...</translation> | ||||
|     </message> | ||||
|  | @ -2436,7 +2436,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="216"/> | ||||
|         <location filename="../UserInterface.cpp" line="715"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>&Закрыть</translation> | ||||
|     </message> | ||||
|  | @ -2476,53 +2477,78 @@ Press 1 for Default View</source> | |||
|         <translation>&Открыть файл...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="70"/> | ||||
|         <location filename="../UserInterface.cpp" line="296"/> | ||||
|         <location filename="../UserInterface.cpp" line="747"/> | ||||
|         <location filename="../UserInterface.cpp" line="71"/> | ||||
|         <location filename="../UserInterface.cpp" line="372"/> | ||||
|         <location filename="../UserInterface.cpp" line="818"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation>Выбор профиля</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="756"/> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <location filename="../UserInterface.cpp" line="700"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="708"/> | ||||
|         <location filename="../UserInterface.cpp" line="255"/> | ||||
|         <location filename="../UserInterface.cpp" line="773"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation>Выбрать папку GTA V...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="20"/> | ||||
|         <location filename="../UserInterface.cpp" line="68"/> | ||||
|         <location filename="../UserInterface.cpp" line="69"/> | ||||
|         <source>%2 - %1</source> | ||||
|         <translation>%2 - %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="66"/> | ||||
|         <location filename="../UserInterface.cpp" line="733"/> | ||||
|         <location filename="../UserInterface.cpp" line="67"/> | ||||
|         <location filename="../UserInterface.cpp" line="805"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation>&О программе %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="434"/> | ||||
|         <location filename="../UserInterface.cpp" line="159"/> | ||||
|         <location filename="../UserInterface.cpp" line="802"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <source>Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <source>Donation methods</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <source>&Copy</source> | ||||
|         <translation type="obsolete">&Копировать</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="205"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>Копировать</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation>Открыть файл...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>Open File</source> | ||||
|         <translation>Открыть файл</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation>Не удалось открыть %1 из-за неверного формата файла</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="613"/> | ||||
|         <location filename="../UserInterface.cpp" line="680"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation>%1 - Новости</translation> | ||||
|     </message> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -205,21 +205,21 @@ Pictures and Savegames</source> | |||
|         <translation>&Закрити</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|         <translation>Редактор Snapmatic зображень</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation>Виправлення Snapmatic зображення не вдалося через I/O Error</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation>Виправлення Snapmatic зображення не вдалося через помилку картинки</translation> | ||||
|  | @ -759,26 +759,26 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Found: %1</source> | ||||
|         <translation>Знайдено:%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="406"/> | ||||
|         <location filename="../OptionsDialog.ui" line="429"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="645"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation>Мова: %1</translation> | ||||
|     </message> | ||||
|  | @ -800,7 +800,7 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="580"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation>Опитування %1 про устаткування ПК</translation> | ||||
|     </message> | ||||
|  | @ -836,8 +836,8 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="594"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>ID учасника : %1</translation> | ||||
|     </message> | ||||
|  | @ -860,7 +860,7 @@ Y: %2</translation> | |||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="230"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="279"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="274"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation>Зараз: %1</translation> | ||||
|     </message> | ||||
|  | @ -959,62 +959,62 @@ Y: %2</translation> | |||
|         <translation>%1 (пріоритет мови)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>Нова користувацька папка буде ініціалізована після перезапуску %1.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>Жодного</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="519"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="521"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="496"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="501"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>Профіль: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="581"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>Переглянути користувацьку статистику %1 онлайн</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>Не зареєстрований</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>Так</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>No</source> | ||||
|         <translation>Ні</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>Визначається ОС</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Визначається Steam</translation> | ||||
|     </message> | ||||
|  | @ -1094,7 +1094,7 @@ Y: %2</translation> | |||
|         <translation>Відкрити редактор &JSON...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="468"/> | ||||
|         <location filename="../PictureDialog.cpp" line="463"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|  | @ -1103,35 +1103,35 @@ Arrow Keys - Navigate</source> | |||
| Стрілки - Навігація</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>Переглядач фотографій Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>Помилка на%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="662"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="219"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="657"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="220"/> | ||||
|         <source>No Players</source> | ||||
|         <translation>Гравців немає</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="641"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="636"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation>Банди немає</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation>Невідома локація</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="597"/> | ||||
|         <location filename="../PictureDialog.cpp" line="592"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation>Режим для аватарок | ||||
|  | @ -1383,7 +1383,7 @@ Press 1 for Default View</source> | |||
|         <location filename="../ImportDialog.cpp" line="534"/> | ||||
|         <location filename="../ImportDialog.cpp" line="844"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="441"/> | ||||
|         <location filename="../UserInterface.cpp" line="517"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>Усі файли (**)</translation> | ||||
|     </message> | ||||
|  | @ -1428,26 +1428,26 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="514"/> | ||||
|         <location filename="../UserInterface.cpp" line="438"/> | ||||
|         <location filename="../UserInterface.cpp" line="514"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation>GTA V Export (*.g5e)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../UserInterface.cpp" line="439"/> | ||||
|         <location filename="../UserInterface.cpp" line="515"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>Файли збереження гри (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="516"/> | ||||
|         <location filename="../UserInterface.cpp" line="440"/> | ||||
|         <location filename="../UserInterface.cpp" line="516"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation>Snapmatic зображення (PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>Вибрані недійсні файли</translation> | ||||
|     </message> | ||||
|  | @ -1468,13 +1468,13 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Не вдалося прочитати Snapmatic картинку</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>Не вдалося прочитати файл збереження гри</translation> | ||||
|     </message> | ||||
|  | @ -1688,7 +1688,7 @@ Press 1 for Default View</source> | |||
|         <translation>Змінити назву</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="437"/> | ||||
|         <location filename="../UserInterface.cpp" line="513"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation>Усі файли зображень (*.g5e SGTA* PGTA*)</translation> | ||||
|     </message> | ||||
|  | @ -1919,8 +1919,8 @@ Press 1 for Default View</source> | |||
|         <location filename="../JsonEditorDialog.cpp" line="176"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="212"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation>Властивості Snapmatic</translation> | ||||
|  | @ -2012,8 +2012,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation> | ||||
|  | @ -2025,72 +2025,72 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation>Snapmatic банда</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation>Нова Snapmatic банда:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation>Snapmatic назва</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation>Новий Snapmatic заголовок:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="207"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="237"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="256"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="208"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <source>Edit</source> | ||||
|         <translation>Правка</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="210"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="211"/> | ||||
|         <source>Players: %1 (%2)</source> | ||||
|         <comment>Multiple Player are inserted here</comment> | ||||
|         <translation>Гравці: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="213"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="214"/> | ||||
|         <source>Player: %1 (%2)</source> | ||||
|         <comment>One Player is inserted here</comment> | ||||
|         <translation>Гравець: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="239"/> | ||||
|         <source>Title: %1 (%2)</source> | ||||
|         <translation>Назва: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>Appropriate: %1</source> | ||||
|         <translation>Підходить: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <source>Yes</source> | ||||
|         <comment>Yes, should work fine</comment> | ||||
|         <translation>Так</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>No</source> | ||||
|         <comment>No, could lead to issues</comment> | ||||
|         <translation>Ні</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="258"/> | ||||
|         <source>Crew: %1 (%2)</source> | ||||
|         <translation>Банда: %1 (%2)</translation> | ||||
|     </message> | ||||
|  | @ -2325,7 +2325,7 @@ Press 1 for Default View</source> | |||
|     <name>UserInterface</name> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="20"/> | ||||
|         <location filename="../UserInterface.cpp" line="68"/> | ||||
|         <location filename="../UserInterface.cpp" line="69"/> | ||||
|         <source>%2 - %1</source> | ||||
|         <translation>%2 - %1</translation> | ||||
|     </message> | ||||
|  | @ -2357,7 +2357,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="216"/> | ||||
|         <location filename="../UserInterface.cpp" line="715"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>&Закрити</translation> | ||||
|     </message> | ||||
|  | @ -2393,8 +2394,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="66"/> | ||||
|         <location filename="../UserInterface.cpp" line="733"/> | ||||
|         <location filename="../UserInterface.cpp" line="67"/> | ||||
|         <location filename="../UserInterface.cpp" line="805"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation>&Про %1</translation> | ||||
|     </message> | ||||
|  | @ -2450,15 +2451,15 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="232"/> | ||||
|         <location filename="../UserInterface.cpp" line="309"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation>Вибрати &GTA V теку...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="756"/> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <location filename="../UserInterface.cpp" line="700"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="708"/> | ||||
|         <location filename="../UserInterface.cpp" line="255"/> | ||||
|         <location filename="../UserInterface.cpp" line="773"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation>Вибрати GTA V теку...</translation> | ||||
|     </message> | ||||
|  | @ -2515,32 +2516,57 @@ Press 1 for Default View</source> | |||
|         <translation>Сховати у грі</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="70"/> | ||||
|         <location filename="../UserInterface.cpp" line="296"/> | ||||
|         <location filename="../UserInterface.cpp" line="747"/> | ||||
|         <location filename="../UserInterface.cpp" line="71"/> | ||||
|         <location filename="../UserInterface.cpp" line="372"/> | ||||
|         <location filename="../UserInterface.cpp" line="818"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation>Вибрати профіль</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="434"/> | ||||
|         <location filename="../UserInterface.cpp" line="159"/> | ||||
|         <location filename="../UserInterface.cpp" line="802"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <source>Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <source>Donation methods</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="205"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>Копіювати</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <source>&Copy</source> | ||||
|         <translation type="obsolete">&Копіювати</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation>Відкрити файл...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>Open File</source> | ||||
|         <translation>Відкрити файл</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation>Неможливо відкрити %1 через невідомий формат файлу</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="613"/> | ||||
|         <location filename="../UserInterface.cpp" line="680"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation>%1 - Новини</translation> | ||||
|     </message> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -201,21 +201,21 @@ Pictures and Savegames</source> | |||
|         <translation>關閉(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|         <translation>Snapmatic 圖片編輯器</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="857"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="370"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation>I/O 錯誤,Snapmatic 圖片更新失敗</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="883"/> | ||||
|         <location filename="../PictureDialog.cpp" line="878"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="396"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation>圖片錯誤,Snapmatic 圖片更新失敗</translation> | ||||
|  | @ -754,26 +754,26 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Found: %1</source> | ||||
|         <translation>找到: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="406"/> | ||||
|         <location filename="../OptionsDialog.ui" line="429"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="645"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation>語言: %1</translation> | ||||
|     </message> | ||||
|  | @ -794,7 +794,7 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="580"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation>參與 %1 使用者統計</translation> | ||||
|     </message> | ||||
|  | @ -830,8 +830,8 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="594"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>參與 ID: %1</translation> | ||||
|     </message> | ||||
|  | @ -854,7 +854,7 @@ Y: %2</translation> | |||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="230"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="279"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="274"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation>目前: %1</translation> | ||||
|     </message> | ||||
|  | @ -953,62 +953,62 @@ Y: %2</translation> | |||
|         <translation>%1 (遊戲語言)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="479"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>自訂資料夾將在 %1 重新啟動後初始化.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>無</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="519"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="521"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="496"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="501"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>設定檔: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="581"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>檢視 %1 使用者統計資訊</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="629"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="597"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>未註冊參與</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="677"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="613"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="626"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="637"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>是</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="662"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="614"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>No</source> | ||||
|         <translation>否</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="619"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="642"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>系統定義</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="671"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="692"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="648"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Steam 定義</translation> | ||||
|     </message> | ||||
|  | @ -1088,7 +1088,7 @@ Y: %2</translation> | |||
|         <translation>開啟 JSON 編輯器(&J)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="468"/> | ||||
|         <location filename="../PictureDialog.cpp" line="463"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|  | @ -1097,35 +1097,35 @@ Arrow Keys - Navigate</source> | |||
| 方向鍵 - 導覽</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>Snapmatic 圖片檢視器</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="523"/> | ||||
|         <location filename="../PictureDialog.cpp" line="518"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>失敗: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="662"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="219"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="657"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="220"/> | ||||
|         <source>No Players</source> | ||||
|         <translation>無</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="641"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <location filename="../PictureDialog.cpp" line="636"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation>無</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="544"/> | ||||
|         <location filename="../PictureDialog.cpp" line="539"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation>未知地點</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="597"/> | ||||
|         <location filename="../PictureDialog.cpp" line="592"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation>大頭貼預覽模式 | ||||
|  | @ -1377,7 +1377,7 @@ Press 1 for Default View</source> | |||
|         <location filename="../ImportDialog.cpp" line="534"/> | ||||
|         <location filename="../ImportDialog.cpp" line="844"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="441"/> | ||||
|         <location filename="../UserInterface.cpp" line="517"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>所有檔案 (**)</translation> | ||||
|     </message> | ||||
|  | @ -1422,26 +1422,26 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="514"/> | ||||
|         <location filename="../UserInterface.cpp" line="438"/> | ||||
|         <location filename="../UserInterface.cpp" line="514"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation>GTA V Export (*.g5e)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../UserInterface.cpp" line="439"/> | ||||
|         <location filename="../UserInterface.cpp" line="515"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>遊戲存檔 (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="516"/> | ||||
|         <location filename="../UserInterface.cpp" line="440"/> | ||||
|         <location filename="../UserInterface.cpp" line="516"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation>Snapmatic 圖片 (PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>沒有選擇有效的檔案</translation> | ||||
|     </message> | ||||
|  | @ -1460,13 +1460,13 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>無法讀取 Snapmatic 圖片</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>無法讀取遊戲存檔</translation> | ||||
|     </message> | ||||
|  | @ -1678,7 +1678,7 @@ Press 1 for Default View</source> | |||
|         <translation>更改標題</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="437"/> | ||||
|         <location filename="../UserInterface.cpp" line="513"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation>所有設定檔檔案 (*.g5e SGTA* PGTA*)</translation> | ||||
|     </message> | ||||
|  | @ -1901,8 +1901,8 @@ Press 1 for Default View</source> | |||
|         <location filename="../JsonEditorDialog.cpp" line="176"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="212"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation>Snapmatic 屬性</translation> | ||||
|  | @ -1994,8 +1994,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="181"/> | ||||
|         <location filename="../PictureDialog.cpp" line="778"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="301"/> | ||||
|         <location filename="../PictureDialog.cpp" line="773"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="302"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="428"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation>讀寫錯誤,未能更新 Snapmatic 屬性</translation> | ||||
|  | @ -2007,72 +2007,72 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation>幫會</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="402"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="403"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation>輸入新的幫會:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation>標題</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="378"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="379"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation>輸入新的標題:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="207"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="237"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="256"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="208"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <source>Edit</source> | ||||
|         <translation>編輯</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="210"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="211"/> | ||||
|         <source>Players: %1 (%2)</source> | ||||
|         <comment>Multiple Player are inserted here</comment> | ||||
|         <translation>玩家: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="213"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="214"/> | ||||
|         <source>Player: %1 (%2)</source> | ||||
|         <comment>One Player is inserted here</comment> | ||||
|         <translation>玩家: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="238"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="239"/> | ||||
|         <source>Title: %1 (%2)</source> | ||||
|         <translation>標題: %1 (%2)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>Appropriate: %1</source> | ||||
|         <translation>可使用: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="241"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="242"/> | ||||
|         <source>Yes</source> | ||||
|         <comment>Yes, should work fine</comment> | ||||
|         <translation>是</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="244"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="245"/> | ||||
|         <source>No</source> | ||||
|         <comment>No, could lead to issues</comment> | ||||
|         <translation>否</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="257"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="258"/> | ||||
|         <source>Crew: %1 (%2)</source> | ||||
|         <translation>幫會: %1 (%2)</translation> | ||||
|     </message> | ||||
|  | @ -2306,7 +2306,7 @@ Press 1 for Default View</source> | |||
|     <name>UserInterface</name> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="20"/> | ||||
|         <location filename="../UserInterface.cpp" line="68"/> | ||||
|         <location filename="../UserInterface.cpp" line="69"/> | ||||
|         <source>%2 - %1</source> | ||||
|         <translation>%2 - %1</translation> | ||||
|     </message> | ||||
|  | @ -2338,7 +2338,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="216"/> | ||||
|         <location filename="../UserInterface.cpp" line="715"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>關閉(&C)</translation> | ||||
|     </message> | ||||
|  | @ -2374,8 +2375,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="66"/> | ||||
|         <location filename="../UserInterface.cpp" line="733"/> | ||||
|         <location filename="../UserInterface.cpp" line="67"/> | ||||
|         <location filename="../UserInterface.cpp" line="805"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation>關於 %1(&A)</translation> | ||||
|     </message> | ||||
|  | @ -2431,15 +2432,15 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="232"/> | ||||
|         <location filename="../UserInterface.cpp" line="309"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation>選擇 GTA V 資料夾(&G)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="756"/> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <location filename="../UserInterface.cpp" line="700"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="708"/> | ||||
|         <location filename="../UserInterface.cpp" line="255"/> | ||||
|         <location filename="../UserInterface.cpp" line="773"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation>選擇 GTA V 資料夾...</translation> | ||||
|     </message> | ||||
|  | @ -2496,32 +2497,57 @@ Press 1 for Default View</source> | |||
|         <translation>在遊戲中隱藏</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="70"/> | ||||
|         <location filename="../UserInterface.cpp" line="296"/> | ||||
|         <location filename="../UserInterface.cpp" line="747"/> | ||||
|         <location filename="../UserInterface.cpp" line="71"/> | ||||
|         <location filename="../UserInterface.cpp" line="372"/> | ||||
|         <location filename="../UserInterface.cpp" line="818"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation>選擇設定檔</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="434"/> | ||||
|         <location filename="../UserInterface.cpp" line="159"/> | ||||
|         <location filename="../UserInterface.cpp" line="802"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <source>Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="177"/> | ||||
|         <source>Donation methods</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="205"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>複製</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <source>&Copy</source> | ||||
|         <translation type="obsolete">複製(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation>開啟檔案...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="481"/> | ||||
|         <location filename="../UserInterface.cpp" line="497"/> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="529"/> | ||||
|         <location filename="../UserInterface.cpp" line="554"/> | ||||
|         <location filename="../UserInterface.cpp" line="568"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <location filename="../UserInterface.cpp" line="598"/> | ||||
|         <source>Open File</source> | ||||
|         <translation>開啟檔案</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="524"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation>格式無效,無法開啟 %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="613"/> | ||||
|         <location filename="../UserInterface.cpp" line="680"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation>%1 - 新聞</translation> | ||||
|     </message> | ||||
|  |  | |||
							
								
								
									
										
											BIN
										
									
								
								res/ltc.svgz
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								res/ltc.svgz
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								res/xmr.svgz
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								res/xmr.svgz
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								res/zec.svgz
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								res/zec.svgz
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue