This commit is contained in:
		
							parent
							
								
									fc08d29fe8
								
							
						
					
					
						commit
						9c937ff270
					
				
					 22 changed files with 681 additions and 641 deletions
				
			
		|  | @ -108,6 +108,11 @@ OptionsDialog::OptionsDialog(ProfileDatabase *profileDB, QWidget *parent) : | |||
|         ui->cmdCancel->setIcon(QIcon::fromTheme("gtk-cancel")); | ||||
|     } | ||||
| 
 | ||||
|     // Set Icon for Copy Button
 | ||||
|     if (QIcon::hasThemeIcon("edit-copy")) { | ||||
|         ui->cmdCopyStatsID->setIcon(QIcon::fromTheme("edit-copy")); | ||||
|     } | ||||
| 
 | ||||
|     setupTreeWidget(); | ||||
|     setupLanguageBox(); | ||||
|     setupRadioButtons(); | ||||
|  |  | |||
|  | @ -187,75 +187,103 @@ UserInterface::UserInterface(ProfileDatabase *profileDB, CrewDatabase *crewDB, D | |||
| #endif | ||||
|         QVBoxLayout *donateLayout = new QVBoxLayout; | ||||
|         donateDialog->setLayout(donateLayout); | ||||
|         QLabel *methodsLabel = new QLabel(QString("<b>%1</b>").arg(tr("Donation methods").toHtmlEscaped()), this); | ||||
|         QLabel *methodsLabel = new QLabel(QString("<b>%1</b>").arg(tr("Donation methods").toHtmlEscaped()), donateDialog); | ||||
|         methodsLabel->setWordWrap(true); | ||||
|         donateLayout->addWidget(methodsLabel); | ||||
|         QHBoxLayout *currencyLayout = new QHBoxLayout; | ||||
|         donateLayout->addLayout(currencyLayout); | ||||
|         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); | ||||
|                 QString currencyStr = currency; | ||||
|                 const QString strPath = QString(":/donate/%1.str").arg(currency); | ||||
|                 if (QFile::exists(strPath)) { | ||||
|                     QFile strFile(strPath); | ||||
|                     if (strFile.open(QIODevice::ReadOnly)) { | ||||
|                         currencyStr = QString::fromUtf8(strFile.readAll()); | ||||
|                         strFile.close(); | ||||
|                     } | ||||
|                 } | ||||
|                 QLabel *currencyLabel = new QLabel(currency, this); | ||||
|                 currencyLabel->setTextFormat(Qt::PlainText); | ||||
|                 QFont currencyFont = QFontDatabase::systemFont(QFontDatabase::FixedFont); | ||||
|                 currencyFont.setWeight(QFont::Bold); | ||||
|                 currencyFont.setCapitalization(QFont::AllUppercase); | ||||
|                 currencyLabel->setFont(currencyFont); | ||||
|                 addressLayout->addWidget(currencyLabel); | ||||
|                 QLabel *addressLabel = new QLabel(address, this); | ||||
|                 addressLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); | ||||
|                 addressLabel->setTextInteractionFlags(Qt::TextSelectableByMouse); | ||||
|                 addressLabel->setFont(QFontDatabase::systemFont(QFontDatabase::FixedFont)); | ||||
|                 addressLabel->setWordWrap(true); | ||||
|                 addressLayout->addWidget(addressLabel); | ||||
|                 QPushButton *viewAddressButton = new QPushButton(tr("View"), this); | ||||
|                 QObject::connect(viewAddressButton, &QPushButton::pressed, this, [=](){ | ||||
|                 const QString iconPath = QString(":/donate/%1.svgz").arg(currency); | ||||
|                 QPushButton *currencyButton = new QPushButton(currencyStr, donateDialog); | ||||
|                 currencyButton->setToolTip(currencyStr); | ||||
|                 if (QFile::exists(iconPath)) { | ||||
|                     currencyButton->setIconSize(QSize(32, 32)); | ||||
|                     currencyButton->setIcon(QIcon(iconPath)); | ||||
|                 } | ||||
|                 currencyLayout->addWidget(currencyButton); | ||||
|                 QObject::connect(currencyButton, &QPushButton::pressed, donateDialog, [=](){ | ||||
|                     QDialog *addressDialog = new QDialog(donateDialog); | ||||
|                     addressDialog->setWindowTitle(currencyStr); | ||||
| #if QT_VERSION >= 0x050900 | ||||
|                     addressDialog->setWindowFlag(Qt::WindowContextHelpButtonHint, false); | ||||
| #else | ||||
|                     addressDialog->setWindowFlags(donateDialog->windowFlags()^Qt::WindowContextHelpButtonHint); | ||||
| #endif | ||||
|                     QVBoxLayout *addressLayout = new QVBoxLayout; | ||||
|                     addressDialog->setLayout(addressLayout); | ||||
|                     QLabel *addressLabel = new QLabel(address, addressDialog); | ||||
|                     addressLabel->setAlignment(Qt::AlignCenter); | ||||
|                     addressLabel->setTextFormat(Qt::PlainText); | ||||
|                     addressLabel->setTextInteractionFlags(Qt::TextSelectableByMouse); | ||||
|                     addressLayout->addWidget(addressLabel); | ||||
|                     QHBoxLayout *qrLayout = new QHBoxLayout; | ||||
|                     qrLayout->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum)); | ||||
|                     QrCode qr = QrCode::encodeText(address.toUtf8().constData(), QrCode::Ecc::MEDIUM); | ||||
|                     const std::string svgString = qr.toSvgString(0); | ||||
|                     QSvgRenderer svgRenderer(QByteArray::fromRawData(svgString.c_str(), svgString.size())); | ||||
|                     qreal screenRatio = AppEnv::screenRatio(); | ||||
|                     qreal screenRatioPR = AppEnv::screenRatioPR(); | ||||
|                     const QSize widgetSize = QSize(300, 300) * screenRatio; | ||||
|                     const QSize widgetSize = QSize(200, 200) * screenRatio; | ||||
|                     const QSize pixmapSize = widgetSize * screenRatioPR; | ||||
|                     QPixmap addressPixmap(pixmapSize); | ||||
|                     addressPixmap.fill(Qt::white); | ||||
|                     QPainter addressPainter(&addressPixmap); | ||||
|                     svgRenderer.render(&addressPainter, QRectF(QPointF(0, 0), pixmapSize)); | ||||
|                     addressPainter.end(); | ||||
|                     QPixmap qrPixmap(pixmapSize); | ||||
|                     qrPixmap.fill(Qt::white); | ||||
|                     QPainter qrPainter(&qrPixmap); | ||||
|                     svgRenderer.render(&qrPainter, QRectF(QPointF(0, 0), pixmapSize)); | ||||
|                     qrPainter.end(); | ||||
| #if QT_VERSION >= 0x050600 | ||||
|                     addressPixmap.setDevicePixelRatio(screenRatioPR); | ||||
|                     qrPixmap.setDevicePixelRatio(screenRatioPR); | ||||
| #endif | ||||
|                     QLabel *addressLabel = new QLabel(addressDialog); | ||||
|                     addressLabel->setFixedSize(widgetSize); | ||||
|                     addressLabel->setPixmap(addressPixmap); | ||||
|                     addressLayout->addWidget(addressLabel); | ||||
|                     addressDialog->setFixedSize(addressDialog->sizeHint()); | ||||
|                     QLabel *qrLabel = new QLabel(addressDialog); | ||||
|                     qrLabel->setFixedSize(widgetSize); | ||||
|                     qrLabel->setPixmap(qrPixmap); | ||||
|                     qrLayout->addWidget(qrLabel); | ||||
|                     qrLayout->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum)); | ||||
|                     addressLayout->addLayout(qrLayout); | ||||
|                     QHBoxLayout *buttonLayout = new QHBoxLayout; | ||||
|                     buttonLayout->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum)); | ||||
|                     QPushButton *copyAddressButton = new QPushButton(tr("&Copy"), addressDialog); | ||||
|                     if (QIcon::hasThemeIcon("edit-copy")) { | ||||
|                         copyAddressButton->setIcon(QIcon::fromTheme("edit-copy")); | ||||
|                     } | ||||
|                     QObject::connect(copyAddressButton, &QPushButton::pressed, addressDialog, [=](){ | ||||
|                         QApplication::clipboard()->setText(address); | ||||
|                     }); | ||||
|                     buttonLayout->addWidget(copyAddressButton); | ||||
|                     QPushButton *closeButton = new QPushButton(tr("&Close"), addressDialog); | ||||
|                     if (QIcon::hasThemeIcon("dialog-close")) { | ||||
|                         closeButton->setIcon(QIcon::fromTheme("dialog-close")); | ||||
|                     } | ||||
|                     else if (QIcon::hasThemeIcon("gtk-close")) { | ||||
|                         closeButton->setIcon(QIcon::fromTheme("gtk-close")); | ||||
|                     } | ||||
|                     closeButton->setDefault(true); | ||||
|                     buttonLayout->addWidget(closeButton); | ||||
|                     buttonLayout->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum)); | ||||
|                     addressLayout->addLayout(buttonLayout); | ||||
|                     QObject::connect(closeButton, &QPushButton::clicked, addressDialog, &QDialog::accept); | ||||
|                     QObject::connect(addressDialog, &QDialog::finished, addressDialog, &QDialog::deleteLater); | ||||
|                     QTimer::singleShot(0, addressDialog, [=](){ | ||||
|                         addressDialog->setFocus(); | ||||
|                     }); | ||||
|                     addressDialog->open(); | ||||
|                     addressDialog->setFixedSize(addressDialog->size()); | ||||
|                 }); | ||||
|                 addressLayout->addWidget(viewAddressButton); | ||||
|                 QPushButton *copyAddressButton = new QPushButton(tr("Copy"), this); | ||||
|                 QObject::connect(copyAddressButton, &QPushButton::pressed, this, [=](){ | ||||
|                     QApplication::clipboard()->setText(address); | ||||
|                 }); | ||||
|                 addressLayout->addWidget(copyAddressButton); | ||||
|                 donateLayout->addLayout(addressLayout); | ||||
|             } | ||||
|         } | ||||
|         donateLayout->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding)); | ||||
|         QHBoxLayout *buttonLayout = new QHBoxLayout; | ||||
|         buttonLayout->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum)); | ||||
|         QPushButton *closeButton = new QPushButton(donateDialog); | ||||
|  | @ -271,10 +299,11 @@ UserInterface::UserInterface(ProfileDatabase *profileDB, CrewDatabase *crewDB, D | |||
|         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(); | ||||
|         QTimer::singleShot(0, donateDialog, [=](){ | ||||
|             donateDialog->setFocus(); | ||||
|         }); | ||||
|         donateDialog->open(); | ||||
|         donateDialog->setFixedSize(donateDialog->size()); | ||||
|     }); | ||||
| #endif | ||||
| #endif | ||||
|  |  | |||
							
								
								
									
										1
									
								
								res/btc.str
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								res/btc.str
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1 @@ | |||
| Bitcoin | ||||
|  | @ -1,9 +1,14 @@ | |||
| <RCC> | ||||
|     <qresource prefix="/donate"> | ||||
|         <file>btc.str</file> | ||||
|         <file>btc.svgz</file> | ||||
|         <file>eth.str</file> | ||||
|         <file>eth.svgz</file> | ||||
|         <file>ltc.str</file> | ||||
|         <file>ltc.svgz</file> | ||||
|         <file>xmr.str</file> | ||||
|         <file>xmr.svgz</file> | ||||
|         <file>zec.str</file> | ||||
|         <file>zec.svgz</file> | ||||
|     </qresource> | ||||
|     <qresource prefix="/img"> | ||||
|  |  | |||
							
								
								
									
										1
									
								
								res/eth.str
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								res/eth.str
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1 @@ | |||
| Ethereum | ||||
							
								
								
									
										148
									
								
								res/gta5sync.ts
									
										
									
									
									
								
							
							
						
						
									
										148
									
								
								res/gta5sync.ts
									
										
									
									
									
								
							|  | @ -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="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <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="607"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="620"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="630"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="612"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="635"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="641"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <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="571"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="576"/> | ||||
|         <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="585"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="590"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -827,8 +827,8 @@ Y: %2</source> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="224"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="265"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="229"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="270"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -890,95 +890,95 @@ Y: %2</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>System</source> | ||||
|         <comment>System in context of System default</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <source>%1 (Game language)</source> | ||||
|         <comment>Next closest language compared to the Game settings</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>%1 (Closest to Interface)</source> | ||||
|         <comment>Next closest language compared to the Interface</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>Auto</source> | ||||
|         <comment>Automatic language choice.</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>%1 (Language priority)</source> | ||||
|         <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="480"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="485"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="487"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="490"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="492"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="495"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="572"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="577"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <source>Yes</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <source>No</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -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="495"/> | ||||
|         <location filename="../UserInterface.cpp" line="564"/> | ||||
|         <location filename="../UserInterface.cpp" line="593"/> | ||||
|         <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="491"/> | ||||
|         <location filename="../UserInterface.cpp" line="561"/> | ||||
|         <location filename="../UserInterface.cpp" line="590"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="492"/> | ||||
|         <location filename="../UserInterface.cpp" line="562"/> | ||||
|         <location filename="../UserInterface.cpp" line="591"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="493"/> | ||||
|         <location filename="../UserInterface.cpp" line="563"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="904"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <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="608"/> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <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="560"/> | ||||
|         <location filename="../UserInterface.cpp" line="589"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2291,8 +2291,9 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="262"/> | ||||
|         <location filename="../UserInterface.cpp" line="762"/> | ||||
|         <location filename="../UserInterface.cpp" line="266"/> | ||||
|         <location filename="../UserInterface.cpp" line="290"/> | ||||
|         <location filename="../UserInterface.cpp" line="791"/> | ||||
|         <source>&Close</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2329,7 +2330,7 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="77"/> | ||||
|         <location filename="../UserInterface.cpp" line="852"/> | ||||
|         <location filename="../UserInterface.cpp" line="881"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2385,15 +2386,15 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="356"/> | ||||
|         <location filename="../UserInterface.cpp" line="385"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="699"/> | ||||
|         <location filename="../UserInterface.cpp" line="302"/> | ||||
|         <location filename="../UserInterface.cpp" line="820"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="704"/> | ||||
|         <location filename="../UserInterface.cpp" line="331"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2451,14 +2452,14 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="81"/> | ||||
|         <location filename="../UserInterface.cpp" line="419"/> | ||||
|         <location filename="../UserInterface.cpp" line="865"/> | ||||
|         <location filename="../UserInterface.cpp" line="448"/> | ||||
|         <location filename="../UserInterface.cpp" line="894"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <location filename="../UserInterface.cpp" line="878"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2473,35 +2474,30 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="221"/> | ||||
|         <source>View</source> | ||||
|         <location filename="../UserInterface.cpp" line="258"/> | ||||
|         <source>&Copy</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="250"/> | ||||
|         <source>Copy</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="557"/> | ||||
|         <location filename="../UserInterface.cpp" line="586"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <source>Open File</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="727"/> | ||||
|         <location filename="../UserInterface.cpp" line="756"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -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="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <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="607"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="620"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="630"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="612"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="635"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="641"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <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="571"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="576"/> | ||||
|         <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="585"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="590"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>Teilnahme ID: %1</translation> | ||||
|     </message> | ||||
|  | @ -884,8 +884,8 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="224"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="265"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="229"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="270"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation>Aktuell: %1</translation> | ||||
|     </message> | ||||
|  | @ -922,95 +922,95 @@ Y: %2</translation> | |||
|         <translation>Abbre&chen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>System</source> | ||||
|         <comment>System in context of System default</comment> | ||||
|         <translation>System</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <source>%1 (Game language)</source> | ||||
|         <comment>Next closest language compared to the Game settings</comment> | ||||
|         <translation>%1 (Spielsprache)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>%1 (Closest to Interface)</source> | ||||
|         <comment>Next closest language compared to the Interface</comment> | ||||
|         <translation>%1 (Näheste zur Oberfläche)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>Auto</source> | ||||
|         <comment>Automatic language choice.</comment> | ||||
|         <translation>Automatisch</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>%1 (Language priority)</source> | ||||
|         <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> | ||||
|         <translation>%1 (Sprachenpriorität)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <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="572"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="577"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>%1 Benutzerstatistik Online ansehen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>Nicht registriert</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>Ja</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <source>No</source> | ||||
|         <translation>Nein</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>OS-defined</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Steam-definiert</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="480"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="485"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>Kein Profil</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="487"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="490"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="492"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="495"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>Profil: %1</translation> | ||||
|     </message> | ||||
|  | @ -1379,13 +1379,13 @@ Drücke 1 für Standardmodus</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="492"/> | ||||
|         <location filename="../UserInterface.cpp" line="562"/> | ||||
|         <location filename="../UserInterface.cpp" line="591"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>Spielstanddateien (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="493"/> | ||||
|         <location filename="../UserInterface.cpp" line="563"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <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="495"/> | ||||
|         <location filename="../UserInterface.cpp" line="564"/> | ||||
|         <location filename="../UserInterface.cpp" line="593"/> | ||||
|         <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="608"/> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Fehler beim Lesen vom Snapmatic Bild</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <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="515"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="904"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <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="560"/> | ||||
|         <location filename="../UserInterface.cpp" line="589"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="491"/> | ||||
|         <location filename="../UserInterface.cpp" line="561"/> | ||||
|         <location filename="../UserInterface.cpp" line="590"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation>GTA V Export (*.g5e)</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="356"/> | ||||
|         <location filename="../UserInterface.cpp" line="385"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation>Wähle &GTA V Ordner...</translation> | ||||
|     </message> | ||||
|  | @ -2426,8 +2426,9 @@ Drücke 1 für Standardmodus</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="262"/> | ||||
|         <location filename="../UserInterface.cpp" line="762"/> | ||||
|         <location filename="../UserInterface.cpp" line="266"/> | ||||
|         <location filename="../UserInterface.cpp" line="290"/> | ||||
|         <location filename="../UserInterface.cpp" line="791"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>S&chließen</translation> | ||||
|     </message> | ||||
|  | @ -2463,21 +2464,21 @@ Drücke 1 für Standardmodus</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="81"/> | ||||
|         <location filename="../UserInterface.cpp" line="419"/> | ||||
|         <location filename="../UserInterface.cpp" line="865"/> | ||||
|         <location filename="../UserInterface.cpp" line="448"/> | ||||
|         <location filename="../UserInterface.cpp" line="894"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation>Profil auswählen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="699"/> | ||||
|         <location filename="../UserInterface.cpp" line="302"/> | ||||
|         <location filename="../UserInterface.cpp" line="820"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="704"/> | ||||
|         <location filename="../UserInterface.cpp" line="331"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation>Wähle GTA V Ordner...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="557"/> | ||||
|         <location filename="../UserInterface.cpp" line="586"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation>Datei öffnen...</translation> | ||||
|     </message> | ||||
|  | @ -2490,13 +2491,13 @@ Drücke 1 für Standardmodus</translation> | |||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="77"/> | ||||
|         <location filename="../UserInterface.cpp" line="852"/> | ||||
|         <location filename="../UserInterface.cpp" line="881"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation>&Über %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <location filename="../UserInterface.cpp" line="878"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation>Spen&den</translation> | ||||
|     </message> | ||||
|  | @ -2511,30 +2512,33 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Spendenmethoden</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="221"/> | ||||
|         <location filename="../UserInterface.cpp" line="258"/> | ||||
|         <source>&Copy</source> | ||||
|         <translation>&Kopieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <source>View</source> | ||||
|         <translation>Ansehen</translation> | ||||
|         <translation type="vanished">Ansehen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="250"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>Kopieren</translation> | ||||
|         <translation type="vanished">Kopieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <source>Open File</source> | ||||
|         <translation>Datei öffnen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <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="727"/> | ||||
|         <location filename="../UserInterface.cpp" line="756"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation>%1 - Nachrichten</translation> | ||||
|     </message> | ||||
|  |  | |||
|  | @ -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="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <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="607"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="620"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="630"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="612"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="635"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="641"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <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="571"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="576"/> | ||||
|         <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="585"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="590"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -847,8 +847,8 @@ Y: %2</source> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="224"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="265"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="229"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="270"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -890,95 +890,95 @@ Y: %2</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>System</source> | ||||
|         <comment>System in context of System default</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <source>%1 (Game language)</source> | ||||
|         <comment>Next closest language compared to the Game settings</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>%1 (Closest to Interface)</source> | ||||
|         <comment>Next closest language compared to the Interface</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>Auto</source> | ||||
|         <comment>Automatic language choice.</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>%1 (Language priority)</source> | ||||
|         <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <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="480"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="485"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="487"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="490"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="492"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="495"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="572"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="577"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <source>Yes</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <source>No</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1357,19 +1357,19 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="491"/> | ||||
|         <location filename="../UserInterface.cpp" line="561"/> | ||||
|         <location filename="../UserInterface.cpp" line="590"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="492"/> | ||||
|         <location filename="../UserInterface.cpp" line="562"/> | ||||
|         <location filename="../UserInterface.cpp" line="591"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="493"/> | ||||
|         <location filename="../UserInterface.cpp" line="563"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <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="495"/> | ||||
|         <location filename="../UserInterface.cpp" line="564"/> | ||||
|         <location filename="../UserInterface.cpp" line="593"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="904"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <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="608"/> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <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="560"/> | ||||
|         <location filename="../UserInterface.cpp" line="589"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2291,8 +2291,9 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="262"/> | ||||
|         <location filename="../UserInterface.cpp" line="762"/> | ||||
|         <location filename="../UserInterface.cpp" line="266"/> | ||||
|         <location filename="../UserInterface.cpp" line="290"/> | ||||
|         <location filename="../UserInterface.cpp" line="791"/> | ||||
|         <source>&Close</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2324,7 +2325,7 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="77"/> | ||||
|         <location filename="../UserInterface.cpp" line="852"/> | ||||
|         <location filename="../UserInterface.cpp" line="881"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2380,15 +2381,15 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="356"/> | ||||
|         <location filename="../UserInterface.cpp" line="385"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="699"/> | ||||
|         <location filename="../UserInterface.cpp" line="302"/> | ||||
|         <location filename="../UserInterface.cpp" line="820"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="704"/> | ||||
|         <location filename="../UserInterface.cpp" line="331"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2437,14 +2438,14 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="81"/> | ||||
|         <location filename="../UserInterface.cpp" line="419"/> | ||||
|         <location filename="../UserInterface.cpp" line="865"/> | ||||
|         <location filename="../UserInterface.cpp" line="448"/> | ||||
|         <location filename="../UserInterface.cpp" line="894"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <location filename="../UserInterface.cpp" line="878"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2459,35 +2460,30 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="221"/> | ||||
|         <source>View</source> | ||||
|         <location filename="../UserInterface.cpp" line="258"/> | ||||
|         <source>&Copy</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="250"/> | ||||
|         <source>Copy</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="557"/> | ||||
|         <location filename="../UserInterface.cpp" line="586"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <source>Open File</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="727"/> | ||||
|         <location filename="../UserInterface.cpp" line="756"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -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="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <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="607"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="620"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="630"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="612"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="635"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="641"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <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="571"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="576"/> | ||||
|         <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="585"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="590"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>ID de participation : %1</translation> | ||||
|     </message> | ||||
|  | @ -880,8 +880,8 @@ Y : %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="224"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="265"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="229"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="270"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation>Actuel : %1</translation> | ||||
|     </message> | ||||
|  | @ -923,95 +923,95 @@ Y : %2</translation> | |||
|         <translation>&Annuler</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>System</source> | ||||
|         <comment>System in context of System default</comment> | ||||
|         <translation>Système</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <source>%1 (Game language)</source> | ||||
|         <comment>Next closest language compared to the Game settings</comment> | ||||
|         <translation>%1 (Langue du jeu)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>%1 (Closest to Interface)</source> | ||||
|         <comment>Next closest language compared to the Interface</comment> | ||||
|         <translation>%1 (Langage proche de l'interface)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>Auto</source> | ||||
|         <comment>Automatic language choice.</comment> | ||||
|         <translation>Automatique</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>%1 (Language priority)</source> | ||||
|         <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> | ||||
|         <translation>%1 (Priorité de la langue)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <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="572"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="577"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>Voir les statistiques d'usage %1 en ligne</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>Pas enregistré</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>Oui</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <source>No</source> | ||||
|         <translation>Non</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>Défini par le système d'exploitation</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Défini par Steam</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="480"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="485"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>Aucun profil</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="487"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="490"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="492"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="495"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>Profil : %1</translation> | ||||
|     </message> | ||||
|  | @ -1391,13 +1391,13 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="492"/> | ||||
|         <location filename="../UserInterface.cpp" line="562"/> | ||||
|         <location filename="../UserInterface.cpp" line="591"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>Fichiers de sauvegarde GTA (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="493"/> | ||||
|         <location filename="../UserInterface.cpp" line="563"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <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="495"/> | ||||
|         <location filename="../UserInterface.cpp" line="564"/> | ||||
|         <location filename="../UserInterface.cpp" line="593"/> | ||||
|         <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="515"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="904"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <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="608"/> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Impossible d'ouvrir la photo Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <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="560"/> | ||||
|         <location filename="../UserInterface.cpp" line="589"/> | ||||
|         <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="491"/> | ||||
|         <location filename="../UserInterface.cpp" line="561"/> | ||||
|         <location filename="../UserInterface.cpp" line="590"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation>GTA V Export (*.g5e)</translation> | ||||
|     </message> | ||||
|  | @ -2349,8 +2349,9 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="262"/> | ||||
|         <location filename="../UserInterface.cpp" line="762"/> | ||||
|         <location filename="../UserInterface.cpp" line="266"/> | ||||
|         <location filename="../UserInterface.cpp" line="290"/> | ||||
|         <location filename="../UserInterface.cpp" line="791"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>Fer&mer</translation> | ||||
|     </message> | ||||
|  | @ -2426,15 +2427,15 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="356"/> | ||||
|         <location filename="../UserInterface.cpp" line="385"/> | ||||
|         <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="699"/> | ||||
|         <location filename="../UserInterface.cpp" line="302"/> | ||||
|         <location filename="../UserInterface.cpp" line="820"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="704"/> | ||||
|         <location filename="../UserInterface.cpp" line="331"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation>Modifier l'emplacement de GTA V...</translation> | ||||
|     </message> | ||||
|  | @ -2495,20 +2496,20 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="77"/> | ||||
|         <location filename="../UserInterface.cpp" line="852"/> | ||||
|         <location filename="../UserInterface.cpp" line="881"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation>&À propos de %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="81"/> | ||||
|         <location filename="../UserInterface.cpp" line="419"/> | ||||
|         <location filename="../UserInterface.cpp" line="865"/> | ||||
|         <location filename="../UserInterface.cpp" line="448"/> | ||||
|         <location filename="../UserInterface.cpp" line="894"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation>Sélectionner un profil</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <location filename="../UserInterface.cpp" line="878"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2523,39 +2524,38 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="221"/> | ||||
|         <source>View</source> | ||||
|         <translation>Voir</translation> | ||||
|         <translation type="vanished">Voir</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="250"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>Copier</translation> | ||||
|         <translation type="vanished">Copier</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="258"/> | ||||
|         <source>&Copy</source> | ||||
|         <translation type="obsolete">&Copier</translation> | ||||
|         <translation>&Copier</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="557"/> | ||||
|         <location filename="../UserInterface.cpp" line="586"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation>Ouvrir...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <source>Open File</source> | ||||
|         <translation>Ouvrir</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <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="727"/> | ||||
|         <location filename="../UserInterface.cpp" line="756"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation>%1 - Nouvelles</translation> | ||||
|     </message> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -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="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <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="607"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="620"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="630"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="612"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="635"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="641"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <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="571"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="576"/> | ||||
|         <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="585"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="590"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>참여 아이디: %1</translation> | ||||
|     </message> | ||||
|  | @ -862,8 +862,8 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="224"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="265"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="229"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="270"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation>현재: %1</translation> | ||||
|     </message> | ||||
|  | @ -931,100 +931,100 @@ Y: %2</translation> | |||
|         <translation>취소(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>%1 (Language priority)</source> | ||||
|         <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> | ||||
|         <translation>%1 (우선 순위)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>System</source> | ||||
|         <comment>System in context of System default</comment> | ||||
|         <translation>시스템</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <source>%1 (Game language)</source> | ||||
|         <comment>Next closest language compared to the Game settings</comment> | ||||
|         <translatorcomment>게임 설정과 가장 가까운 언어</translatorcomment> | ||||
|         <translation>%1 (게임 언어)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>Auto</source> | ||||
|         <comment>Automatic language choice.</comment> | ||||
|         <translatorcomment>언어 자동 선택</translatorcomment> | ||||
|         <translation>자동</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>%1 (Closest to Interface)</source> | ||||
|         <comment>Next closest language compared to the Interface</comment> | ||||
|         <translatorcomment>인터페이스와 가장 가까운 언어</translatorcomment> | ||||
|         <translation>%1 (인터페이스와 가까운 언어)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translatorcomment>%1</translatorcomment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>다시 시작한 후 새 사용자 지정 폴더가 초기화됩니다. %1.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="480"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="485"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translatorcomment>프로필 없음 (기본값)</translatorcomment> | ||||
|         <translation>프로필 없음</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="487"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="490"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="492"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="495"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>프로필: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="572"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="577"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>온라인 %1 사용자 통계 보기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>등록되지 않았습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>예</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <source>No</source> | ||||
|         <translation>아니요</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>OS 정의</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>스팀 정의</translation> | ||||
|     </message> | ||||
|  | @ -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="495"/> | ||||
|         <location filename="../UserInterface.cpp" line="564"/> | ||||
|         <location filename="../UserInterface.cpp" line="593"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>모든 파일 (**)</translation> | ||||
|     </message> | ||||
|  | @ -1438,26 +1438,26 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="491"/> | ||||
|         <location filename="../UserInterface.cpp" line="561"/> | ||||
|         <location filename="../UserInterface.cpp" line="590"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation>GTA V로 내보내기 (*.g5e)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="492"/> | ||||
|         <location filename="../UserInterface.cpp" line="562"/> | ||||
|         <location filename="../UserInterface.cpp" line="591"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>세이브 파일 (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="493"/> | ||||
|         <location filename="../UserInterface.cpp" line="563"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation>스냅매틱 이미지 (PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="904"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <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="608"/> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>스냅매틱 이미지를 읽지 못했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <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="560"/> | ||||
|         <location filename="../UserInterface.cpp" line="589"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation>모든 프로필 파일 (*.g5e SGTA* PGTA*)</translation> | ||||
|     </message> | ||||
|  | @ -2377,8 +2377,9 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="262"/> | ||||
|         <location filename="../UserInterface.cpp" line="762"/> | ||||
|         <location filename="../UserInterface.cpp" line="266"/> | ||||
|         <location filename="../UserInterface.cpp" line="290"/> | ||||
|         <location filename="../UserInterface.cpp" line="791"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>닫기(&C)</translation> | ||||
|     </message> | ||||
|  | @ -2415,7 +2416,7 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="77"/> | ||||
|         <location filename="../UserInterface.cpp" line="852"/> | ||||
|         <location filename="../UserInterface.cpp" line="881"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation>%1 정보(&A)</translation> | ||||
|     </message> | ||||
|  | @ -2471,15 +2472,15 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="356"/> | ||||
|         <location filename="../UserInterface.cpp" line="385"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation>GTA V 폴더 선택(&G)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="699"/> | ||||
|         <location filename="../UserInterface.cpp" line="302"/> | ||||
|         <location filename="../UserInterface.cpp" line="820"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="704"/> | ||||
|         <location filename="../UserInterface.cpp" line="331"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation>GTA V 폴더 선택</translation> | ||||
|     </message> | ||||
|  | @ -2537,14 +2538,14 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="81"/> | ||||
|         <location filename="../UserInterface.cpp" line="419"/> | ||||
|         <location filename="../UserInterface.cpp" line="865"/> | ||||
|         <location filename="../UserInterface.cpp" line="448"/> | ||||
|         <location filename="../UserInterface.cpp" line="894"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation>프로필 선택</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <location filename="../UserInterface.cpp" line="878"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation>기부하기(&D)</translation> | ||||
|     </message> | ||||
|  | @ -2559,39 +2560,38 @@ Press 1 for Default View</source> | |||
|         <translation>기부 방법</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="221"/> | ||||
|         <source>View</source> | ||||
|         <translation>보기</translation> | ||||
|         <translation type="vanished">보기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="250"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>복사</translation> | ||||
|         <translation type="vanished">복사</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="258"/> | ||||
|         <source>&Copy</source> | ||||
|         <translation type="obsolete">복사(&C)</translation> | ||||
|         <translation>복사(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="557"/> | ||||
|         <location filename="../UserInterface.cpp" line="586"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation>파일 열기...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <source>Open File</source> | ||||
|         <translation>파일 열기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation>올바른 파일 형식이 아니므로 %1을 열 수 없습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="727"/> | ||||
|         <location filename="../UserInterface.cpp" line="756"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation>%1 - 뉴스</translation> | ||||
|     </message> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -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="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <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="607"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="620"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="630"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="612"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="635"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="641"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <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="571"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="576"/> | ||||
|         <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="585"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="590"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>Номер участника: %1</translation> | ||||
|     </message> | ||||
|  | @ -890,8 +890,8 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="224"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="265"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="229"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="270"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation>Сейчас: %1</translation> | ||||
|     </message> | ||||
|  | @ -933,95 +933,95 @@ Y: %2</translation> | |||
|         <translation>От&мена</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>System</source> | ||||
|         <comment>System in context of System default</comment> | ||||
|         <translation>Система</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <source>%1 (Game language)</source> | ||||
|         <comment>Next closest language compared to the Game settings</comment> | ||||
|         <translation>%1 (Язык игры)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>%1 (Closest to Interface)</source> | ||||
|         <comment>Next closest language compared to the Interface</comment> | ||||
|         <translation>%1 (Как язык интерфейса)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>Auto</source> | ||||
|         <comment>Automatic language choice.</comment> | ||||
|         <translation>Автоматически</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>%1 (Language priority)</source> | ||||
|         <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> | ||||
|         <translation>%1 (Приоритетный язык)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>Другая папка будет загружена после перезапуска %1.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="572"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="577"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>Посмотреть статистику %1 онлайн</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>Не зарегистрирован</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>Да</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <source>No</source> | ||||
|         <translation>Нет</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>Настройка от ОС</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Настройка от Steam</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="480"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="485"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>Не выбран</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="487"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="490"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="492"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="495"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>Профиль: %1</translation> | ||||
|     </message> | ||||
|  | @ -1391,13 +1391,13 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="492"/> | ||||
|         <location filename="../UserInterface.cpp" line="562"/> | ||||
|         <location filename="../UserInterface.cpp" line="591"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>Файлы сохранения (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="493"/> | ||||
|         <location filename="../UserInterface.cpp" line="563"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <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="495"/> | ||||
|         <location filename="../UserInterface.cpp" line="564"/> | ||||
|         <location filename="../UserInterface.cpp" line="593"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>Все файлы (**)</translation> | ||||
|     </message> | ||||
|  | @ -1426,20 +1426,20 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="608"/> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Не удалось загрузить картинку Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>Не удалось загрузить файл сохранения</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="904"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <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="560"/> | ||||
|         <location filename="../UserInterface.cpp" line="589"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="491"/> | ||||
|         <location filename="../UserInterface.cpp" line="561"/> | ||||
|         <location filename="../UserInterface.cpp" line="590"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation>GTA V Export (*.g5e)</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="356"/> | ||||
|         <location filename="../UserInterface.cpp" line="385"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation>Выбрать &папку GTA V...</translation> | ||||
|     </message> | ||||
|  | @ -2436,8 +2436,9 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="262"/> | ||||
|         <location filename="../UserInterface.cpp" line="762"/> | ||||
|         <location filename="../UserInterface.cpp" line="266"/> | ||||
|         <location filename="../UserInterface.cpp" line="290"/> | ||||
|         <location filename="../UserInterface.cpp" line="791"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>&Закрыть</translation> | ||||
|     </message> | ||||
|  | @ -2478,16 +2479,16 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="81"/> | ||||
|         <location filename="../UserInterface.cpp" line="419"/> | ||||
|         <location filename="../UserInterface.cpp" line="865"/> | ||||
|         <location filename="../UserInterface.cpp" line="448"/> | ||||
|         <location filename="../UserInterface.cpp" line="894"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation>Выбор профиля</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="699"/> | ||||
|         <location filename="../UserInterface.cpp" line="302"/> | ||||
|         <location filename="../UserInterface.cpp" line="820"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="704"/> | ||||
|         <location filename="../UserInterface.cpp" line="331"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation>Выбрать папку GTA V...</translation> | ||||
|     </message> | ||||
|  | @ -2500,13 +2501,13 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="77"/> | ||||
|         <location filename="../UserInterface.cpp" line="852"/> | ||||
|         <location filename="../UserInterface.cpp" line="881"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation>&О программе %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <location filename="../UserInterface.cpp" line="878"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation>По&жертвовать</translation> | ||||
|     </message> | ||||
|  | @ -2521,39 +2522,38 @@ Press 1 for Default View</source> | |||
|         <translation>Способы для взноса</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="258"/> | ||||
|         <source>&Copy</source> | ||||
|         <translation type="obsolete">&Копировать</translation> | ||||
|         <translation>&Копировать</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="221"/> | ||||
|         <source>View</source> | ||||
|         <translation>Просмотр</translation> | ||||
|         <translation type="vanished">Просмотр</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="250"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>Копировать</translation> | ||||
|         <translation type="vanished">Копировать</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="557"/> | ||||
|         <location filename="../UserInterface.cpp" line="586"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation>Открыть файл...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <source>Open File</source> | ||||
|         <translation>Открыть файл</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation>Не удалось открыть %1 из-за неверного формата файла</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="727"/> | ||||
|         <location filename="../UserInterface.cpp" line="756"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation>%1 - Новости</translation> | ||||
|     </message> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -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="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <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="607"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="620"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="630"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="612"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="635"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="641"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <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="571"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="576"/> | ||||
|         <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="585"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="590"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>ID учасника : %1</translation> | ||||
|     </message> | ||||
|  | @ -859,8 +859,8 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="224"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="265"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="229"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="270"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation>Зараз: %1</translation> | ||||
|     </message> | ||||
|  | @ -926,95 +926,95 @@ Y: %2</translation> | |||
|         <translation>&Скасувати</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>System</source> | ||||
|         <comment>System in context of System default</comment> | ||||
|         <translation>Як у системи</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <source>%1 (Game language)</source> | ||||
|         <comment>Next closest language compared to the Game settings</comment> | ||||
|         <translation>%1 (Мова гри)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>%1 (Closest to Interface)</source> | ||||
|         <comment>Next closest language compared to the Interface</comment> | ||||
|         <translation>%1 (Співпадає з інтерфейсом)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>Auto</source> | ||||
|         <comment>Automatic language choice.</comment> | ||||
|         <translation>Автоматично</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>%1 (Language priority)</source> | ||||
|         <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> | ||||
|         <translation>%1 (пріоритет мови)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>Нова користувацька папка буде ініціалізована після перезапуску %1.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="480"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="485"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>Жодного</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="487"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="490"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="492"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="495"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>Профіль: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="572"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="577"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>Переглянути користувацьку статистику %1 онлайн</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>Не зареєстрований</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>Так</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <source>No</source> | ||||
|         <translation>Ні</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>Визначається ОС</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Визначається Steam</translation> | ||||
|     </message> | ||||
|  | @ -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="495"/> | ||||
|         <location filename="../UserInterface.cpp" line="564"/> | ||||
|         <location filename="../UserInterface.cpp" line="593"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>Усі файли (**)</translation> | ||||
|     </message> | ||||
|  | @ -1428,26 +1428,26 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="491"/> | ||||
|         <location filename="../UserInterface.cpp" line="561"/> | ||||
|         <location filename="../UserInterface.cpp" line="590"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation>GTA V Export (*.g5e)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="492"/> | ||||
|         <location filename="../UserInterface.cpp" line="562"/> | ||||
|         <location filename="../UserInterface.cpp" line="591"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>Файли збереження гри (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="493"/> | ||||
|         <location filename="../UserInterface.cpp" line="563"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation>Snapmatic зображення (PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="904"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <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="608"/> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Не вдалося прочитати Snapmatic картинку</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <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="560"/> | ||||
|         <location filename="../UserInterface.cpp" line="589"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation>Усі файли зображень (*.g5e SGTA* PGTA*)</translation> | ||||
|     </message> | ||||
|  | @ -2357,8 +2357,9 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="262"/> | ||||
|         <location filename="../UserInterface.cpp" line="762"/> | ||||
|         <location filename="../UserInterface.cpp" line="266"/> | ||||
|         <location filename="../UserInterface.cpp" line="290"/> | ||||
|         <location filename="../UserInterface.cpp" line="791"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>&Закрити</translation> | ||||
|     </message> | ||||
|  | @ -2395,7 +2396,7 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="77"/> | ||||
|         <location filename="../UserInterface.cpp" line="852"/> | ||||
|         <location filename="../UserInterface.cpp" line="881"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation>&Про %1</translation> | ||||
|     </message> | ||||
|  | @ -2451,15 +2452,15 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="356"/> | ||||
|         <location filename="../UserInterface.cpp" line="385"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation>Вибрати &GTA V теку...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="699"/> | ||||
|         <location filename="../UserInterface.cpp" line="302"/> | ||||
|         <location filename="../UserInterface.cpp" line="820"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="704"/> | ||||
|         <location filename="../UserInterface.cpp" line="331"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation>Вибрати GTA V теку...</translation> | ||||
|     </message> | ||||
|  | @ -2517,14 +2518,14 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="81"/> | ||||
|         <location filename="../UserInterface.cpp" line="419"/> | ||||
|         <location filename="../UserInterface.cpp" line="865"/> | ||||
|         <location filename="../UserInterface.cpp" line="448"/> | ||||
|         <location filename="../UserInterface.cpp" line="894"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation>Вибрати профіль</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <location filename="../UserInterface.cpp" line="878"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation>&Пожертвування</translation> | ||||
|     </message> | ||||
|  | @ -2539,39 +2540,38 @@ Press 1 for Default View</source> | |||
|         <translation>Метод пожертвування</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="221"/> | ||||
|         <source>View</source> | ||||
|         <translation>Перегляд</translation> | ||||
|         <translation type="vanished">Перегляд</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="250"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>Копіювати</translation> | ||||
|         <translation type="vanished">Копіювати</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="258"/> | ||||
|         <source>&Copy</source> | ||||
|         <translation type="obsolete">&Копіювати</translation> | ||||
|         <translation>&Копіювати</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="557"/> | ||||
|         <location filename="../UserInterface.cpp" line="586"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation>Відкрити файл...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <source>Open File</source> | ||||
|         <translation>Відкрити файл</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation>Неможливо відкрити %1 через невідомий формат файлу</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="727"/> | ||||
|         <location filename="../UserInterface.cpp" line="756"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation>%1 - Новини</translation> | ||||
|     </message> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -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="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <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="607"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="620"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="630"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="636"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="612"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="635"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="641"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <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="571"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="576"/> | ||||
|         <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="585"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="590"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>參與 ID: %1</translation> | ||||
|     </message> | ||||
|  | @ -853,8 +853,8 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="611"/> | ||||
|         <location filename="../OptionsDialog.ui" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="224"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="265"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="229"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="270"/> | ||||
|         <source>Current: %1</source> | ||||
|         <translation>目前: %1</translation> | ||||
|     </message> | ||||
|  | @ -920,95 +920,95 @@ Y: %2</translation> | |||
|         <translation>取消(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>System</source> | ||||
|         <comment>System in context of System default</comment> | ||||
|         <translation>系統</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>%1 (Closest to Interface)</source> | ||||
|         <comment>Next closest language compared to the Interface</comment> | ||||
|         <translation>%1 (與介面接近的語言)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="182"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="185"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="187"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="190"/> | ||||
|         <source>Auto</source> | ||||
|         <comment>Automatic language choice.</comment> | ||||
|         <translation>自動</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="174"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <source>%1 (Language priority)</source> | ||||
|         <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> | ||||
|         <translation>%1 (語言優先)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="179"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="184"/> | ||||
|         <source>%1 (Game language)</source> | ||||
|         <comment>Next closest language compared to the Game settings</comment> | ||||
|         <translation>%1 (遊戲語言)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="470"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="475"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>自訂資料夾將在 %1 重新啟動後初始化.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="480"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="485"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>無</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="487"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="490"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="492"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="495"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="497"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>設定檔: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="572"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="577"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>檢視 %1 使用者統計資訊</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="588"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="593"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>未註冊參與</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="604"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="627"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="609"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="622"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="632"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>是</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="616"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <source>No</source> | ||||
|         <translation>否</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="610"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="633"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="615"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="638"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>系統定義</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="623"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="628"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Steam 定義</translation> | ||||
|     </message> | ||||
|  | @ -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="495"/> | ||||
|         <location filename="../UserInterface.cpp" line="564"/> | ||||
|         <location filename="../UserInterface.cpp" line="593"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>所有檔案 (**)</translation> | ||||
|     </message> | ||||
|  | @ -1422,26 +1422,26 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="491"/> | ||||
|         <location filename="../UserInterface.cpp" line="561"/> | ||||
|         <location filename="../UserInterface.cpp" line="590"/> | ||||
|         <source>GTA V Export (*.g5e)</source> | ||||
|         <translation>GTA V Export (*.g5e)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="492"/> | ||||
|         <location filename="../UserInterface.cpp" line="562"/> | ||||
|         <location filename="../UserInterface.cpp" line="591"/> | ||||
|         <source>Savegames files (SGTA*)</source> | ||||
|         <translation>遊戲存檔 (SGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="493"/> | ||||
|         <location filename="../UserInterface.cpp" line="563"/> | ||||
|         <location filename="../UserInterface.cpp" line="592"/> | ||||
|         <source>Snapmatic pictures (PGTA*)</source> | ||||
|         <translation>Snapmatic 圖片 (PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="515"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="904"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <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="608"/> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>無法讀取 Snapmatic 圖片</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <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="560"/> | ||||
|         <location filename="../UserInterface.cpp" line="589"/> | ||||
|         <source>All profile files (*.g5e SGTA* PGTA*)</source> | ||||
|         <translation>所有設定檔檔案 (*.g5e SGTA* PGTA*)</translation> | ||||
|     </message> | ||||
|  | @ -2338,8 +2338,9 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="153"/> | ||||
|         <location filename="../UserInterface.cpp" line="262"/> | ||||
|         <location filename="../UserInterface.cpp" line="762"/> | ||||
|         <location filename="../UserInterface.cpp" line="266"/> | ||||
|         <location filename="../UserInterface.cpp" line="290"/> | ||||
|         <location filename="../UserInterface.cpp" line="791"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>關閉(&C)</translation> | ||||
|     </message> | ||||
|  | @ -2376,7 +2377,7 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="236"/> | ||||
|         <location filename="../UserInterface.cpp" line="77"/> | ||||
|         <location filename="../UserInterface.cpp" line="852"/> | ||||
|         <location filename="../UserInterface.cpp" line="881"/> | ||||
|         <source>&About %1</source> | ||||
|         <translation>關於 %1(&A)</translation> | ||||
|     </message> | ||||
|  | @ -2432,15 +2433,15 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="319"/> | ||||
|         <location filename="../UserInterface.cpp" line="356"/> | ||||
|         <location filename="../UserInterface.cpp" line="385"/> | ||||
|         <source>Select &GTA V Folder...</source> | ||||
|         <translation>選擇 GTA V 資料夾(&G)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="699"/> | ||||
|         <location filename="../UserInterface.cpp" line="302"/> | ||||
|         <location filename="../UserInterface.cpp" line="820"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="704"/> | ||||
|         <location filename="../UserInterface.cpp" line="331"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|         <translation>選擇 GTA V 資料夾...</translation> | ||||
|     </message> | ||||
|  | @ -2498,14 +2499,14 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="81"/> | ||||
|         <location filename="../UserInterface.cpp" line="419"/> | ||||
|         <location filename="../UserInterface.cpp" line="865"/> | ||||
|         <location filename="../UserInterface.cpp" line="448"/> | ||||
|         <location filename="../UserInterface.cpp" line="894"/> | ||||
|         <source>Select Profile</source> | ||||
|         <translation>選擇設定檔</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="169"/> | ||||
|         <location filename="../UserInterface.cpp" line="849"/> | ||||
|         <location filename="../UserInterface.cpp" line="878"/> | ||||
|         <source>&Donate</source> | ||||
|         <translation>贊助(&D)</translation> | ||||
|     </message> | ||||
|  | @ -2520,39 +2521,38 @@ Press 1 for Default View</source> | |||
|         <translation>贊助方式</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="221"/> | ||||
|         <source>View</source> | ||||
|         <translation>檢視</translation> | ||||
|         <translation type="vanished">檢視</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="250"/> | ||||
|         <source>Copy</source> | ||||
|         <translation>複製</translation> | ||||
|         <translation type="vanished">複製</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="258"/> | ||||
|         <source>&Copy</source> | ||||
|         <translation type="obsolete">複製(&C)</translation> | ||||
|         <translation>複製(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="557"/> | ||||
|         <location filename="../UserInterface.cpp" line="586"/> | ||||
|         <source>Open File...</source> | ||||
|         <translation>開啟檔案...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="601"/> | ||||
|         <location filename="../UserInterface.cpp" line="615"/> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="645"/> | ||||
|         <location filename="../UserInterface.cpp" line="630"/> | ||||
|         <location filename="../UserInterface.cpp" line="644"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <location filename="../UserInterface.cpp" line="674"/> | ||||
|         <source>Open File</source> | ||||
|         <translation>開啟檔案</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="639"/> | ||||
|         <location filename="../UserInterface.cpp" line="668"/> | ||||
|         <source>Can't open %1 because of not valid file format</source> | ||||
|         <translation>格式無效,無法開啟 %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.cpp" line="727"/> | ||||
|         <location filename="../UserInterface.cpp" line="756"/> | ||||
|         <source>%1 - Messages</source> | ||||
|         <translation>%1 - 新聞</translation> | ||||
|     </message> | ||||
|  |  | |||
							
								
								
									
										1
									
								
								res/ltc.str
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								res/ltc.str
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1 @@ | |||
| Litecoin | ||||
							
								
								
									
										1
									
								
								res/xmr.str
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								res/xmr.str
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1 @@ | |||
| Monero | ||||
							
								
								
									
										1
									
								
								res/zec.str
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								res/zec.str
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1 @@ | |||
| Zcash | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue