gta5view 1.8.0 release
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
678425a7c5
commit
1fbe4d9e67
27 changed files with 1636 additions and 1631 deletions
|
@ -17,9 +17,9 @@ export GTA5VIEW_EXECUTABLE=gta5view-${EXECUTABLE_VERSION}${EXECUTABLE_ARCH}.exe
|
||||||
if [ "${PACKAGE_CODE}" == "gta5-mods" ]; then
|
if [ "${PACKAGE_CODE}" == "gta5-mods" ]; then
|
||||||
${PROJECT_DIR}/.ci/dropbox_uploader.sh mkdir gta5-mods/${PACKAGE_VERSION}
|
${PROJECT_DIR}/.ci/dropbox_uploader.sh mkdir gta5-mods/${PACKAGE_VERSION}
|
||||||
${PROJECT_DIR}/.ci/dropbox_uploader.sh upload ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} gta5-mods/${PACKAGE_VERSION}/${GTA5VIEW_EXECUTABLE} && \
|
${PROJECT_DIR}/.ci/dropbox_uploader.sh upload ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} gta5-mods/${PACKAGE_VERSION}/${GTA5VIEW_EXECUTABLE} && \
|
||||||
rm -rf ${GTA5VIEW_EXECUTABLE}
|
rm -rf ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE}
|
||||||
elif [ "${PACKAGE_CODE}" == "gtainside" ]; then
|
elif [ "${PACKAGE_CODE}" == "gtainside" ]; then
|
||||||
${PROJECT_DIR}/.ci/dropbox_uploader.sh mkdir gtainside/${PACKAGE_VERSION}
|
${PROJECT_DIR}/.ci/dropbox_uploader.sh mkdir gtainside/${PACKAGE_VERSION}
|
||||||
${PROJECT_DIR}/.ci/dropbox_uploader.sh upload ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} gtainside/${PACKAGE_VERSION}/${GTA5VIEW_EXECUTABLE} && \
|
${PROJECT_DIR}/.ci/dropbox_uploader.sh upload ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} gtainside/${PACKAGE_VERSION}/${GTA5VIEW_EXECUTABLE} && \
|
||||||
rm -rf ${GTA5VIEW_EXECUTABLE}
|
rm -rf ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE}
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -25,4 +25,3 @@ x86_64-w64-mingw32-strip -s gta5view.exe && \
|
||||||
cd ${PROJECT_DIR}/assets && \
|
cd ${PROJECT_DIR}/assets && \
|
||||||
makensis -NOCD ${PROJECT_DIR}/.ci/gta5view.nsi && \
|
makensis -NOCD ${PROJECT_DIR}/.ci/gta5view.nsi && \
|
||||||
mv -f gta5view_setup.exe gta5view-${EXECUTABLE_VERSION}_setup.exe
|
mv -f gta5view_setup.exe gta5view-${EXECUTABLE_VERSION}_setup.exe
|
||||||
|
|
||||||
|
|
13
.drone.yml
13
.drone.yml
|
@ -2,7 +2,7 @@ kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
BUILD_TYPE: "RC"
|
BUILD_TYPE: "REL"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Windows Installer
|
- name: Windows Installer
|
||||||
|
@ -14,6 +14,9 @@ steps:
|
||||||
from_secret: tca_pass
|
from_secret: tca_pass
|
||||||
commands:
|
commands:
|
||||||
- .drone/drone.sh
|
- .drone/drone.sh
|
||||||
|
volumes:
|
||||||
|
- name: gta5view
|
||||||
|
path: /srv/gta5view
|
||||||
- name: Windows Portable
|
- name: Windows Portable
|
||||||
image: sypingauto/gta5view-build:1.8-static
|
image: sypingauto/gta5view-build:1.8-static
|
||||||
environment:
|
environment:
|
||||||
|
@ -23,3 +26,11 @@ steps:
|
||||||
from_secret: tca_pass
|
from_secret: tca_pass
|
||||||
commands:
|
commands:
|
||||||
- .drone/drone.sh
|
- .drone/drone.sh
|
||||||
|
volumes:
|
||||||
|
- name: gta5view
|
||||||
|
path: /srv/gta5view
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: gta5view
|
||||||
|
host:
|
||||||
|
path: /srv/gta5view
|
||||||
|
|
|
@ -27,6 +27,7 @@ fi
|
||||||
# Init Application Commit Hash
|
# Init Application Commit Hash
|
||||||
export APPLICATION_COMMIT=$(git rev-parse --short HEAD)
|
export APPLICATION_COMMIT=$(git rev-parse --short HEAD)
|
||||||
|
|
||||||
# Start CI script and copying assets into base directory
|
# Start CI script and copying assets into gta5view directory
|
||||||
.ci/ci.sh && \
|
.ci/ci.sh && \
|
||||||
cp -Rf assets/* ./
|
mkdir -p /srv/gta5view/${APPLICATION_COMMIT} && \
|
||||||
|
cp -Rf assets/* /srv/gta5view/${APPLICATION_COMMIT}/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
app-id: de.syping.gta5view
|
app-id: de.syping.gta5view
|
||||||
runtime: org.kde.Platform
|
runtime: org.kde.Platform
|
||||||
runtime-version: '5.14'
|
runtime-version: '5.15'
|
||||||
sdk: org.kde.Sdk
|
sdk: org.kde.Sdk
|
||||||
command: gta5view
|
command: gta5view
|
||||||
finish-args:
|
finish-args:
|
||||||
|
|
|
@ -2,7 +2,7 @@ stages:
|
||||||
- build
|
- build
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
BUILD_TYPE: "RC"
|
BUILD_TYPE: "REL"
|
||||||
|
|
||||||
Windows Installer:
|
Windows Installer:
|
||||||
stage: build
|
stage: build
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
dist: trusty
|
dist: bionic
|
||||||
sudo: required
|
sudo: required
|
||||||
|
|
||||||
language: cpp
|
language: cpp
|
||||||
|
@ -8,7 +8,7 @@ service:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- BUILD_TYPE=RC
|
- BUILD_TYPE=REL
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
|
@ -27,6 +27,11 @@ matrix:
|
||||||
- QT_SELECT=qt5-x86_64-w64-mingw32
|
- QT_SELECT=qt5-x86_64-w64-mingw32
|
||||||
- RELEASE_LABEL="Windows 64-Bit Portable for gta5-mods"
|
- RELEASE_LABEL="Windows 64-Bit Portable for gta5-mods"
|
||||||
- PACKAGE_CODE=gta5-mods
|
- PACKAGE_CODE=gta5-mods
|
||||||
|
- env:
|
||||||
|
- BUILD_SCRIPT=windows_docker.sh
|
||||||
|
- QT_SELECT=qt5-x86_64-w64-mingw32
|
||||||
|
- RELEASE_LABEL="Windows 64-Bit Portable for gtainside"
|
||||||
|
- PACKAGE_CODE=gtainside
|
||||||
- env:
|
- env:
|
||||||
- BUILD_SCRIPT=wininstall_docker.sh
|
- BUILD_SCRIPT=wininstall_docker.sh
|
||||||
- QT_SELECT=qt5-x86_64-w64-mingw32
|
- QT_SELECT=qt5-x86_64-w64-mingw32
|
||||||
|
|
|
@ -95,6 +95,21 @@ void MapLocationDialog::on_cmdDone_clicked()
|
||||||
changeMode = false;
|
changeMode = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if QT_VERSION >= 0x060000
|
||||||
|
void MapLocationDialog::updatePosFromEvent(double x, double y)
|
||||||
|
{
|
||||||
|
QSize mapPixelSize = size();
|
||||||
|
double xpos_ad = x;
|
||||||
|
double ypos_ad = mapPixelSize.height() - y;
|
||||||
|
double xrat = 10000 / (double)mapPixelSize.width();
|
||||||
|
double yrat = 12000 / (double)mapPixelSize.height();
|
||||||
|
double xpos_rv = xrat * xpos_ad;
|
||||||
|
double ypos_rv = yrat * ypos_ad;
|
||||||
|
double xpos_fp = xpos_rv - 4000;
|
||||||
|
double ypos_fp = ypos_rv - 4000;
|
||||||
|
drawPointOnMap(xpos_fp, ypos_fp);
|
||||||
|
}
|
||||||
|
#else
|
||||||
void MapLocationDialog::updatePosFromEvent(int x, int y)
|
void MapLocationDialog::updatePosFromEvent(int x, int y)
|
||||||
{
|
{
|
||||||
QSize mapPixelSize = size();
|
QSize mapPixelSize = size();
|
||||||
|
@ -108,6 +123,7 @@ void MapLocationDialog::updatePosFromEvent(int x, int y)
|
||||||
double ypos_fp = ypos_rv - 4000;
|
double ypos_fp = ypos_rv - 4000;
|
||||||
drawPointOnMap(xpos_fp, ypos_fp);
|
drawPointOnMap(xpos_fp, ypos_fp);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void MapLocationDialog::paintEvent(QPaintEvent *ev)
|
void MapLocationDialog::paintEvent(QPaintEvent *ev)
|
||||||
{
|
{
|
||||||
|
@ -156,7 +172,11 @@ void MapLocationDialog::mouseMoveEvent(QMouseEvent *ev)
|
||||||
if (!changeMode) { ev->ignore(); }
|
if (!changeMode) { ev->ignore(); }
|
||||||
else if (ev->buttons() & Qt::LeftButton)
|
else if (ev->buttons() & Qt::LeftButton)
|
||||||
{
|
{
|
||||||
|
#if QT_VERSION >= 0x060000
|
||||||
|
updatePosFromEvent(ev->position().x(), ev->position().y());
|
||||||
|
#else
|
||||||
updatePosFromEvent(ev->x(), ev->y());
|
updatePosFromEvent(ev->x(), ev->y());
|
||||||
|
#endif
|
||||||
ev->accept();
|
ev->accept();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -170,7 +190,11 @@ void MapLocationDialog::mouseReleaseEvent(QMouseEvent *ev)
|
||||||
if (!changeMode) { ev->ignore(); }
|
if (!changeMode) { ev->ignore(); }
|
||||||
else if (ev->button() == Qt::LeftButton)
|
else if (ev->button() == Qt::LeftButton)
|
||||||
{
|
{
|
||||||
|
#if QT_VERSION >= 0x060000
|
||||||
|
updatePosFromEvent(ev->position().x(), ev->position().y());
|
||||||
|
#else
|
||||||
updatePosFromEvent(ev->x(), ev->y());
|
updatePosFromEvent(ev->x(), ev->y());
|
||||||
|
#endif
|
||||||
ev->accept();
|
ev->accept();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -48,7 +48,11 @@ private slots:
|
||||||
void on_cmdApply_clicked();
|
void on_cmdApply_clicked();
|
||||||
void on_cmdChange_clicked();
|
void on_cmdChange_clicked();
|
||||||
void on_cmdRevert_clicked();
|
void on_cmdRevert_clicked();
|
||||||
|
#if QT_VERSION >= 0x060000
|
||||||
|
void updatePosFromEvent(double x, double y);
|
||||||
|
#else
|
||||||
void updatePosFromEvent(int x, int y);
|
void updatePosFromEvent(int x, int y);
|
||||||
|
#endif
|
||||||
void on_cmdClose_clicked();
|
void on_cmdClose_clicked();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -263,11 +263,7 @@ void ProfileInterface::insertSnapmaticIPI(QWidget *widget)
|
||||||
QStringList widgetsKeyList = widgets.values();
|
QStringList widgetsKeyList = widgets.values();
|
||||||
QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
|
QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
|
||||||
#if QT_VERSION >= 0x050600
|
#if QT_VERSION >= 0x050600
|
||||||
#if QT_VERSION >= 0x050F00
|
|
||||||
std::sort(pictureKeyList.rbegin(), pictureKeyList.rend());
|
std::sort(pictureKeyList.rbegin(), pictureKeyList.rend());
|
||||||
#else
|
|
||||||
qSort(pictureKeyList.rbegin(), pictureKeyList.rend());
|
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>());
|
qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>());
|
||||||
#endif
|
#endif
|
||||||
|
@ -287,7 +283,7 @@ void ProfileInterface::insertSavegameIPI(QWidget *widget)
|
||||||
QString widgetKey = widgets[proWidget];
|
QString widgetKey = widgets[proWidget];
|
||||||
QStringList widgetsKeyList = widgets.values();
|
QStringList widgetsKeyList = widgets.values();
|
||||||
QStringList savegameKeyList = widgetsKeyList.filter("SGD", Qt::CaseSensitive);
|
QStringList savegameKeyList = widgetsKeyList.filter("SGD", Qt::CaseSensitive);
|
||||||
#if QT_VERSION >= 0x050F00
|
#if QT_VERSION >= 0x050600
|
||||||
std::sort(savegameKeyList.begin(), savegameKeyList.end());
|
std::sort(savegameKeyList.begin(), savegameKeyList.end());
|
||||||
#else
|
#else
|
||||||
qSort(savegameKeyList.begin(), savegameKeyList.end());
|
qSort(savegameKeyList.begin(), savegameKeyList.end());
|
||||||
|
@ -310,11 +306,7 @@ void ProfileInterface::dialogNextPictureRequested(QWidget *dialog)
|
||||||
QStringList widgetsKeyList = widgets.values();
|
QStringList widgetsKeyList = widgets.values();
|
||||||
QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
|
QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
|
||||||
#if QT_VERSION >= 0x050600
|
#if QT_VERSION >= 0x050600
|
||||||
#if QT_VERSION >= 0x050F00
|
|
||||||
std::sort(pictureKeyList.rbegin(), pictureKeyList.rend());
|
std::sort(pictureKeyList.rbegin(), pictureKeyList.rend());
|
||||||
#else
|
|
||||||
qSort(pictureKeyList.rbegin(), pictureKeyList.rend());
|
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>());
|
qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>());
|
||||||
#endif
|
#endif
|
||||||
|
@ -349,11 +341,7 @@ void ProfileInterface::dialogPreviousPictureRequested(QWidget *dialog)
|
||||||
QStringList widgetsKeyList = widgets.values();
|
QStringList widgetsKeyList = widgets.values();
|
||||||
QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
|
QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
|
||||||
#if QT_VERSION >= 0x050600
|
#if QT_VERSION >= 0x050600
|
||||||
#if QT_VERSION >= 0x050F00
|
|
||||||
std::sort(pictureKeyList.rbegin(), pictureKeyList.rend());
|
std::sort(pictureKeyList.rbegin(), pictureKeyList.rend());
|
||||||
#else
|
|
||||||
qSort(pictureKeyList.rbegin(), pictureKeyList.rend());
|
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>());
|
qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>());
|
||||||
#endif
|
#endif
|
||||||
|
@ -385,7 +373,7 @@ void ProfileInterface::sortingProfileInterface()
|
||||||
|
|
||||||
QStringList widgetsKeyList = widgets.values();
|
QStringList widgetsKeyList = widgets.values();
|
||||||
|
|
||||||
#if QT_VERSION >= 0x050F00
|
#if QT_VERSION >= 0x050600
|
||||||
std::sort(widgetsKeyList.begin(), widgetsKeyList.end());
|
std::sort(widgetsKeyList.begin(), widgetsKeyList.end());
|
||||||
#else
|
#else
|
||||||
qSort(widgetsKeyList.begin(), widgetsKeyList.end());
|
qSort(widgetsKeyList.begin(), widgetsKeyList.end());
|
||||||
|
|
|
@ -4,7 +4,7 @@ Grand Theft Auto V Savegame and Snapmatic viewer/editor
|
||||||
- View Snapmatics with the ability to disable them in-game
|
- View Snapmatics with the ability to disable them in-game
|
||||||
- Edit Snapmatic pictures and properties in multiple ways
|
- Edit Snapmatic pictures and properties in multiple ways
|
||||||
- Import/Export Snapmatics, Savegames and pictures
|
- Import/Export Snapmatics, Savegames and pictures
|
||||||
- Let choose between multiple Social Club accounts as GTA V profiles IDs
|
- Choose between multiple Social Club accounts as GTA V profiles IDs
|
||||||
|
|
||||||
#### Screenshots
|
#### Screenshots
|
||||||
![Snapmatic Picture Viewer](res/src/picture.png)
|
![Snapmatic Picture Viewer](res/src/picture.png)
|
||||||
|
|
|
@ -1428,6 +1428,7 @@ QString SnapmaticPicture::parseTitleString(const QByteArray &commitBytes, int ma
|
||||||
#if QT_VERSION >= 0x060000
|
#if QT_VERSION >= 0x060000
|
||||||
QStringDecoder strDecoder = QStringDecoder(QStringDecoder::Utf16LE);
|
QStringDecoder strDecoder = QStringDecoder(QStringDecoder::Utf16LE);
|
||||||
QString retStr = strDecoder(commitBytes);
|
QString retStr = strDecoder(commitBytes);
|
||||||
|
retStr = retStr.trimmed();
|
||||||
#else
|
#else
|
||||||
QString retStr = QTextCodec::codecForName("UTF-16LE")->toUnicode(commitBytes).trimmed();
|
QString retStr = QTextCodec::codecForName("UTF-16LE")->toUnicode(commitBytes).trimmed();
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -48,12 +48,16 @@ QString StringParser::escapeString(const QString &toEscape)
|
||||||
QString StringParser::convertBuildedString(const QString &buildedStr)
|
QString StringParser::convertBuildedString(const QString &buildedStr)
|
||||||
{
|
{
|
||||||
QString outputStr = buildedStr;
|
QString outputStr = buildedStr;
|
||||||
QByteArray sharePath = GTA5SYNC_SHARE;
|
outputStr.replace("APPNAME:", QString::fromUtf8(GTA5SYNC_APPSTR));
|
||||||
outputStr.replace("APPNAME:", GTA5SYNC_APPSTR);
|
outputStr.replace("SHAREDDIR:", QString::fromUtf8(GTA5SYNC_SHARE));
|
||||||
outputStr.replace("SHAREDDIR:", QString::fromUtf8(sharePath));
|
outputStr.replace("RUNDIR:", QFileInfo(QApplication::applicationFilePath()).canonicalPath());
|
||||||
outputStr.replace("RUNDIR:", QFileInfo(qApp->applicationFilePath()).absoluteDir().absolutePath());
|
#if QT_VERSION >= 0x060000
|
||||||
|
outputStr.replace("QCONFLANG:", QLibraryInfo::path(QLibraryInfo::TranslationsPath));
|
||||||
|
outputStr.replace("QCONFPLUG:", QLibraryInfo::path(QLibraryInfo::PluginsPath));
|
||||||
|
#else
|
||||||
outputStr.replace("QCONFLANG:", QLibraryInfo::location(QLibraryInfo::TranslationsPath));
|
outputStr.replace("QCONFLANG:", QLibraryInfo::location(QLibraryInfo::TranslationsPath));
|
||||||
outputStr.replace("QCONFPLUG:", QLibraryInfo::location(QLibraryInfo::PluginsPath));
|
outputStr.replace("QCONFPLUG:", QLibraryInfo::location(QLibraryInfo::PluginsPath));
|
||||||
|
#endif
|
||||||
outputStr.replace("SEPARATOR:", QDir::separator());
|
outputStr.replace("SEPARATOR:", QDir::separator());
|
||||||
return outputStr;
|
return outputStr;
|
||||||
}
|
}
|
||||||
|
|
398
res/gta5sync.ts
398
res/gta5sync.ts
|
@ -191,21 +191,21 @@ Pictures and Savegames</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -343,14 +343,14 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="198"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="733"/>
|
<location filename="../ProfileInterface.cpp" line="720"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="225"/>
|
<location filename="../ImportDialog.cpp" line="225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="752"/>
|
<location filename="../ProfileInterface.cpp" line="739"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -991,80 +991,80 @@ Y: %2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="167"/>
|
<location filename="../PictureDialog.cpp" line="174"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1630"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="168"/>
|
<location filename="../PictureDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1631"/>
|
<location filename="../ProfileInterface.cpp" line="1638"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="170"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1631"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="171"/>
|
<location filename="../PictureDialog.cpp" line="178"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1625"/>
|
<location filename="../ProfileInterface.cpp" line="1632"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="173"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1634"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="175"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1628"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="603"/>
|
<location filename="../PictureDialog.cpp" line="496"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="829"/>
|
<location filename="../PictureDialog.cpp" line="722"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="247"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="805"/>
|
<location filename="../PictureDialog.cpp" line="698"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="763"/>
|
<location filename="../PictureDialog.cpp" line="656"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1274,23 +1274,23 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="426"/>
|
<location filename="../ImportDialog.cpp" line="426"/>
|
||||||
<location filename="../ImportDialog.cpp" line="747"/>
|
<location filename="../ImportDialog.cpp" line="747"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="508"/>
|
<location filename="../ProfileInterface.cpp" line="495"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="509"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="574"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="977"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="982"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1307,14 +1307,14 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="437"/>
|
<location filename="../ImportDialog.cpp" line="437"/>
|
||||||
<location filename="../ImportDialog.cpp" line="758"/>
|
<location filename="../ImportDialog.cpp" line="758"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="528"/>
|
<location filename="../ProfileInterface.cpp" line="515"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="438"/>
|
<location filename="../ImportDialog.cpp" line="438"/>
|
||||||
<location filename="../ImportDialog.cpp" line="759"/>
|
<location filename="../ImportDialog.cpp" line="759"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="529"/>
|
<location filename="../ProfileInterface.cpp" line="516"/>
|
||||||
<location filename="../UserInterface.cpp" line="474"/>
|
<location filename="../UserInterface.cpp" line="474"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1322,211 +1322,211 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="458"/>
|
<location filename="../ImportDialog.cpp" line="458"/>
|
||||||
<location filename="../ImportDialog.cpp" line="779"/>
|
<location filename="../ImportDialog.cpp" line="779"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="467"/>
|
<location filename="../ImportDialog.cpp" line="467"/>
|
||||||
<location filename="../ImportDialog.cpp" line="788"/>
|
<location filename="../ImportDialog.cpp" line="788"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="85"/>
|
<location filename="../ProfileInterface.cpp" line="84"/>
|
||||||
<source>Enabled pictures: %1 of %2</source>
|
<source>Enabled pictures: %1 of %2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="185"/>
|
<location filename="../ProfileInterface.cpp" line="184"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="524"/>
|
<location filename="../ProfileInterface.cpp" line="511"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="525"/>
|
<location filename="../ProfileInterface.cpp" line="512"/>
|
||||||
<location filename="../UserInterface.cpp" line="471"/>
|
<location filename="../UserInterface.cpp" line="471"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="526"/>
|
<location filename="../ProfileInterface.cpp" line="513"/>
|
||||||
<location filename="../UserInterface.cpp" line="472"/>
|
<location filename="../UserInterface.cpp" line="472"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
<location filename="../ProfileInterface.cpp" line="514"/>
|
||||||
<location filename="../UserInterface.cpp" line="473"/>
|
<location filename="../UserInterface.cpp" line="473"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../UserInterface.cpp" line="562"/>
|
<location filename="../UserInterface.cpp" line="562"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="575"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="592"/>
|
<location filename="../ProfileInterface.cpp" line="579"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../UserInterface.cpp" line="514"/>
|
<location filename="../UserInterface.cpp" line="514"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../UserInterface.cpp" line="530"/>
|
<location filename="../UserInterface.cpp" line="530"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="998"/>
|
<location filename="../ProfileInterface.cpp" line="993"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1299"/>
|
<location filename="../ProfileInterface.cpp" line="1306"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1382"/>
|
<location filename="../ProfileInterface.cpp" line="1389"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1322"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1347"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1345"/>
|
<location filename="../ProfileInterface.cpp" line="1352"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
<location filename="../ProfileInterface.cpp" line="1356"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1534,81 +1534,81 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2001"/>
|
<location filename="../ProfileInterface.cpp" line="2008"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2104"/>
|
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2341"/>
|
<location filename="../ProfileInterface.cpp" line="2348"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2002"/>
|
<location filename="../ProfileInterface.cpp" line="2009"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2021"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2105"/>
|
<location filename="../ProfileInterface.cpp" line="2112"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2124"/>
|
<location filename="../ProfileInterface.cpp" line="2131"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2236"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2255"/>
|
<location filename="../ProfileInterface.cpp" line="2262"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2342"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2368"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1622,17 +1622,7 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="136"/>
|
||||||
<source>Font</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Selected Font: %1</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../main.cpp" line="144"/>
|
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1710,37 +1700,37 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1666"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1667"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1668"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1670"/>
|
<location filename="../ProfileInterface.cpp" line="1677"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1838,8 +1828,8 @@ Press 1 for Default View</source>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1931,8 +1921,8 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1943,73 +1933,73 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="231"/>
|
<location filename="../SnapmaticEditor.cpp" line="230"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
<location filename="../SnapmaticEditor.cpp" line="265"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
<location filename="../SnapmaticEditor.cpp" line="285"/>
|
||||||
<source>Edit</source>
|
<source>Edit</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="235"/>
|
<location filename="../SnapmaticEditor.cpp" line="234"/>
|
||||||
<source>Players: %1 (%2)</source>
|
<source>Players: %1 (%2)</source>
|
||||||
<comment>Multiple Player are inserted here</comment>
|
<comment>Multiple Player are inserted here</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="239"/>
|
<location filename="../SnapmaticEditor.cpp" line="238"/>
|
||||||
<source>Player: %1 (%2)</source>
|
<source>Player: %1 (%2)</source>
|
||||||
<comment>One Player is inserted here</comment>
|
<comment>One Player is inserted here</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="267"/>
|
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
||||||
<source>Title: %1 (%2)</source>
|
<source>Title: %1 (%2)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>Appropriate: %1</source>
|
<source>Appropriate: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<source>Yes</source>
|
<source>Yes</source>
|
||||||
<comment>Yes, should work fine</comment>
|
<comment>Yes, should work fine</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<comment>No, could lead to issues</comment>
|
<comment>No, could lead to issues</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="287"/>
|
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
||||||
<source>Crew: %1 (%2)</source>
|
<source>Crew: %1 (%2)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2018,64 +2008,64 @@ Press 1 for Default View</source>
|
||||||
<name>SnapmaticPicture</name>
|
<name>SnapmaticPicture</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="730"/>
|
<location filename="../SnapmaticPicture.cpp" line="733"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="734"/>
|
<location filename="../SnapmaticPicture.cpp" line="737"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="738"/>
|
<location filename="../SnapmaticPicture.cpp" line="741"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="464"/>
|
<location filename="../SnapmaticPicture.cpp" line="467"/>
|
||||||
<source>PHOTO - %1</source>
|
<source>PHOTO - %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="690"/>
|
<location filename="../SnapmaticPicture.cpp" line="693"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="706"/>
|
<location filename="../SnapmaticPicture.cpp" line="709"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="710"/>
|
<location filename="../SnapmaticPicture.cpp" line="713"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="714"/>
|
<location filename="../SnapmaticPicture.cpp" line="717"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="718"/>
|
<location filename="../SnapmaticPicture.cpp" line="721"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="722"/>
|
<location filename="../SnapmaticPicture.cpp" line="725"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="726"/>
|
<location filename="../SnapmaticPicture.cpp" line="729"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="740"/>
|
<location filename="../SnapmaticPicture.cpp" line="743"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -2136,52 +2126,52 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1622"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1625"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1622"/>
|
<location filename="../ProfileInterface.cpp" line="1629"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1629"/>
|
<location filename="../ProfileInterface.cpp" line="1636"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1632"/>
|
<location filename="../ProfileInterface.cpp" line="1639"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1644"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1638"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1641"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1652"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2209,22 +2199,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="165"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="166"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="179"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2401,15 +2391,15 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
|
Binary file not shown.
|
@ -176,8 +176,8 @@ Snapmatic Bilder und Spielständen</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>ImageEditorDialog</name>
|
<name>ImageEditorDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
|
@ -209,13 +209,13 @@ Snapmatic Bilder und Spielständen</translation>
|
||||||
<translation>S&chließen</translation>
|
<translation>S&chließen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen I/O Fehler</translation>
|
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen I/O Fehler</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler</translation>
|
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler</translation>
|
||||||
|
@ -359,14 +359,14 @@ Snapmatic Bilder und Spielständen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="198"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="733"/>
|
<location filename="../ProfileInterface.cpp" line="720"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Eigener Avatar</translation>
|
<translation>Eigener Avatar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="225"/>
|
<location filename="../ImportDialog.cpp" line="225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="752"/>
|
<location filename="../ProfileInterface.cpp" line="739"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Eigenes Bild</translation>
|
<translation>Eigenes Bild</translation>
|
||||||
|
@ -1012,37 +1012,37 @@ Y: %2</translation>
|
||||||
<translation>Exportieren</translation>
|
<translation>Exportieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="167"/>
|
<location filename="../PictureDialog.cpp" line="174"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1630"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>Als &Bild exportieren...</translation>
|
<translation>Als &Bild exportieren...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="168"/>
|
<location filename="../PictureDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1631"/>
|
<location filename="../ProfileInterface.cpp" line="1638"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>Als &Snapmatic exportieren...</translation>
|
<translation>Als &Snapmatic exportieren...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="170"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1631"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>Eigenschaften bearb&eiten...</translation>
|
<translation>Eigenschaften bearb&eiten...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="171"/>
|
<location filename="../PictureDialog.cpp" line="178"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1625"/>
|
<location filename="../ProfileInterface.cpp" line="1632"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>Bild &überschreiben...</translation>
|
<translation>Bild &überschreiben...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="173"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1634"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>&Kartenansicht öffnen...</translation>
|
<translation>&Kartenansicht öffnen...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="603"/>
|
<location filename="../PictureDialog.cpp" line="496"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
|
@ -1051,39 +1051,39 @@ Taste 2 - Overlay umschalten
|
||||||
Pfeiltasten - Navigieren</translation>
|
Pfeiltasten - Navigieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation>Snapmatic Bildansicht</translation>
|
<translation>Snapmatic Bildansicht</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation>Fehlgeschlagen beim %1</translation>
|
<translation>Fehlgeschlagen beim %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="805"/>
|
<location filename="../PictureDialog.cpp" line="698"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation>Keine Crew</translation>
|
<translation>Keine Crew</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="829"/>
|
<location filename="../PictureDialog.cpp" line="722"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="247"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation>Keine Spieler</translation>
|
<translation>Keine Spieler</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="763"/>
|
<location filename="../PictureDialog.cpp" line="656"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation>Avatar Vorschaumodus
|
<translation>Avatar Vorschaumodus
|
||||||
Drücke 1 für Standardmodus</translation>
|
Drücke 1 für Standardmodus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation>Unbekannter Standort</translation>
|
<translation>Unbekannter Standort</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1185,8 +1185,8 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Keine gültige Datei wurde ausgewählt</translation>
|
<translation>Keine gültige Datei wurde ausgewählt</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="175"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1628"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>&JSON Editor öffnen...</translation>
|
<translation>&JSON Editor öffnen...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1284,40 +1284,40 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>S&chließen</translation>
|
<translation>S&chließen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="185"/>
|
<location filename="../ProfileInterface.cpp" line="184"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>Lade...</translation>
|
<translation>Lade...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>Snapmatic Lader</translation>
|
<translation>Snapmatic Lader</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation><h4>Folgende Snapmatic Bilder wurden repariert</h4>%1</translation>
|
<translation><h4>Folgende Snapmatic Bilder wurden repariert</h4>%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="426"/>
|
<location filename="../ImportDialog.cpp" line="426"/>
|
||||||
<location filename="../ImportDialog.cpp" line="747"/>
|
<location filename="../ImportDialog.cpp" line="747"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="508"/>
|
<location filename="../ProfileInterface.cpp" line="495"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="509"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="574"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="977"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="982"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation>Importieren...</translation>
|
<translation>Importieren...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1332,45 +1332,45 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Importieren</translation>
|
<translation>Importieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="526"/>
|
<location filename="../ProfileInterface.cpp" line="513"/>
|
||||||
<location filename="../UserInterface.cpp" line="472"/>
|
<location filename="../UserInterface.cpp" line="472"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation>Spielstanddateien (SGTA*)</translation>
|
<translation>Spielstanddateien (SGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
<location filename="../ProfileInterface.cpp" line="514"/>
|
||||||
<location filename="../UserInterface.cpp" line="473"/>
|
<location filename="../UserInterface.cpp" line="473"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation>Snapmatic Bilder (PGTA*)</translation>
|
<translation>Snapmatic Bilder (PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="524"/>
|
<location filename="../ProfileInterface.cpp" line="511"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation>Importfähige Dateien (%1)</translation>
|
<translation>Importfähige Dateien (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="437"/>
|
<location filename="../ImportDialog.cpp" line="437"/>
|
||||||
<location filename="../ImportDialog.cpp" line="758"/>
|
<location filename="../ImportDialog.cpp" line="758"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="528"/>
|
<location filename="../ProfileInterface.cpp" line="515"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>Alle Bilddateien (%1)</translation>
|
<translation>Alle Bilddateien (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="438"/>
|
<location filename="../ImportDialog.cpp" line="438"/>
|
||||||
<location filename="../ImportDialog.cpp" line="759"/>
|
<location filename="../ImportDialog.cpp" line="759"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="529"/>
|
<location filename="../ProfileInterface.cpp" line="516"/>
|
||||||
<location filename="../UserInterface.cpp" line="474"/>
|
<location filename="../UserInterface.cpp" line="474"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation>Alle Dateien (**)</translation>
|
<translation>Alle Dateien (**)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="575"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="592"/>
|
<location filename="../ProfileInterface.cpp" line="579"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation>Importiere Datei %1 von %2 Dateien</translation>
|
<translation>Importiere Datei %1 von %2 Dateien</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1379,13 +1379,13 @@ Drücke 1 für Standardmodus</translation>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../UserInterface.cpp" line="514"/>
|
<location filename="../UserInterface.cpp" line="514"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation>Fehler beim Lesen vom Snapmatic Bild</translation>
|
<translation>Fehler beim Lesen vom Snapmatic Bild</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../UserInterface.cpp" line="530"/>
|
<location filename="../UserInterface.cpp" line="530"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation>Fehler beim Lesen von Spielstanddatei</translation>
|
<translation>Fehler beim Lesen von Spielstanddatei</translation>
|
||||||
|
@ -1393,135 +1393,135 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="458"/>
|
<location filename="../ImportDialog.cpp" line="458"/>
|
||||||
<location filename="../ImportDialog.cpp" line="779"/>
|
<location filename="../ImportDialog.cpp" line="779"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
|
<translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="467"/>
|
<location filename="../ImportDialog.cpp" line="467"/>
|
||||||
<location filename="../ImportDialog.cpp" line="788"/>
|
<location filename="../ImportDialog.cpp" line="788"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation>
|
<translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
|
<translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>Initialisiere Export...</translation>
|
<translation>Initialisiere Export...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
|
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation>%1Exportiere Snapmatic Bilder%2<br><br>JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen<br>Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren<br><br>Exportieren als:</translation>
|
<translation>%1Exportiere Snapmatic Bilder%2<br><br>JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen<br>Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren<br><br>Exportieren als:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../UserInterface.cpp" line="562"/>
|
<location filename="../UserInterface.cpp" line="562"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation>Keine gültige Datei wurde ausgewählt</translation>
|
<translation>Keine gültige Datei wurde ausgewählt</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="85"/>
|
<location filename="../ProfileInterface.cpp" line="84"/>
|
||||||
<source>Enabled pictures: %1 of %2</source>
|
<source>Enabled pictures: %1 of %2</source>
|
||||||
<translation>Aktivierte Bilder: %1 von %2</translation>
|
<translation>Aktivierte Bilder: %1 von %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation>
|
<translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation>
|
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation>
|
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation>
|
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1322"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1347"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation>JPG Bilder und GTA Snapmatic</translation>
|
<translation>JPG Bilder und GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1345"/>
|
<location filename="../ProfileInterface.cpp" line="1352"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation>Nur JPG Bilder</translation>
|
<translation>Nur JPG Bilder</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
<location filename="../ProfileInterface.cpp" line="1356"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation>Nur GTA Snapmatic</translation>
|
<translation>Nur GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2001"/>
|
<location filename="../ProfileInterface.cpp" line="2008"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2104"/>
|
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2341"/>
|
<location filename="../ProfileInterface.cpp" line="2348"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>Auswahl patchen...</translation>
|
<translation>Auswahl patchen...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2002"/>
|
<location filename="../ProfileInterface.cpp" line="2009"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2021"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2105"/>
|
<location filename="../ProfileInterface.cpp" line="2112"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2124"/>
|
<location filename="../ProfileInterface.cpp" line="2131"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2236"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2255"/>
|
<location filename="../ProfileInterface.cpp" line="2262"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2342"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2368"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation>Patche Datei %1 von %2 Dateien</translation>
|
<translation>Patche Datei %1 von %2 Dateien</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>Als Avatar qualifizieren</translation>
|
<translation>Als Avatar qualifizieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation>Keine Snapmatic Bilder sind ausgewählt</translation>
|
<translation>Keine Snapmatic Bilder sind ausgewählt</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation>
|
<translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1531,93 +1531,93 @@ Drücke 1 für Standardmodus</translation>
|
||||||
%2</translation>
|
%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="998"/>
|
<location filename="../ProfileInterface.cpp" line="993"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation>Bereite Inhalt für Import vor...</translation>
|
<translation>Bereite Inhalt für Import vor...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Qualifizieren</translation>
|
<translation>Qualifizieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>Spieler ändern...</translation>
|
<translation>Spieler ändern...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Spieler ändern</translation>
|
<translation>Spieler ändern</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>Crew ändern...</translation>
|
<translation>Crew ändern...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation>
|
<translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Crew ändern</translation>
|
<translation>Crew ändern</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>Titel ändern...</translation>
|
<translation>Titel ändern...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation>
|
<translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Titel ändern</translation>
|
<translation>Titel ändern</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation>
|
<translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>Auswahl löschen</translation>
|
<translation>Auswahl löschen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation>
|
<translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1299"/>
|
<location filename="../ProfileInterface.cpp" line="1306"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1382"/>
|
<location filename="../ProfileInterface.cpp" line="1389"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>Auswahl exportieren...</translation>
|
<translation>Auswahl exportieren...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1636,7 +1636,7 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
|
<translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="525"/>
|
<location filename="../ProfileInterface.cpp" line="512"/>
|
||||||
<location filename="../UserInterface.cpp" line="471"/>
|
<location filename="../UserInterface.cpp" line="471"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation>GTA V Export (*.g5e)</translation>
|
<translation>GTA V Export (*.g5e)</translation>
|
||||||
|
@ -1645,17 +1645,15 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation>Schrift</translation>
|
<translation type="vanished">Schrift</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation>Ausgewähle Schrift: %1</translation>
|
<translation type="vanished">Ausgewähle Schrift: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="136"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation><h4>Willkommen zu %1!</h4>Möchtest du %1 einstellen bevor du es nutzt?</translation>
|
<translation><h4>Willkommen zu %1!</h4>Möchtest du %1 einstellen bevor du es nutzt?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1771,32 +1769,32 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
|
<translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1666"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>A&nsehen</translation>
|
<translation>A&nsehen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1668"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>Entfe&rnen</translation>
|
<translation>Entfe&rnen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1670"/>
|
<location filename="../ProfileInterface.cpp" line="1677"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>Au&swählen</translation>
|
<translation>Au&swählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>A&bwählen</translation>
|
<translation>A&bwählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>&Alles auswählen</translation>
|
<translation>&Alles auswählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>Alles a&bwählen</translation>
|
<translation>Alles a&bwählen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1811,7 +1809,7 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Spielstand kopieren</translation>
|
<translation>Spielstand kopieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1667"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Exportieren</translation>
|
<translation>&Exportieren</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1863,8 +1861,8 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
<translation>Snapmatic Eigenschaften</translation>
|
<translation>Snapmatic Eigenschaften</translation>
|
||||||
|
@ -1905,8 +1903,8 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Meme</translation>
|
<translation>Meme</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation>Snapmatic Titel</translation>
|
<translation>Snapmatic Titel</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1916,30 +1914,30 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Snapmatic Werte</translation>
|
<translation>Snapmatic Werte</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="287"/>
|
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
||||||
<source>Crew: %1 (%2)</source>
|
<source>Crew: %1 (%2)</source>
|
||||||
<translation>Crew: %1 (%2)</translation>
|
<translation>Crew: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="267"/>
|
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
||||||
<source>Title: %1 (%2)</source>
|
<source>Title: %1 (%2)</source>
|
||||||
<translation>Titel: %1 (%2)</translation>
|
<translation>Titel: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="235"/>
|
<location filename="../SnapmaticEditor.cpp" line="234"/>
|
||||||
<source>Players: %1 (%2)</source>
|
<source>Players: %1 (%2)</source>
|
||||||
<comment>Multiple Player are inserted here</comment>
|
<comment>Multiple Player are inserted here</comment>
|
||||||
<translation>Spieler: %1 (%2)</translation>
|
<translation>Spieler: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="239"/>
|
<location filename="../SnapmaticEditor.cpp" line="238"/>
|
||||||
<source>Player: %1 (%2)</source>
|
<source>Player: %1 (%2)</source>
|
||||||
<comment>One Player is inserted here</comment>
|
<comment>One Player is inserted here</comment>
|
||||||
<translation>Spieler: %1 (%2)</translation>
|
<translation>Spieler: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>Appropriate: %1</source>
|
<source>Appropriate: %1</source>
|
||||||
<translation>Angemessen: %1</translation>
|
<translation>Angemessen: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1979,20 +1977,20 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Abbre&chen</translation>
|
<translation>Abbre&chen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="231"/>
|
<location filename="../SnapmaticEditor.cpp" line="230"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
<location filename="../SnapmaticEditor.cpp" line="265"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
<location filename="../SnapmaticEditor.cpp" line="285"/>
|
||||||
<source>Edit</source>
|
<source>Edit</source>
|
||||||
<translation>Bearbeiten</translation>
|
<translation>Bearbeiten</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<source>Yes</source>
|
<source>Yes</source>
|
||||||
<comment>Yes, should work fine</comment>
|
<comment>Yes, should work fine</comment>
|
||||||
<translation>Ja</translation>
|
<translation>Ja</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<comment>No, could lead to issues</comment>
|
<comment>No, could lead to issues</comment>
|
||||||
<translation>Nein</translation>
|
<translation>Nein</translation>
|
||||||
|
@ -2014,27 +2012,27 @@ Drücke 1 für Standardmodus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
|
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation>Neuer Snapmatic Titel:</translation>
|
<translation>Neuer Snapmatic Titel:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation>Snapmatic Crew</translation>
|
<translation>Snapmatic Crew</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation>Neue Snapmatic Crew:</translation>
|
<translation>Neue Snapmatic Crew:</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2042,66 +2040,66 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>SnapmaticPicture</name>
|
<name>SnapmaticPicture</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="464"/>
|
<location filename="../SnapmaticPicture.cpp" line="467"/>
|
||||||
<source>PHOTO - %1</source>
|
<source>PHOTO - %1</source>
|
||||||
<translation>FOTO - %1</translation>
|
<translation>FOTO - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="690"/>
|
<location filename="../SnapmaticPicture.cpp" line="693"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation>Datei öffnen %1</translation>
|
<translation>Datei öffnen %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="706"/>
|
<location filename="../SnapmaticPicture.cpp" line="709"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation>Header nicht existiert</translation>
|
<translation>Header nicht existiert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="710"/>
|
<location filename="../SnapmaticPicture.cpp" line="713"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation>Header fehlerhaft ist</translation>
|
<translation>Header fehlerhaft ist</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="714"/>
|
<location filename="../SnapmaticPicture.cpp" line="717"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation>Bild nicht existiert (%1)</translation>
|
<translation>Bild nicht existiert (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="718"/>
|
<location filename="../SnapmaticPicture.cpp" line="721"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation>JSON nicht existiert (%1)</translation>
|
<translation>JSON nicht existiert (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="722"/>
|
<location filename="../SnapmaticPicture.cpp" line="725"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation>Titel nicht existiert (%1)</translation>
|
<translation>Titel nicht existiert (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="726"/>
|
<location filename="../SnapmaticPicture.cpp" line="729"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation>Beschreibung nicht existiert (%1)</translation>
|
<translation>Beschreibung nicht existiert (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="740"/>
|
<location filename="../SnapmaticPicture.cpp" line="743"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation>Datei lesen von %1 weil %2</translation>
|
<translation>Datei lesen von %1 weil %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="730"/>
|
<location filename="../SnapmaticPicture.cpp" line="733"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation>JSON ist unvollständig und Fehlerhaft</translation>
|
<translation>JSON ist unvollständig und Fehlerhaft</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="734"/>
|
<location filename="../SnapmaticPicture.cpp" line="737"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation>JSON ist unvollständig</translation>
|
<translation>JSON ist unvollständig</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="738"/>
|
<location filename="../SnapmaticPicture.cpp" line="741"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation>JSON ist Fehlerhaft</translation>
|
<translation>JSON ist Fehlerhaft</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2161,52 +2159,52 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
|
<translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1622"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>Bearbei&ten</translation>
|
<translation>Bearbei&ten</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1629"/>
|
<location filename="../ProfileInterface.cpp" line="1636"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Exportieren</translation>
|
<translation>&Exportieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1625"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>&Im Spiel anzeigen</translation>
|
<translation>&Im Spiel anzeigen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1622"/>
|
<location filename="../ProfileInterface.cpp" line="1629"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>&Im Spiel ausblenden</translation>
|
<translation>&Im Spiel ausblenden</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1632"/>
|
<location filename="../ProfileInterface.cpp" line="1639"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>A&nsehen</translation>
|
<translation>A&nsehen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>Entfe&rnen</translation>
|
<translation>Entfe&rnen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1644"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>Au&swählen</translation>
|
<translation>Au&swählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1638"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>A&bwählen</translation>
|
<translation>A&bwählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1641"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>Alles &auswählen</translation>
|
<translation>Alles &auswählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1652"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>Alles a&bwählen</translation>
|
<translation>Alles a&bwählen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2234,22 +2232,22 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="166"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation>%1 Benutzerstatistik</translation>
|
<translation>%1 Benutzerstatistik</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="165"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation>Sollen bei Einreichungen Persönliche Nutzungsdaten einbezogen werden um %1 in der Zukunft zu unterstützen?</translation>
|
<translation>Sollen bei Einreichungen Persönliche Nutzungsdaten einbezogen werden um %1 in der Zukunft zu unterstützen?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation>Ja, ich möchte Persönliche Nutzungsdaten einbeziehen.</translation>
|
<translation>Ja, ich möchte Persönliche Nutzungsdaten einbeziehen.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="179"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&OK</translation>
|
<translation>&OK</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2456,15 +2454,15 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>&Neuladen</translation>
|
<translation>&Neuladen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation>Im Spiel anzeigen</translation>
|
<translation>Im Spiel anzeigen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation>Im Spiel ausblenden</translation>
|
<translation>Im Spiel ausblenden</translation>
|
||||||
|
|
|
@ -166,8 +166,8 @@ Pictures and Savegames</source>
|
||||||
<context>
|
<context>
|
||||||
<name>ImageEditorDialog</name>
|
<name>ImageEditorDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
|
@ -199,13 +199,13 @@ Pictures and Savegames</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -349,14 +349,14 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="198"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="733"/>
|
<location filename="../ProfileInterface.cpp" line="720"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="225"/>
|
<location filename="../ImportDialog.cpp" line="225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="752"/>
|
<location filename="../ProfileInterface.cpp" line="739"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -991,74 +991,74 @@ Y: %2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="167"/>
|
<location filename="../PictureDialog.cpp" line="174"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1630"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="168"/>
|
<location filename="../PictureDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1631"/>
|
<location filename="../ProfileInterface.cpp" line="1638"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="171"/>
|
<location filename="../PictureDialog.cpp" line="178"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1625"/>
|
<location filename="../ProfileInterface.cpp" line="1632"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="170"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1631"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="173"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1634"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="603"/>
|
<location filename="../PictureDialog.cpp" line="496"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="829"/>
|
<location filename="../PictureDialog.cpp" line="722"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="247"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="805"/>
|
<location filename="../PictureDialog.cpp" line="698"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="763"/>
|
<location filename="../PictureDialog.cpp" line="656"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1167,8 +1167,8 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="175"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1628"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1272,45 +1272,45 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="85"/>
|
<location filename="../ProfileInterface.cpp" line="84"/>
|
||||||
<source>Enabled pictures: %1 of %2</source>
|
<source>Enabled pictures: %1 of %2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="185"/>
|
<location filename="../ProfileInterface.cpp" line="184"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="426"/>
|
<location filename="../ImportDialog.cpp" line="426"/>
|
||||||
<location filename="../ImportDialog.cpp" line="747"/>
|
<location filename="../ImportDialog.cpp" line="747"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="508"/>
|
<location filename="../ProfileInterface.cpp" line="495"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="509"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="574"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="977"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="982"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1325,24 +1325,24 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="524"/>
|
<location filename="../ProfileInterface.cpp" line="511"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="525"/>
|
<location filename="../ProfileInterface.cpp" line="512"/>
|
||||||
<location filename="../UserInterface.cpp" line="471"/>
|
<location filename="../UserInterface.cpp" line="471"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="526"/>
|
<location filename="../ProfileInterface.cpp" line="513"/>
|
||||||
<location filename="../UserInterface.cpp" line="472"/>
|
<location filename="../UserInterface.cpp" line="472"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
<location filename="../ProfileInterface.cpp" line="514"/>
|
||||||
<location filename="../UserInterface.cpp" line="473"/>
|
<location filename="../UserInterface.cpp" line="473"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1350,46 +1350,46 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="437"/>
|
<location filename="../ImportDialog.cpp" line="437"/>
|
||||||
<location filename="../ImportDialog.cpp" line="758"/>
|
<location filename="../ImportDialog.cpp" line="758"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="528"/>
|
<location filename="../ProfileInterface.cpp" line="515"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="438"/>
|
<location filename="../ImportDialog.cpp" line="438"/>
|
||||||
<location filename="../ImportDialog.cpp" line="759"/>
|
<location filename="../ImportDialog.cpp" line="759"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="529"/>
|
<location filename="../ProfileInterface.cpp" line="516"/>
|
||||||
<location filename="../UserInterface.cpp" line="474"/>
|
<location filename="../UserInterface.cpp" line="474"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../UserInterface.cpp" line="562"/>
|
<location filename="../UserInterface.cpp" line="562"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="575"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="592"/>
|
<location filename="../ProfileInterface.cpp" line="579"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../UserInterface.cpp" line="514"/>
|
<location filename="../UserInterface.cpp" line="514"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../UserInterface.cpp" line="530"/>
|
<location filename="../UserInterface.cpp" line="530"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1397,147 +1397,147 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="458"/>
|
<location filename="../ImportDialog.cpp" line="458"/>
|
||||||
<location filename="../ImportDialog.cpp" line="779"/>
|
<location filename="../ImportDialog.cpp" line="779"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="467"/>
|
<location filename="../ImportDialog.cpp" line="467"/>
|
||||||
<location filename="../ImportDialog.cpp" line="788"/>
|
<location filename="../ImportDialog.cpp" line="788"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1322"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1347"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1345"/>
|
<location filename="../ProfileInterface.cpp" line="1352"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
<location filename="../ProfileInterface.cpp" line="1356"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1299"/>
|
<location filename="../ProfileInterface.cpp" line="1306"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1382"/>
|
<location filename="../ProfileInterface.cpp" line="1389"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>Initializing export...</translation>
|
<translation>Initializing export...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2001"/>
|
<location filename="../ProfileInterface.cpp" line="2008"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2104"/>
|
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2341"/>
|
<location filename="../ProfileInterface.cpp" line="2348"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2002"/>
|
<location filename="../ProfileInterface.cpp" line="2009"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2021"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2105"/>
|
<location filename="../ProfileInterface.cpp" line="2112"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2124"/>
|
<location filename="../ProfileInterface.cpp" line="2131"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2236"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2255"/>
|
<location filename="../ProfileInterface.cpp" line="2262"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2342"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2368"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1545,70 +1545,70 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="998"/>
|
<location filename="../ProfileInterface.cpp" line="993"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1622,17 +1622,7 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="136"/>
|
||||||
<source>Font</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Selected Font: %1</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../main.cpp" line="144"/>
|
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1710,37 +1700,37 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1666"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1667"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1668"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1670"/>
|
<location filename="../ProfileInterface.cpp" line="1677"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1838,8 +1828,8 @@ Press 1 for Default View</source>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1885,30 +1875,30 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="287"/>
|
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
||||||
<source>Crew: %1 (%2)</source>
|
<source>Crew: %1 (%2)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="267"/>
|
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
||||||
<source>Title: %1 (%2)</source>
|
<source>Title: %1 (%2)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="235"/>
|
<location filename="../SnapmaticEditor.cpp" line="234"/>
|
||||||
<source>Players: %1 (%2)</source>
|
<source>Players: %1 (%2)</source>
|
||||||
<comment>Multiple Player are inserted here</comment>
|
<comment>Multiple Player are inserted here</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="239"/>
|
<location filename="../SnapmaticEditor.cpp" line="238"/>
|
||||||
<source>Player: %1 (%2)</source>
|
<source>Player: %1 (%2)</source>
|
||||||
<comment>One Player is inserted here</comment>
|
<comment>One Player is inserted here</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>Appropriate: %1</source>
|
<source>Appropriate: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1948,20 +1938,20 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="231"/>
|
<location filename="../SnapmaticEditor.cpp" line="230"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
<location filename="../SnapmaticEditor.cpp" line="265"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
<location filename="../SnapmaticEditor.cpp" line="285"/>
|
||||||
<source>Edit</source>
|
<source>Edit</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<source>Yes</source>
|
<source>Yes</source>
|
||||||
<comment>Yes, should work fine</comment>
|
<comment>Yes, should work fine</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<comment>No, could lead to issues</comment>
|
<comment>No, could lead to issues</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1983,33 +1973,33 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2017,66 +2007,66 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>SnapmaticPicture</name>
|
<name>SnapmaticPicture</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="464"/>
|
<location filename="../SnapmaticPicture.cpp" line="467"/>
|
||||||
<source>PHOTO - %1</source>
|
<source>PHOTO - %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="690"/>
|
<location filename="../SnapmaticPicture.cpp" line="693"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="706"/>
|
<location filename="../SnapmaticPicture.cpp" line="709"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="710"/>
|
<location filename="../SnapmaticPicture.cpp" line="713"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="714"/>
|
<location filename="../SnapmaticPicture.cpp" line="717"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="718"/>
|
<location filename="../SnapmaticPicture.cpp" line="721"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="722"/>
|
<location filename="../SnapmaticPicture.cpp" line="725"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="726"/>
|
<location filename="../SnapmaticPicture.cpp" line="729"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="740"/>
|
<location filename="../SnapmaticPicture.cpp" line="743"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="730"/>
|
<location filename="../SnapmaticPicture.cpp" line="733"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="734"/>
|
<location filename="../SnapmaticPicture.cpp" line="737"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="738"/>
|
<location filename="../SnapmaticPicture.cpp" line="741"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2136,52 +2126,52 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1622"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1625"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1622"/>
|
<location filename="../ProfileInterface.cpp" line="1629"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1629"/>
|
<location filename="../ProfileInterface.cpp" line="1636"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1632"/>
|
<location filename="../ProfileInterface.cpp" line="1639"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1644"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1638"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1641"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1652"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2209,22 +2199,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="165"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="166"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="179"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2431,15 +2421,15 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
|
Binary file not shown.
|
@ -176,8 +176,8 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>ImageEditorDialog</name>
|
<name>ImageEditorDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
|
@ -209,13 +209,13 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
||||||
<translation>&Fermer</translation>
|
<translation>&Fermer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation>Échec du patch Snapmatic : I/O Error</translation>
|
<translation>Échec du patch Snapmatic : I/O Error</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation>Échec du patch Snapmatic : Image Error</translation>
|
<translation>Échec du patch Snapmatic : Image Error</translation>
|
||||||
|
@ -359,14 +359,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="198"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="733"/>
|
<location filename="../ProfileInterface.cpp" line="720"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Avatar personnalisé</translation>
|
<translation>Avatar personnalisé</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="225"/>
|
<location filename="../ImportDialog.cpp" line="225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="752"/>
|
<location filename="../ProfileInterface.cpp" line="739"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Image personnalisé</translation>
|
<translation>Image personnalisé</translation>
|
||||||
|
@ -1092,37 +1092,37 @@ Y : %2</translation>
|
||||||
<translation>Fichier invalide</translation>
|
<translation>Fichier invalide</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="167"/>
|
<location filename="../PictureDialog.cpp" line="174"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1630"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>Exporter comme &image...</translation>
|
<translation>Exporter comme &image...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="168"/>
|
<location filename="../PictureDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1631"/>
|
<location filename="../ProfileInterface.cpp" line="1638"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>Exporter comme &Snapmatic...</translation>
|
<translation>Exporter comme &Snapmatic...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="171"/>
|
<location filename="../PictureDialog.cpp" line="178"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1625"/>
|
<location filename="../ProfileInterface.cpp" line="1632"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>&Remplacer l'image...</translation>
|
<translation>&Remplacer l'image...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="170"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1631"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>Modifier les &propriétés...</translation>
|
<translation>Modifier les &propriétés...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="173"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1634"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>Ouvrir la &Visionneuse de Carte...</translation>
|
<translation>Ouvrir la &Visionneuse de Carte...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="603"/>
|
<location filename="../PictureDialog.cpp" line="496"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
|
@ -1131,39 +1131,39 @@ Touche 2 - Activer/désactiver l'overlay
|
||||||
Touches fléchées - Naviguer</translation>
|
Touches fléchées - Naviguer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation>Visionneuse de photo Snapmatic</translation>
|
<translation>Visionneuse de photo Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation>Echec de %1</translation>
|
<translation>Echec de %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="805"/>
|
<location filename="../PictureDialog.cpp" line="698"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation>Aucun crew</translation>
|
<translation>Aucun crew</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="829"/>
|
<location filename="../PictureDialog.cpp" line="722"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="247"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation>Aucun joueurs</translation>
|
<translation>Aucun joueurs</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="763"/>
|
<location filename="../PictureDialog.cpp" line="656"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation>Mode Aperçu Avatar
|
<translation>Mode Aperçu Avatar
|
||||||
Appuyer sur 1 pour le mode par défaut</translation>
|
Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation>Emplacement inconnu</translation>
|
<translation>Emplacement inconnu</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1185,8 +1185,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Échec de l'export de la photo Snapmatic</translation>
|
<translation>Échec de l'export de la photo Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="175"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1628"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>Ouvrir l'éditeur &JSON...</translation>
|
<translation>Ouvrir l'éditeur &JSON...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1290,45 +1290,45 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Copie du fichier %1 sur %2</translation>
|
<translation>Copie du fichier %1 sur %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="85"/>
|
<location filename="../ProfileInterface.cpp" line="84"/>
|
||||||
<source>Enabled pictures: %1 of %2</source>
|
<source>Enabled pictures: %1 of %2</source>
|
||||||
<translation>Photos activées : %1 sur %2</translation>
|
<translation>Photos activées : %1 sur %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="185"/>
|
<location filename="../ProfileInterface.cpp" line="184"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>Chargement...</translation>
|
<translation>Chargement...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>Snapmatic Loader</translation>
|
<translation>Snapmatic Loader</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation><h4>Les Snapmatic suivants ont été répaés</h4>%1</translation>
|
<translation><h4>Les Snapmatic suivants ont été répaés</h4>%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="426"/>
|
<location filename="../ImportDialog.cpp" line="426"/>
|
||||||
<location filename="../ImportDialog.cpp" line="747"/>
|
<location filename="../ImportDialog.cpp" line="747"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="508"/>
|
<location filename="../ProfileInterface.cpp" line="495"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="509"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="574"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="977"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="982"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation>Importer...</translation>
|
<translation>Importer...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1343,13 +1343,13 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Importer</translation>
|
<translation>Importer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="526"/>
|
<location filename="../ProfileInterface.cpp" line="513"/>
|
||||||
<location filename="../UserInterface.cpp" line="472"/>
|
<location filename="../UserInterface.cpp" line="472"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation>Fichiers de sauvegarde GTA (SGTA*)</translation>
|
<translation>Fichiers de sauvegarde GTA (SGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
<location filename="../ProfileInterface.cpp" line="514"/>
|
||||||
<location filename="../UserInterface.cpp" line="473"/>
|
<location filename="../UserInterface.cpp" line="473"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation>Photos Snapmatic (PGTA*)</translation>
|
<translation>Photos Snapmatic (PGTA*)</translation>
|
||||||
|
@ -1357,26 +1357,26 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="437"/>
|
<location filename="../ImportDialog.cpp" line="437"/>
|
||||||
<location filename="../ImportDialog.cpp" line="758"/>
|
<location filename="../ImportDialog.cpp" line="758"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="528"/>
|
<location filename="../ProfileInterface.cpp" line="515"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>Toutes les images (%1)</translation>
|
<translation>Toutes les images (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="438"/>
|
<location filename="../ImportDialog.cpp" line="438"/>
|
||||||
<location filename="../ImportDialog.cpp" line="759"/>
|
<location filename="../ImportDialog.cpp" line="759"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="529"/>
|
<location filename="../ProfileInterface.cpp" line="516"/>
|
||||||
<location filename="../UserInterface.cpp" line="474"/>
|
<location filename="../UserInterface.cpp" line="474"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation>Tous les fichiers (**)</translation>
|
<translation>Tous les fichiers (**)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="575"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="592"/>
|
<location filename="../ProfileInterface.cpp" line="579"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation>Importation du fichier %1 sur %2</translation>
|
<translation>Importation du fichier %1 sur %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1385,25 +1385,25 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../UserInterface.cpp" line="562"/>
|
<location filename="../UserInterface.cpp" line="562"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation>Fichier invalide</translation>
|
<translation>Fichier invalide</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="524"/>
|
<location filename="../ProfileInterface.cpp" line="511"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation>Fichiers importables (%1)</translation>
|
<translation>Fichiers importables (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../UserInterface.cpp" line="514"/>
|
<location filename="../UserInterface.cpp" line="514"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation>Impossible d'ouvrir la photo Snapmatic</translation>
|
<translation>Impossible d'ouvrir la photo Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../UserInterface.cpp" line="530"/>
|
<location filename="../UserInterface.cpp" line="530"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation>Impossible de lire le fichier de sauvegarde</translation>
|
<translation>Impossible de lire le fichier de sauvegarde</translation>
|
||||||
|
@ -1411,122 +1411,122 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="458"/>
|
<location filename="../ImportDialog.cpp" line="458"/>
|
||||||
<location filename="../ImportDialog.cpp" line="779"/>
|
<location filename="../ImportDialog.cpp" line="779"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>Impossible d'importer %1, le fichier ne peut pas être ouvert</translation>
|
<translation>Impossible d'importer %1, le fichier ne peut pas être ouvert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="467"/>
|
<location filename="../ImportDialog.cpp" line="467"/>
|
||||||
<location filename="../ImportDialog.cpp" line="788"/>
|
<location filename="../ImportDialog.cpp" line="788"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>Impossible d'importer %1, le fichier ne peut pas être parsé correctement</translation>
|
<translation>Impossible d'importer %1, le fichier ne peut pas être parsé correctement</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation>Impossible d'importer %1, le format du fichier n'est pas détecté</translation>
|
<translation>Impossible d'importer %1, le format du fichier n'est pas détecté</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation>Impossible d'importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
|
<translation>Impossible d'importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation>Impossible d'importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation>
|
<translation>Impossible d'importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation>Impossible d'importer la sauvegarde, impossible de copier le fichier dans le profil</translation>
|
<translation>Impossible d'importer la sauvegarde, impossible de copier le fichier dans le profil</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation>Impossible d'importer la sauvegarde, aucun emplacement libre</translation>
|
<translation>Impossible d'importer la sauvegarde, aucun emplacement libre</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1322"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1347"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation>Images JPG et GTA Snapmatic</translation>
|
<translation>Images JPG et GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1345"/>
|
<location filename="../ProfileInterface.cpp" line="1352"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation>Images JPG seulement</translation>
|
<translation>Images JPG seulement</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
<location filename="../ProfileInterface.cpp" line="1356"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation>GTA Snapmatic seulement</translation>
|
<translation>GTA Snapmatic seulement</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation>%1Exporter les photos Snapmatic%2<br><br>Les fichiers JPG permettent d'ouvrir les photos avec une visionneuse d'images<br>Les GTA Snapmatic permettent d'importer les photos dans le jeu<br><br>Exporter comme :</translation>
|
<translation>%1Exporter les photos Snapmatic%2<br><br>Les fichiers JPG permettent d'ouvrir les photos avec une visionneuse d'images<br>Les GTA Snapmatic permettent d'importer les photos dans le jeu<br><br>Exporter comme :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1299"/>
|
<location filename="../ProfileInterface.cpp" line="1306"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1382"/>
|
<location filename="../ProfileInterface.cpp" line="1389"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>Exporter la sélection...</translation>
|
<translation>Exporter la sélection...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>Initialisation de l'export...</translation>
|
<translation>Initialisation de l'export...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>Qualifier comme Avatar</translation>
|
<translation>Qualifier comme Avatar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation>Aucun Snapmatic sélectionné</translation>
|
<translation>Aucun Snapmatic sélectionné</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2001"/>
|
<location filename="../ProfileInterface.cpp" line="2008"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2104"/>
|
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2341"/>
|
<location filename="../ProfileInterface.cpp" line="2348"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>Patcher la sélection...</translation>
|
<translation>Patcher la sélection...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2002"/>
|
<location filename="../ProfileInterface.cpp" line="2009"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2021"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2105"/>
|
<location filename="../ProfileInterface.cpp" line="2112"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2124"/>
|
<location filename="../ProfileInterface.cpp" line="2131"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2236"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2255"/>
|
<location filename="../ProfileInterface.cpp" line="2262"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2342"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2368"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation>Patch du fichier %1 sur %2</translation>
|
<translation>Patch du fichier %1 sur %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1536,76 +1536,76 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
%2</translation>
|
%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation>
|
<translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="998"/>
|
<location filename="../ProfileInterface.cpp" line="993"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation>Préparation du contenu pour l'import...</translation>
|
<translation>Préparation du contenu pour l'import...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation>Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ?</translation>
|
<translation>Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Qualifier</translation>
|
<translation>Qualifier</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>Modifier les joueurs...</translation>
|
<translation>Modifier les joueurs...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Modifier les joueurs</translation>
|
<translation>Modifier les joueurs</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>Modifier le Crew...</translation>
|
<translation>Modifier le Crew...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation>Snapmatic Crew ID invalide</translation>
|
<translation>Snapmatic Crew ID invalide</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Changer le Crew</translation>
|
<translation>Changer le Crew</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>Changer le titre...</translation>
|
<translation>Changer le titre...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation>Titre Snapmatic invalide</translation>
|
<translation>Titre Snapmatic invalide</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Changer le titre</translation>
|
<translation>Changer le titre</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1614,20 +1614,20 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation>
|
<translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>Supprimer la sélection</translation>
|
<translation>Supprimer la sélection</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation>Supprimer la sélection ?</translation>
|
<translation>Supprimer la sélection ?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1637,7 +1637,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation>
|
<translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="525"/>
|
<location filename="../ProfileInterface.cpp" line="512"/>
|
||||||
<location filename="../UserInterface.cpp" line="471"/>
|
<location filename="../UserInterface.cpp" line="471"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation>GTA V Export (*.g5e)</translation>
|
<translation>GTA V Export (*.g5e)</translation>
|
||||||
|
@ -1646,17 +1646,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation>Police</translation>
|
<translation type="vanished">Police</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation>Police sélectionnée : %1</translation>
|
<translation type="vanished">Police sélectionnée : %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="136"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation><h4>Bienvenue sur %1!</h4>Voulez-vous configurer %1 avant de l'utiliser t?</translation>
|
<translation><h4>Bienvenue sur %1!</h4>Voulez-vous configurer %1 avant de l'utiliser t?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1734,7 +1732,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Supprimer</translation>
|
<translation>Supprimer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1667"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Exporter</translation>
|
<translation>&Exporter</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1825,32 +1823,32 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Impossible de supprimer %1</translation>
|
<translation>Impossible de supprimer %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1666"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Voir</translation>
|
<translation>&Voir</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1668"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>&Supprimer</translation>
|
<translation>&Supprimer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1670"/>
|
<location filename="../ProfileInterface.cpp" line="1677"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Sélectionner</translation>
|
<translation>&Sélectionner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>&Déselectionner</translation>
|
<translation>&Déselectionner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>Sélectionner to&ut</translation>
|
<translation>Sélectionner to&ut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>&Déselectionner tout</translation>
|
<translation>&Déselectionner tout</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1864,8 +1862,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
<translation>Propriétés Snapmatic</translation>
|
<translation>Propriétés Snapmatic</translation>
|
||||||
|
@ -1906,8 +1904,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Meme</translation>
|
<translation>Meme</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation>Titre Snapmatic</translation>
|
<translation>Titre Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1917,30 +1915,30 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Valeurs Snapmatic</translation>
|
<translation>Valeurs Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="287"/>
|
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
||||||
<source>Crew: %1 (%2)</source>
|
<source>Crew: %1 (%2)</source>
|
||||||
<translation>Crew : %1 (%2)</translation>
|
<translation>Crew : %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="267"/>
|
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
||||||
<source>Title: %1 (%2)</source>
|
<source>Title: %1 (%2)</source>
|
||||||
<translation>Titre : %1 (%2)</translation>
|
<translation>Titre : %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="235"/>
|
<location filename="../SnapmaticEditor.cpp" line="234"/>
|
||||||
<source>Players: %1 (%2)</source>
|
<source>Players: %1 (%2)</source>
|
||||||
<comment>Multiple Player are inserted here</comment>
|
<comment>Multiple Player are inserted here</comment>
|
||||||
<translation>Joueurs : %1 (%2)</translation>
|
<translation>Joueurs : %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="239"/>
|
<location filename="../SnapmaticEditor.cpp" line="238"/>
|
||||||
<source>Player: %1 (%2)</source>
|
<source>Player: %1 (%2)</source>
|
||||||
<comment>One Player is inserted here</comment>
|
<comment>One Player is inserted here</comment>
|
||||||
<translation>Joueur : %1 (%2)</translation>
|
<translation>Joueur : %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>Appropriate: %1</source>
|
<source>Appropriate: %1</source>
|
||||||
<translation>Valide : %1</translation>
|
<translation>Valide : %1</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1980,21 +1978,21 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>A&nnuler</translation>
|
<translation>A&nnuler</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="231"/>
|
<location filename="../SnapmaticEditor.cpp" line="230"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
<location filename="../SnapmaticEditor.cpp" line="265"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
<location filename="../SnapmaticEditor.cpp" line="285"/>
|
||||||
<source>Edit</source>
|
<source>Edit</source>
|
||||||
<translation>Éditer</translation>
|
<translation>Éditer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<source>Yes</source>
|
<source>Yes</source>
|
||||||
<comment>Yes, should work fine</comment>
|
<comment>Yes, should work fine</comment>
|
||||||
<translatorcomment>Oui, devrait fonctionner</translatorcomment>
|
<translatorcomment>Oui, devrait fonctionner</translatorcomment>
|
||||||
<translation>Oui</translation>
|
<translation>Oui</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<comment>No, could lead to issues</comment>
|
<comment>No, could lead to issues</comment>
|
||||||
<translatorcomment>Non, pourrait causer des erreurs</translatorcomment>
|
<translatorcomment>Non, pourrait causer des erreurs</translatorcomment>
|
||||||
|
@ -2017,27 +2015,27 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
<translation>La modification des propriétés Snapmatic a échoué : erreur d'entrée/sortie</translation>
|
<translation>La modification des propriétés Snapmatic a échoué : erreur d'entrée/sortie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation>Nouveau titre Snapmatic :</translation>
|
<translation>Nouveau titre Snapmatic :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation>Crew Snapmatic</translation>
|
<translation>Crew Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation>Nouveau crew Snapmatic :</translation>
|
<translation>Nouveau crew Snapmatic :</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2045,66 +2043,66 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>SnapmaticPicture</name>
|
<name>SnapmaticPicture</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="464"/>
|
<location filename="../SnapmaticPicture.cpp" line="467"/>
|
||||||
<source>PHOTO - %1</source>
|
<source>PHOTO - %1</source>
|
||||||
<translation>PHOTO - %1</translation>
|
<translation>PHOTO - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="690"/>
|
<location filename="../SnapmaticPicture.cpp" line="693"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation>ouverture du fichier %1</translation>
|
<translation>ouverture du fichier %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="706"/>
|
<location filename="../SnapmaticPicture.cpp" line="709"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation>les headers n'existent pas</translation>
|
<translation>les headers n'existent pas</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="710"/>
|
<location filename="../SnapmaticPicture.cpp" line="713"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation>les headers sont incorrects</translation>
|
<translation>les headers sont incorrects</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="714"/>
|
<location filename="../SnapmaticPicture.cpp" line="717"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation>l'image n'existe pas (%1)</translation>
|
<translation>l'image n'existe pas (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="718"/>
|
<location filename="../SnapmaticPicture.cpp" line="721"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation>le JSON n'existe pas (%1)</translation>
|
<translation>le JSON n'existe pas (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="722"/>
|
<location filename="../SnapmaticPicture.cpp" line="725"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation>le titre n'existe pas (%1)</translation>
|
<translation>le titre n'existe pas (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="726"/>
|
<location filename="../SnapmaticPicture.cpp" line="729"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation>la description n'existe pas (%1)</translation>
|
<translation>la description n'existe pas (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="740"/>
|
<location filename="../SnapmaticPicture.cpp" line="743"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation>lecture du fichier %1 : %2</translation>
|
<translation>lecture du fichier %1 : %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="730"/>
|
<location filename="../SnapmaticPicture.cpp" line="733"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation>JSON incomplet ou incorrect</translation>
|
<translation>JSON incomplet ou incorrect</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="734"/>
|
<location filename="../SnapmaticPicture.cpp" line="737"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation>JSON incomplet</translation>
|
<translation>JSON incomplet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="738"/>
|
<location filename="../SnapmaticPicture.cpp" line="741"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation>JSON incorrect</translation>
|
<translation>JSON incorrect</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2184,52 +2182,52 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>%1 n'a pas pu être rendu visible en jeu</translation>
|
<translation>%1 n'a pas pu être rendu visible en jeu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1622"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>Édi&ter</translation>
|
<translation>Édi&ter</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1625"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>&Visible en jeu</translation>
|
<translation>&Visible en jeu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1622"/>
|
<location filename="../ProfileInterface.cpp" line="1629"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>&Invisible en jeu</translation>
|
<translation>&Invisible en jeu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1629"/>
|
<location filename="../ProfileInterface.cpp" line="1636"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Exporter</translation>
|
<translation>&Exporter</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1632"/>
|
<location filename="../ProfileInterface.cpp" line="1639"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Voir</translation>
|
<translation>&Voir</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>S&upprimer</translation>
|
<translation>S&upprimer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1644"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Sélectionner</translation>
|
<translation>&Sélectionner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1638"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>&Déselectionner</translation>
|
<translation>&Déselectionner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1641"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>Sélectionner &tout</translation>
|
<translation>Sélectionner &tout</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1652"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>&Déselectionner tout</translation>
|
<translation>&Déselectionner tout</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2237,22 +2235,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="165"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation>Voulez-vous aider au développement de %1 en transmettant vos données d'utilisation ?</translation>
|
<translation>Voulez-vous aider au développement de %1 en transmettant vos données d'utilisation ?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="166"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation>Statistiques utilisateurs %1</translation>
|
<translation>Statistiques utilisateurs %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation>Oui, je veux partager mes données d'utilisation.</translation>
|
<translation>Oui, je veux partager mes données d'utilisation.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="179"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&OK</translation>
|
<translation>&OK</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2456,18 +2454,18 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.cpp" line="645"/>
|
<location filename="../UserInterface.cpp" line="645"/>
|
||||||
<source>%1 - Messages</source>
|
<source>%1 - Messages</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>%1 - Nouvelles</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation>Visible en jeu</translation>
|
<translation>Visible en jeu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation>Invisible en jeu</translation>
|
<translation>Invisible en jeu</translation>
|
||||||
|
|
Binary file not shown.
|
@ -201,21 +201,21 @@ Pictures and Savegames</source>
|
||||||
<translation>닫기(&C)</translation>
|
<translation>닫기(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
<translation>스냅매틱 이미지 편집기</translation>
|
<translation>스냅매틱 이미지 편집기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation>I/O 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다</translation>
|
<translation>I/O 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation>이미지 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다</translation>
|
<translation>이미지 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다</translation>
|
||||||
|
@ -353,7 +353,7 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="198"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="733"/>
|
<location filename="../ProfileInterface.cpp" line="720"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translatorcomment>소셜클럽의 사용자 지정 아바타 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment>
|
<translatorcomment>소셜클럽의 사용자 지정 아바타 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment>
|
||||||
|
@ -361,7 +361,7 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="225"/>
|
<location filename="../ImportDialog.cpp" line="225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="752"/>
|
<location filename="../ProfileInterface.cpp" line="739"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translatorcomment>소셜클럽의 사용자 지정 그림 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment>
|
<translatorcomment>소셜클럽의 사용자 지정 그림 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment>
|
||||||
|
@ -1020,43 +1020,43 @@ Y: %2</translation>
|
||||||
<translation>닫기(&C)</translation>
|
<translation>닫기(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="167"/>
|
<location filename="../PictureDialog.cpp" line="174"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1630"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>사진으로 내보내기(&P)...</translation>
|
<translation>사진으로 내보내기(&P)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="168"/>
|
<location filename="../PictureDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1631"/>
|
<location filename="../ProfileInterface.cpp" line="1638"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>스낵매틱으로 내보내기(&S)...</translation>
|
<translation>스낵매틱으로 내보내기(&S)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="170"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1631"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>속성 편집(&E)...</translation>
|
<translation>속성 편집(&E)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="171"/>
|
<location filename="../PictureDialog.cpp" line="178"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1625"/>
|
<location filename="../ProfileInterface.cpp" line="1632"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>이미지 덮어쓰기(&O)...</translation>
|
<translation>이미지 덮어쓰기(&O)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="173"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1634"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>지도 뷰어 열기(&M)...</translation>
|
<translation>지도 뷰어 열기(&M)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="175"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1628"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>JSON 편집기 열기(&J)...</translation>
|
<translation>JSON 편집기 열기(&J)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="603"/>
|
<location filename="../PictureDialog.cpp" line="496"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
|
@ -1065,37 +1065,37 @@ Arrow Keys - Navigate</source>
|
||||||
화살표키 - 이동</translation>
|
화살표키 - 이동</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation>스낵매틱 사진 뷰어</translation>
|
<translation>스낵매틱 사진 뷰어</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation>%1에서 실패했습니다</translation>
|
<translation>%1에서 실패했습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="829"/>
|
<location filename="../PictureDialog.cpp" line="722"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="247"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation>플레이어 없음</translation>
|
<translation>플레이어 없음</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="805"/>
|
<location filename="../PictureDialog.cpp" line="698"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation>조직 없음</translation>
|
<translation>조직 없음</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation>알 수 없는 위치</translation>
|
<translation>알 수 없는 위치</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="763"/>
|
<location filename="../PictureDialog.cpp" line="656"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation>아바타 미리 보기 모드입니다
|
<translation>아바타 미리 보기 모드입니다
|
||||||
|
@ -1306,23 +1306,23 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="426"/>
|
<location filename="../ImportDialog.cpp" line="426"/>
|
||||||
<location filename="../ImportDialog.cpp" line="747"/>
|
<location filename="../ImportDialog.cpp" line="747"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="508"/>
|
<location filename="../ProfileInterface.cpp" line="495"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="509"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="574"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="977"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="982"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation>가져오기...</translation>
|
<translation>가져오기...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1339,14 +1339,14 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="437"/>
|
<location filename="../ImportDialog.cpp" line="437"/>
|
||||||
<location filename="../ImportDialog.cpp" line="758"/>
|
<location filename="../ImportDialog.cpp" line="758"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="528"/>
|
<location filename="../ProfileInterface.cpp" line="515"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>모든 이미지 파일 (%1)</translation>
|
<translation>모든 이미지 파일 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="438"/>
|
<location filename="../ImportDialog.cpp" line="438"/>
|
||||||
<location filename="../ImportDialog.cpp" line="759"/>
|
<location filename="../ImportDialog.cpp" line="759"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="529"/>
|
<location filename="../ProfileInterface.cpp" line="516"/>
|
||||||
<location filename="../UserInterface.cpp" line="474"/>
|
<location filename="../UserInterface.cpp" line="474"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation>모든 파일 (**)</translation>
|
<translation>모든 파일 (**)</translation>
|
||||||
|
@ -1354,75 +1354,75 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="458"/>
|
<location filename="../ImportDialog.cpp" line="458"/>
|
||||||
<location filename="../ImportDialog.cpp" line="779"/>
|
<location filename="../ImportDialog.cpp" line="779"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>파일을 열 수 없으므로 %1을 가져올 수 없습니다</translation>
|
<translation>파일을 열 수 없으므로 %1을 가져올 수 없습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="467"/>
|
<location filename="../ImportDialog.cpp" line="467"/>
|
||||||
<location filename="../ImportDialog.cpp" line="788"/>
|
<location filename="../ImportDialog.cpp" line="788"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>파일을 구문 분석할 수 없으므로 %1을 가져올 수 없습니다</translation>
|
<translation>파일을 구문 분석할 수 없으므로 %1을 가져올 수 없습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="85"/>
|
<location filename="../ProfileInterface.cpp" line="84"/>
|
||||||
<source>Enabled pictures: %1 of %2</source>
|
<source>Enabled pictures: %1 of %2</source>
|
||||||
<translation>활성화된 사진: %2의 %1</translation>
|
<translation>활성화된 사진: %2의 %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="185"/>
|
<location filename="../ProfileInterface.cpp" line="184"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>불러오는 중...</translation>
|
<translation>불러오는 중...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>스냅매틱 로더</translation>
|
<translation>스냅매틱 로더</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation><h4>다음 스냅매틱 사진을 복구했습니다 </h4>%1</translation>
|
<translation><h4>다음 스냅매틱 사진을 복구했습니다 </h4>%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="524"/>
|
<location filename="../ProfileInterface.cpp" line="511"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation>가져올 수 있는 파일 (%1)</translation>
|
<translation>가져올 수 있는 파일 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="525"/>
|
<location filename="../ProfileInterface.cpp" line="512"/>
|
||||||
<location filename="../UserInterface.cpp" line="471"/>
|
<location filename="../UserInterface.cpp" line="471"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation>GTA V로 내보내기 (*.g5e)</translation>
|
<translation>GTA V로 내보내기 (*.g5e)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="526"/>
|
<location filename="../ProfileInterface.cpp" line="513"/>
|
||||||
<location filename="../UserInterface.cpp" line="472"/>
|
<location filename="../UserInterface.cpp" line="472"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation>세이브 파일 (SGTA*)</translation>
|
<translation>세이브 파일 (SGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
<location filename="../ProfileInterface.cpp" line="514"/>
|
||||||
<location filename="../UserInterface.cpp" line="473"/>
|
<location filename="../UserInterface.cpp" line="473"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation>스냅매틱 사진 (PGTA*)</translation>
|
<translation>스냅매틱 사진 (PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../UserInterface.cpp" line="562"/>
|
<location filename="../UserInterface.cpp" line="562"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation>올바른 파일이 선택되지 않았습니다</translation>
|
<translation>올바른 파일이 선택되지 않았습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="575"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="592"/>
|
<location filename="../ProfileInterface.cpp" line="579"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation>%2 파일 중 %1 파일을 가져옵니다</translation>
|
<translation>%2 파일 중 %1 파일을 가져옵니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1431,91 +1431,91 @@ Press 1 for Default View</source>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../UserInterface.cpp" line="514"/>
|
<location filename="../UserInterface.cpp" line="514"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation>스냅매틱 사진을 읽지 못했습니다</translation>
|
<translation>스냅매틱 사진을 읽지 못했습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../UserInterface.cpp" line="530"/>
|
<location filename="../UserInterface.cpp" line="530"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation>세이브 파일을 읽지 못했습니다</translation>
|
<translation>세이브 파일을 읽지 못했습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation>파일 형식을 검색할 수 없으므로 %1을 가져올 수 없습니다</translation>
|
<translation>파일 형식을 검색할 수 없으므로 %1을 가져올 수 없습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="998"/>
|
<location filename="../ProfileInterface.cpp" line="993"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation>가져올 컨텐츠를 준비합니다...</translation>
|
<translation>가져올 컨텐츠를 준비합니다...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation>스냅매틱 사진을 가져오지 못했습니다. 파일이 PGTA로 시작되거나 .g5e로 끝나지 않습니다</translation>
|
<translation>스냅매틱 사진을 가져오지 못했습니다. 파일이 PGTA로 시작되거나 .g5e로 끝나지 않습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation>uid %1이(가) 있는 스냅매틱 사진이 이미 있습니다. 가져오기를 새 uid 및 타임스탬프를 할당하시겠습니까?</translation>
|
<translation>uid %1이(가) 있는 스냅매틱 사진이 이미 있습니다. 가져오기를 새 uid 및 타임스탬프를 할당하시겠습니까?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation>스냅매틱 사진을 가져오지 못했습니다. 파일을 프로파일에 복사할 수 없습니다</translation>
|
<translation>스냅매틱 사진을 가져오지 못했습니다. 파일을 프로파일에 복사할 수 없습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation>게임 저장 파일을 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다</translation>
|
<translation>게임 저장 파일을 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation>게임 저장 파일을 가져오지 못했습니다. 게임 저장 슬롯이 남아 있지 않습니다</translation>
|
<translation>게임 저장 파일을 가져오지 못했습니다. 게임 저장 슬롯이 남아 있지 않습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1299"/>
|
<location filename="../ProfileInterface.cpp" line="1306"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1382"/>
|
<location filename="../ProfileInterface.cpp" line="1389"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>내보내기를 선택했습니다...</translation>
|
<translation>내보내기를 선택했습니다...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1322"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1347"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation>JPG 사진 및 GTA 스냅매틱</translation>
|
<translation>JPG 사진 및 GTA 스냅매틱</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1345"/>
|
<location filename="../ProfileInterface.cpp" line="1352"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation>JPG 사진만</translation>
|
<translation>JPG 사진만</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
<location filename="../ProfileInterface.cpp" line="1356"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation>GTA 스냅매틱만</translation>
|
<translation>GTA 스냅매틱만</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation>%1 스냅 사진 내보내기를 수행합니다%2 <br><br>JPG 사진을 사용하면 이미지 뷰어 로 사진을 열 수 있습니다<br>GTA 스냅매틱을 사용하면 다음과 같이 사진을 게임으로 가져올 수 있습니다</translation>
|
<translation>%1 스냅 사진 내보내기를 수행합니다%2 <br><br>JPG 사진을 사용하면 이미지 뷰어 로 사진을 열 수 있습니다<br>GTA 스냅매틱을 사용하면 다음과 같이 사진을 게임으로 가져올 수 있습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>내보내기를 초기화하는 중...</translation>
|
<translation>내보내기를 초기화하는 중...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1524,45 +1524,45 @@ Press 1 for Default View</source>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation>스냅매틱 사진 또는 세이브 파일이 선택되지 않았습니다</translation>
|
<translation>스냅매틱 사진 또는 세이브 파일이 선택되지 않았습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>선택한 항목 삭제</translation>
|
<translation>선택한 항목 삭제</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation>선택한 스냅매틱 사진 및 세이브 파일을 삭제하시겠습니까?</translation>
|
<translation>선택한 스냅매틱 사진 및 세이브 파일을 삭제하시겠습니까?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation>선택한 모든 스냅매틱 사진 및 세이브 파일을 삭제하지 못했습니다</translation>
|
<translation>선택한 모든 스냅매틱 사진 및 세이브 파일을 삭제하지 못했습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation>스냅매틱 사진이 선택되지 않았습니다</translation>
|
<translation>스냅매틱 사진이 선택되지 않았습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1573,84 +1573,84 @@ Press 1 for Default View</source>
|
||||||
%2</translation>
|
%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>아바타 자격 부여</translation>
|
<translation>아바타 자격 부여</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2001"/>
|
<location filename="../ProfileInterface.cpp" line="2008"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2104"/>
|
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2341"/>
|
<location filename="../ProfileInterface.cpp" line="2348"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>패치가 선택됨...</translation>
|
<translation>패치가 선택됨...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2002"/>
|
<location filename="../ProfileInterface.cpp" line="2009"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2021"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2105"/>
|
<location filename="../ProfileInterface.cpp" line="2112"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2124"/>
|
<location filename="../ProfileInterface.cpp" line="2131"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2236"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2255"/>
|
<location filename="../ProfileInterface.cpp" line="2262"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2342"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2368"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation>%2 파일의 %1 패치 파일입니다</translation>
|
<translation>%2 파일의 %1 패치 파일입니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
||||||
<translation>자격 부여</translation>
|
<translation>자격 부여</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>플레이어 변경...</translation>
|
<translation>플레이어 변경...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
||||||
<translation>플레이어 변경</translation>
|
<translation>플레이어 변경</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>조직 변경...</translation>
|
<translation>조직 변경...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation>올바른 스냅매틱 조직 아이디를 입력하지 못했습니다</translation>
|
<translation>올바른 스냅매틱 조직 아이디를 입력하지 못했습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
||||||
<translation>조직 변경</translation>
|
<translation>조직 변경</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>제목 변경...</translation>
|
<translation>제목 변경...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation>올바른 스냅매틱 제목을 입력하지 못했습니다</translation>
|
<translation>올바른 스냅매틱 제목을 입력하지 못했습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
||||||
|
@ -1665,17 +1665,15 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation>폰트</translation>
|
<translation type="vanished">폰트</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation>선택된 폰트: %1</translation>
|
<translation type="vanished">선택된 폰트: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="136"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation><h4>%1에 오신 것을 환영합니다!</h4>%1을 사용하기 전에 구성하시겠습니까?</translation>
|
<translation><h4>%1에 오신 것을 환영합니다!</h4>%1을 사용하기 전에 구성하시겠습니까?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1753,37 +1751,37 @@ Press 1 for Default View</source>
|
||||||
<translation>삭제</translation>
|
<translation>삭제</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1666"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>보기(&V)</translation>
|
<translation>보기(&V)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1667"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>내보내기(&E)</translation>
|
<translation>내보내기(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1668"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>삭제(&R)</translation>
|
<translation>삭제(&R)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1670"/>
|
<location filename="../ProfileInterface.cpp" line="1677"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>선택(&S)</translation>
|
<translation>선택(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>선택 해제(&D)</translation>
|
<translation>선택 해제(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>모두 선택(&A)</translation>
|
<translation>모두 선택(&A)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>모두 선택 해제(&D)</translation>
|
<translation>모두 선택 해제(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1883,8 +1881,8 @@ Press 1 for Default View</source>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
<translation>스냅매틱 속성</translation>
|
<translation>스냅매틱 속성</translation>
|
||||||
|
@ -1976,8 +1974,8 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
<translation>I/O 오류로 인해 스냅매틱 속성을 패치하지 못했습니다</translation>
|
<translation>I/O 오류로 인해 스냅매틱 속성을 패치하지 못했습니다</translation>
|
||||||
|
@ -1988,77 +1986,77 @@ Press 1 for Default View</source>
|
||||||
<translation>JSON 오류로 인해 스냅매틱 속성을 패치하지 못했습니다</translation>
|
<translation>JSON 오류로 인해 스냅매틱 속성을 패치하지 못했습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation>조직 스냅매틱</translation>
|
<translation>조직 스냅매틱</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation>새로운 조직 스냅매틱:</translation>
|
<translation>새로운 조직 스냅매틱:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation>스냅매틱 제목</translation>
|
<translation>스냅매틱 제목</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation>새로운 스냅매틱 제목:</translation>
|
<translation>새로운 스냅매틱 제목:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="231"/>
|
<location filename="../SnapmaticEditor.cpp" line="230"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
<location filename="../SnapmaticEditor.cpp" line="265"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
<location filename="../SnapmaticEditor.cpp" line="285"/>
|
||||||
<source>Edit</source>
|
<source>Edit</source>
|
||||||
<translation>편집</translation>
|
<translation>편집</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="235"/>
|
<location filename="../SnapmaticEditor.cpp" line="234"/>
|
||||||
<source>Players: %1 (%2)</source>
|
<source>Players: %1 (%2)</source>
|
||||||
<comment>Multiple Player are inserted here</comment>
|
<comment>Multiple Player are inserted here</comment>
|
||||||
<translatorcomment>여기에 여러 플레이어가 추가됩니다.</translatorcomment>
|
<translatorcomment>여기에 여러 플레이어가 추가됩니다.</translatorcomment>
|
||||||
<translation>플레이어: %1 (%2)</translation>
|
<translation>플레이어: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="239"/>
|
<location filename="../SnapmaticEditor.cpp" line="238"/>
|
||||||
<source>Player: %1 (%2)</source>
|
<source>Player: %1 (%2)</source>
|
||||||
<comment>One Player is inserted here</comment>
|
<comment>One Player is inserted here</comment>
|
||||||
<translatorcomment>여기에 플레이어 하나가 추가됩니다.</translatorcomment>
|
<translatorcomment>여기에 플레이어 하나가 추가됩니다.</translatorcomment>
|
||||||
<translation>플레이어: %1 (%2)</translation>
|
<translation>플레이어: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="267"/>
|
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
||||||
<source>Title: %1 (%2)</source>
|
<source>Title: %1 (%2)</source>
|
||||||
<translation>제목: %1 (%2)</translation>
|
<translation>제목: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>Appropriate: %1</source>
|
<source>Appropriate: %1</source>
|
||||||
<translation>변경: %1</translation>
|
<translation>변경: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<source>Yes</source>
|
<source>Yes</source>
|
||||||
<comment>Yes, should work fine</comment>
|
<comment>Yes, should work fine</comment>
|
||||||
<translatorcomment>네, 잘 될 거예요.</translatorcomment>
|
<translatorcomment>네, 잘 될 거예요.</translatorcomment>
|
||||||
<translation>예</translation>
|
<translation>예</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<comment>No, could lead to issues</comment>
|
<comment>No, could lead to issues</comment>
|
||||||
<translatorcomment>아니요, 문제가 발생할 수 있습니다.</translatorcomment>
|
<translatorcomment>아니요, 문제가 발생할 수 있습니다.</translatorcomment>
|
||||||
<translation>아니요</translation>
|
<translation>아니요</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="287"/>
|
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
||||||
<source>Crew: %1 (%2)</source>
|
<source>Crew: %1 (%2)</source>
|
||||||
<translation>조직: %1 (%2)</translation>
|
<translation>조직: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2067,64 +2065,64 @@ Press 1 for Default View</source>
|
||||||
<name>SnapmaticPicture</name>
|
<name>SnapmaticPicture</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="730"/>
|
<location filename="../SnapmaticPicture.cpp" line="733"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation>JSON이 불안정하고 형식이 잘못되었습니다</translation>
|
<translation>JSON이 불안정하고 형식이 잘못되었습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="734"/>
|
<location filename="../SnapmaticPicture.cpp" line="737"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation>JSON이 불안정합니다</translation>
|
<translation>JSON이 불안정합니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="738"/>
|
<location filename="../SnapmaticPicture.cpp" line="741"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation>잘못된 JSON 형식</translation>
|
<translation>잘못된 JSON 형식</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="464"/>
|
<location filename="../SnapmaticPicture.cpp" line="467"/>
|
||||||
<source>PHOTO - %1</source>
|
<source>PHOTO - %1</source>
|
||||||
<translation>사진 - %1</translation>
|
<translation>사진 - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="690"/>
|
<location filename="../SnapmaticPicture.cpp" line="693"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation>파일 열기 %1</translation>
|
<translation>파일 열기 %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="706"/>
|
<location filename="../SnapmaticPicture.cpp" line="709"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation>헤더가 존재하지 않습니다</translation>
|
<translation>헤더가 존재하지 않습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="710"/>
|
<location filename="../SnapmaticPicture.cpp" line="713"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation>헤더의 형식이 잘못되었습니다</translation>
|
<translation>헤더의 형식이 잘못되었습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="714"/>
|
<location filename="../SnapmaticPicture.cpp" line="717"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation>사진이 존재하지 않습니다. (%1)</translation>
|
<translation>사진이 존재하지 않습니다. (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="718"/>
|
<location filename="../SnapmaticPicture.cpp" line="721"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation>JSON이 존재하지 않습니다. (%1)</translation>
|
<translation>JSON이 존재하지 않습니다. (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="722"/>
|
<location filename="../SnapmaticPicture.cpp" line="725"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation>제목이 존재하지 않습니다. (%1)</translation>
|
<translation>제목이 존재하지 않습니다. (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="726"/>
|
<location filename="../SnapmaticPicture.cpp" line="729"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation>설명이 존재하지 않습니다. (%1)</translation>
|
<translation>설명이 존재하지 않습니다. (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="740"/>
|
<location filename="../SnapmaticPicture.cpp" line="743"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translatorcomment>%2의 예: JSON이 잘못된 형식입니다</translatorcomment>
|
<translatorcomment>%2의 예: JSON이 잘못된 형식입니다</translatorcomment>
|
||||||
|
@ -2186,52 +2184,52 @@ Press 1 for Default View</source>
|
||||||
<translation>삭제</translation>
|
<translation>삭제</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1622"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>편집(&T)</translation>
|
<translation>편집(&T)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1625"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>인게임에서 보이기(&I)</translation>
|
<translation>인게임에서 보이기(&I)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1622"/>
|
<location filename="../ProfileInterface.cpp" line="1629"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>인게임에서 숨기기(&I)</translation>
|
<translation>인게임에서 숨기기(&I)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1629"/>
|
<location filename="../ProfileInterface.cpp" line="1636"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>내보내기(&E)</translation>
|
<translation>내보내기(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1632"/>
|
<location filename="../ProfileInterface.cpp" line="1639"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>보기(&V)</translation>
|
<translation>보기(&V)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>삭제(&R)</translation>
|
<translation>삭제(&R)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1644"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>선택(&S)</translation>
|
<translation>선택(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1638"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>선택 해제(&D)</translation>
|
<translation>선택 해제(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1641"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>모두 선택(&A)</translation>
|
<translation>모두 선택(&A)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1652"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>모두 선택 해제(&D)</translation>
|
<translation>모두 선택 해제(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2259,22 +2257,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="165"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation>개인 사용 데이터를 제출에 포함시켜 %1이(가) 개선되기를 원합니까?</translation>
|
<translation>개인 사용 데이터를 제출에 포함시켜 %1이(가) 개선되기를 원합니까?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="166"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation>%1 사용자 통계</translation>
|
<translation>%1 사용자 통계</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation>예, 개인 사용 데이터를 포함시키고 싶습니다.</translation>
|
<translation>예, 개인 사용 데이터를 포함시키고 싶습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="179"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>확인(&O)</translation>
|
<translation>확인(&O)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2419,7 +2417,7 @@ Press 1 for Default View</source>
|
||||||
<location filename="../UserInterface.cpp" line="195"/>
|
<location filename="../UserInterface.cpp" line="195"/>
|
||||||
<location filename="../UserInterface.cpp" line="732"/>
|
<location filename="../UserInterface.cpp" line="732"/>
|
||||||
<source>Select GTA V Folder...</source>
|
<source>Select GTA V Folder...</source>
|
||||||
<translation>GTA V 폴더 선택</translation>
|
<translation>GTA V 폴더 선택...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="330"/>
|
<location filename="../UserInterface.ui" line="330"/>
|
||||||
|
@ -2452,15 +2450,15 @@ Press 1 for Default View</source>
|
||||||
<translation>플레이어 변경(&P)...</translation>
|
<translation>플레이어 변경(&P)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation>인게임 보이기</translation>
|
<translation>인게임 보이기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation>인게임 숨기기</translation>
|
<translation>인게임 숨기기</translation>
|
||||||
|
@ -2493,7 +2491,7 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.cpp" line="645"/>
|
<location filename="../UserInterface.cpp" line="645"/>
|
||||||
<source>%1 - Messages</source>
|
<source>%1 - Messages</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>%1 - 뉴스</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
Binary file not shown.
|
@ -180,8 +180,8 @@ Pictures and Savegames</source>
|
||||||
<context>
|
<context>
|
||||||
<name>ImageEditorDialog</name>
|
<name>ImageEditorDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
|
@ -213,13 +213,13 @@ Pictures and Savegames</source>
|
||||||
<translation>&Закрыть</translation>
|
<translation>&Закрыть</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation>Не удалось изменить картинку Snapmatic из-за ошибки ввода-вывода</translation>
|
<translation>Не удалось изменить картинку Snapmatic из-за ошибки ввода-вывода</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation>Не удалось изменить картинку Snapmatic из-за ошибки Image Error</translation>
|
<translation>Не удалось изменить картинку Snapmatic из-за ошибки Image Error</translation>
|
||||||
|
@ -367,14 +367,14 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="198"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="733"/>
|
<location filename="../ProfileInterface.cpp" line="720"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Свой Аватар</translation>
|
<translation>Свой Аватар</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="225"/>
|
<location filename="../ImportDialog.cpp" line="225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="752"/>
|
<location filename="../ProfileInterface.cpp" line="739"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Своя Картинка</translation>
|
<translation>Своя Картинка</translation>
|
||||||
|
@ -1023,37 +1023,37 @@ Y: %2</translation>
|
||||||
<translation>Экспортировать</translation>
|
<translation>Экспортировать</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="167"/>
|
<location filename="../PictureDialog.cpp" line="174"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1630"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>Экспортировать как &картинку...</translation>
|
<translation>Экспортировать как &картинку...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="168"/>
|
<location filename="../PictureDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1631"/>
|
<location filename="../ProfileInterface.cpp" line="1638"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>Экспортировать как &Snapmatic...</translation>
|
<translation>Экспортировать как &Snapmatic...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="171"/>
|
<location filename="../PictureDialog.cpp" line="178"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1625"/>
|
<location filename="../ProfileInterface.cpp" line="1632"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>&Перезаписать картинку...</translation>
|
<translation>&Перезаписать картинку...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="170"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1631"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>&Изменить свойства...</translation>
|
<translation>&Изменить свойства...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="173"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1634"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>Открыть &карту...</translation>
|
<translation>Открыть &карту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="603"/>
|
<location filename="../PictureDialog.cpp" line="496"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
|
@ -1062,39 +1062,39 @@ Arrow Keys - Navigate</source>
|
||||||
Стрелки - Навигация</translation>
|
Стрелки - Навигация</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation>Просмотрщик фотографий Snapmatic</translation>
|
<translation>Просмотрщик фотографий Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation>Ошибка при %1</translation>
|
<translation>Ошибка при %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="805"/>
|
<location filename="../PictureDialog.cpp" line="698"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation>Вне банды</translation>
|
<translation>Вне банды</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="829"/>
|
<location filename="../PictureDialog.cpp" line="722"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="247"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation>Игроков нет</translation>
|
<translation>Игроков нет</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="763"/>
|
<location filename="../PictureDialog.cpp" line="656"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation>Режим просмотра аватарок
|
<translation>Режим просмотра аватарок
|
||||||
Нажмите 1 для стандартного просмотра</translation>
|
Нажмите 1 для стандартного просмотра</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation>Неизвестное место</translation>
|
<translation>Неизвестное место</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1196,8 +1196,8 @@ Press 1 for Default View</source>
|
||||||
<translation>Картинки Snapmatic (PGTA*)</translation>
|
<translation>Картинки Snapmatic (PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="175"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1628"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>Открыть &редактор JSON...</translation>
|
<translation>Открыть &редактор JSON...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1294,17 +1294,17 @@ Press 1 for Default View</source>
|
||||||
<translation>&Закрыть</translation>
|
<translation>&Закрыть</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="185"/>
|
<location filename="../ProfileInterface.cpp" line="184"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>Загрузка...</translation>
|
<translation>Загрузка...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>Загрузчик Snapmatic</translation>
|
<translation>Загрузчик Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translatorcomment>Change wording if the %1 is not a multiline beginning at new line
|
<translatorcomment>Change wording if the %1 is not a multiline beginning at new line
|
||||||
</translatorcomment>
|
</translatorcomment>
|
||||||
|
@ -1313,23 +1313,23 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="426"/>
|
<location filename="../ImportDialog.cpp" line="426"/>
|
||||||
<location filename="../ImportDialog.cpp" line="747"/>
|
<location filename="../ImportDialog.cpp" line="747"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="508"/>
|
<location filename="../ProfileInterface.cpp" line="495"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="509"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="574"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="977"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="982"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation>Импортировать...</translation>
|
<translation>Импортировать...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1344,13 +1344,13 @@ Press 1 for Default View</source>
|
||||||
<translation>Импортировать</translation>
|
<translation>Импортировать</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="526"/>
|
<location filename="../ProfileInterface.cpp" line="513"/>
|
||||||
<location filename="../UserInterface.cpp" line="472"/>
|
<location filename="../UserInterface.cpp" line="472"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation>Файлы сохранения (SGTA*)</translation>
|
<translation>Файлы сохранения (SGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
<location filename="../ProfileInterface.cpp" line="514"/>
|
||||||
<location filename="../UserInterface.cpp" line="473"/>
|
<location filename="../UserInterface.cpp" line="473"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation>Картинка Snapmatic (PGTA*)</translation>
|
<translation>Картинка Snapmatic (PGTA*)</translation>
|
||||||
|
@ -1358,19 +1358,19 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="438"/>
|
<location filename="../ImportDialog.cpp" line="438"/>
|
||||||
<location filename="../ImportDialog.cpp" line="759"/>
|
<location filename="../ImportDialog.cpp" line="759"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="529"/>
|
<location filename="../ProfileInterface.cpp" line="516"/>
|
||||||
<location filename="../UserInterface.cpp" line="474"/>
|
<location filename="../UserInterface.cpp" line="474"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation>Все файлы (**)</translation>
|
<translation>Все файлы (**)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="575"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="592"/>
|
<location filename="../ProfileInterface.cpp" line="579"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation>Импортируются файлы %1 из %2</translation>
|
<translation>Импортируются файлы %1 из %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1379,169 +1379,169 @@ Press 1 for Default View</source>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../UserInterface.cpp" line="514"/>
|
<location filename="../UserInterface.cpp" line="514"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation>Не удалось загрузить картинку Snapmatic</translation>
|
<translation>Не удалось загрузить картинку Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../UserInterface.cpp" line="530"/>
|
<location filename="../UserInterface.cpp" line="530"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation>Не удалось загрузить файл сохранения</translation>
|
<translation>Не удалось загрузить файл сохранения</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../UserInterface.cpp" line="562"/>
|
<location filename="../UserInterface.cpp" line="562"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation>Выбранный файл неверен</translation>
|
<translation>Выбранный файл неверен</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="85"/>
|
<location filename="../ProfileInterface.cpp" line="84"/>
|
||||||
<source>Enabled pictures: %1 of %2</source>
|
<source>Enabled pictures: %1 of %2</source>
|
||||||
<translation>Включенные картинки: %1 из %2</translation>
|
<translation>Включенные картинки: %1 из %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="524"/>
|
<location filename="../ProfileInterface.cpp" line="511"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation>Файлы для импорта (%1)</translation>
|
<translation>Файлы для импорта (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="437"/>
|
<location filename="../ImportDialog.cpp" line="437"/>
|
||||||
<location filename="../ImportDialog.cpp" line="758"/>
|
<location filename="../ImportDialog.cpp" line="758"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="528"/>
|
<location filename="../ProfileInterface.cpp" line="515"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>Все файлы изображений (%1)</translation>
|
<translation>Все файлы изображений (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="458"/>
|
<location filename="../ImportDialog.cpp" line="458"/>
|
||||||
<location filename="../ImportDialog.cpp" line="779"/>
|
<location filename="../ImportDialog.cpp" line="779"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>Не удалось открыть %1, файл не может быть открыт</translation>
|
<translation>Не удалось открыть %1, файл не может быть открыт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="467"/>
|
<location filename="../ImportDialog.cpp" line="467"/>
|
||||||
<location filename="../ImportDialog.cpp" line="788"/>
|
<location filename="../ImportDialog.cpp" line="788"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
|
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation>Не получилось импортировать %1, не удалось определить формат файла</translation>
|
<translation>Не получилось импортировать %1, не удалось определить формат файла</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
|
<translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
|
<translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
|
<translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
|
<translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1322"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1347"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation>Картинки JPG и GTA Snapmatic</translation>
|
<translation>Картинки JPG и GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1345"/>
|
<location filename="../ProfileInterface.cpp" line="1352"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation>Только картинки JPG</translation>
|
<translation>Только картинки JPG</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
<location filename="../ProfileInterface.cpp" line="1356"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation>Только GTA Snapmatic</translation>
|
<translation>Только GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>Подготовка к экспорту...</translation>
|
<translation>Подготовка к экспорту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation>Не выделены ни один Snapmatic или сохранение</translation>
|
<translation>Не выделены ни один Snapmatic или сохранение</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>Снять выделение</translation>
|
<translation>Снять выделение</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
|
<translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="998"/>
|
<location filename="../ProfileInterface.cpp" line="993"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation>Подготовка данных к импорту...</translation>
|
<translation>Подготовка данных к импорту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>Пометить как Аватар</translation>
|
<translation>Пометить как Аватар</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation>Не выделена ни одна картинка Snapmatic</translation>
|
<translation>Не выделена ни одна картинка Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2001"/>
|
<location filename="../ProfileInterface.cpp" line="2008"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2104"/>
|
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2341"/>
|
<location filename="../ProfileInterface.cpp" line="2348"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>Пропатчить выделенные...</translation>
|
<translation>Пропатчить выделенные...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2002"/>
|
<location filename="../ProfileInterface.cpp" line="2009"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2021"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2105"/>
|
<location filename="../ProfileInterface.cpp" line="2112"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2124"/>
|
<location filename="../ProfileInterface.cpp" line="2131"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2236"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2255"/>
|
<location filename="../ProfileInterface.cpp" line="2262"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2342"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2368"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation>Изменяется файл %1 из %2</translation>
|
<translation>Изменяется файл %1 из %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1551,86 +1551,86 @@ Press 1 for Default View</source>
|
||||||
%2</translation>
|
%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translatorcomment>Можно использовать слово "приписать"</translatorcomment>
|
<translatorcomment>Можно использовать слово "приписать"</translatorcomment>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
|
<translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Помечание</translation>
|
<translation>Помечание</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>Изменить игроков...</translation>
|
<translation>Изменить игроков...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Измение игроков</translation>
|
<translation>Измение игроков</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>Изменить банду...</translation>
|
<translation>Изменить банду...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation>Введённый идентификатор банды не верен</translation>
|
<translation>Введённый идентификатор банды не верен</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Изменение банды</translation>
|
<translation>Изменение банды</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>Изменить заголовок...</translation>
|
<translation>Изменить заголовок...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation>Введённый заголовок не верен</translation>
|
<translation>Введённый заголовок не верен</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Изменение заголовка</translation>
|
<translation>Изменение заголовка</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation>%1Эскпортировать картинки Snapmatic%2<br><br>Картинки JPG можно открыть любым просмотрщиком<br>Картинки формата GTA Snapmatic можно снова импортировать в игру<br><br>Экспортировать как:</translation>
|
<translation>%1Эскпортировать картинки Snapmatic%2<br><br>Картинки JPG можно открыть любым просмотрщиком<br>Картинки формата GTA Snapmatic можно снова импортировать в игру<br><br>Экспортировать как:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1299"/>
|
<location filename="../ProfileInterface.cpp" line="1306"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1382"/>
|
<location filename="../ProfileInterface.cpp" line="1389"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>Экпортировать выделенное...</translation>
|
<translation>Экпортировать выделенное...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1651,7 +1651,7 @@ Press 1 for Default View</source>
|
||||||
<translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
|
<translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="525"/>
|
<location filename="../ProfileInterface.cpp" line="512"/>
|
||||||
<location filename="../UserInterface.cpp" line="471"/>
|
<location filename="../UserInterface.cpp" line="471"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation>GTA V Export (*.g5e)</translation>
|
<translation>GTA V Export (*.g5e)</translation>
|
||||||
|
@ -1660,17 +1660,15 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation>Шрифт</translation>
|
<translation type="vanished">Шрифт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation>Выбранный шрифт: %1</translation>
|
<translation type="vanished">Выбранный шрифт: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="136"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation><h4>Добро пожаловать в %1!</h4>Хочешь изменить настройки %1 перед использованием?</translation>
|
<translation><h4>Добро пожаловать в %1!</h4>Хочешь изменить настройки %1 перед использованием?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1791,32 +1789,32 @@ Press 1 for Default View</source>
|
||||||
<translation>Не удалось удалить сохранение %1</translation>
|
<translation>Не удалось удалить сохранение %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1666"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Просмотр</translation>
|
<translation>&Просмотр</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1668"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>&Удалить</translation>
|
<translation>&Удалить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1670"/>
|
<location filename="../ProfileInterface.cpp" line="1677"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Выбрать</translation>
|
<translation>&Выбрать</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>Сн&ять выбор</translation>
|
<translation>Сн&ять выбор</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>В&ыбрать все</translation>
|
<translation>В&ыбрать все</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>Снять выбо&р со всех</translation>
|
<translation>Снять выбо&р со всех</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1826,7 +1824,7 @@ Press 1 for Default View</source>
|
||||||
<translation>Копировать сохранение</translation>
|
<translation>Копировать сохранение</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1667"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Экспортировать</translation>
|
<translation>&Экспортировать</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1878,8 +1876,8 @@ Press 1 for Default View</source>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
<translation>Свойства Snapmatic</translation>
|
<translation>Свойства Snapmatic</translation>
|
||||||
|
@ -1920,7 +1918,7 @@ Press 1 for Default View</source>
|
||||||
<translation>Значения в Snapmatic</translation>
|
<translation>Значения в Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="287"/>
|
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
||||||
<source>Crew: %1 (%2)</source>
|
<source>Crew: %1 (%2)</source>
|
||||||
<translation>Банда: %1 (%2)</translation>
|
<translation>Банда: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1930,31 +1928,31 @@ Press 1 for Default View</source>
|
||||||
<translation>Meme</translation>
|
<translation>Meme</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation>Заголовок Snapmatic</translation>
|
<translation>Заголовок Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="267"/>
|
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
||||||
<source>Title: %1 (%2)</source>
|
<source>Title: %1 (%2)</source>
|
||||||
<translation>Заголовок: %1 (%2)</translation>
|
<translation>Заголовок: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="235"/>
|
<location filename="../SnapmaticEditor.cpp" line="234"/>
|
||||||
<source>Players: %1 (%2)</source>
|
<source>Players: %1 (%2)</source>
|
||||||
<comment>Multiple Player are inserted here</comment>
|
<comment>Multiple Player are inserted here</comment>
|
||||||
<translation>Игроки: %1 (%2)</translation>
|
<translation>Игроки: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="239"/>
|
<location filename="../SnapmaticEditor.cpp" line="238"/>
|
||||||
<source>Player: %1 (%2)</source>
|
<source>Player: %1 (%2)</source>
|
||||||
<comment>One Player is inserted here</comment>
|
<comment>One Player is inserted here</comment>
|
||||||
<translation>Игрок: %1 (%2)</translation>
|
<translation>Игрок: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>Appropriate: %1</source>
|
<source>Appropriate: %1</source>
|
||||||
<translation>Подходит: %1</translation>
|
<translation>Подходит: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1994,20 +1992,20 @@ Press 1 for Default View</source>
|
||||||
<translation>&Отмена</translation>
|
<translation>&Отмена</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="231"/>
|
<location filename="../SnapmaticEditor.cpp" line="230"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
<location filename="../SnapmaticEditor.cpp" line="265"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
<location filename="../SnapmaticEditor.cpp" line="285"/>
|
||||||
<source>Edit</source>
|
<source>Edit</source>
|
||||||
<translation>Правка</translation>
|
<translation>Правка</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<source>Yes</source>
|
<source>Yes</source>
|
||||||
<comment>Yes, should work fine</comment>
|
<comment>Yes, should work fine</comment>
|
||||||
<translation>Да</translation>
|
<translation>Да</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<comment>No, could lead to issues</comment>
|
<comment>No, could lead to issues</comment>
|
||||||
<translation>Нет</translation>
|
<translation>Нет</translation>
|
||||||
|
@ -2029,27 +2027,27 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
|
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation>Новый заголовок Snapmatic:</translation>
|
<translation>Новый заголовок Snapmatic:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation>Банда на Snapmatic</translation>
|
<translation>Банда на Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation>Новая банда на Snapmatic:</translation>
|
<translation>Новая банда на Snapmatic:</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2057,66 +2055,66 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>SnapmaticPicture</name>
|
<name>SnapmaticPicture</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="464"/>
|
<location filename="../SnapmaticPicture.cpp" line="467"/>
|
||||||
<source>PHOTO - %1</source>
|
<source>PHOTO - %1</source>
|
||||||
<translation>ФОТО - %1</translation>
|
<translation>ФОТО - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="690"/>
|
<location filename="../SnapmaticPicture.cpp" line="693"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation>Открыть файл %1</translation>
|
<translation>Открыть файл %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="706"/>
|
<location filename="../SnapmaticPicture.cpp" line="709"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation>Отсутствует шапка (header)</translation>
|
<translation>Отсутствует шапка (header)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="710"/>
|
<location filename="../SnapmaticPicture.cpp" line="713"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation>Шапка (header) повреждена</translation>
|
<translation>Шапка (header) повреждена</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="714"/>
|
<location filename="../SnapmaticPicture.cpp" line="717"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation>Картинки не существует (%1)</translation>
|
<translation>Картинки не существует (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="718"/>
|
<location filename="../SnapmaticPicture.cpp" line="721"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation>JSON не существует (%1)</translation>
|
<translation>JSON не существует (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="722"/>
|
<location filename="../SnapmaticPicture.cpp" line="725"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation>Заголовок отсутствует (%1)</translation>
|
<translation>Заголовок отсутствует (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="726"/>
|
<location filename="../SnapmaticPicture.cpp" line="729"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation>Описание отсутствует (%1)</translation>
|
<translation>Описание отсутствует (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="740"/>
|
<location filename="../SnapmaticPicture.cpp" line="743"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation>Чтение из файла %1 из-за %2</translation>
|
<translation>Чтение из файла %1 из-за %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="730"/>
|
<location filename="../SnapmaticPicture.cpp" line="733"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation>JSON не полный и повреждён</translation>
|
<translation>JSON не полный и повреждён</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="734"/>
|
<location filename="../SnapmaticPicture.cpp" line="737"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation>JSON частично отсутствует</translation>
|
<translation>JSON частично отсутствует</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="738"/>
|
<location filename="../SnapmaticPicture.cpp" line="741"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation>JSON повреждён</translation>
|
<translation>JSON повреждён</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2186,52 +2184,52 @@ Press 1 for Default View</source>
|
||||||
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
|
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1622"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>&Правка</translation>
|
<translation>&Правка</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1625"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>Показывать в &игре</translation>
|
<translation>Показывать в &игре</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1622"/>
|
<location filename="../ProfileInterface.cpp" line="1629"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>Ск&рыть в игре</translation>
|
<translation>Ск&рыть в игре</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1629"/>
|
<location filename="../ProfileInterface.cpp" line="1636"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Экспорт</translation>
|
<translation>&Экспорт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1632"/>
|
<location filename="../ProfileInterface.cpp" line="1639"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>По&казать</translation>
|
<translation>По&казать</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>У&далить</translation>
|
<translation>У&далить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1644"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Выделить</translation>
|
<translation>&Выделить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1638"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>Сн&ять выделение</translation>
|
<translation>Сн&ять выделение</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1641"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>В&ыбрать все</translation>
|
<translation>В&ыбрать все</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1652"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>Снять выбо&р со всех</translation>
|
<translation>Снять выбо&р со всех</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2249,22 +2247,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="165"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation>Разрешишь нам собирать статистику о пользовании тобой %1? Это поможет нам в разработке.</translation>
|
<translation>Разрешишь нам собирать статистику о пользовании тобой %1? Это поможет нам в разработке.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="166"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation>%1 Пользовательская статистика</translation>
|
<translation>%1 Пользовательская статистика</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation>Да, передавать данные о пользовании программой.</translation>
|
<translation>Да, передавать данные о пользовании программой.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="179"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&ОК</translation>
|
<translation>&ОК</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2463,7 +2461,7 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.cpp" line="645"/>
|
<location filename="../UserInterface.cpp" line="645"/>
|
||||||
<source>%1 - Messages</source>
|
<source>%1 - Messages</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>%1 - Новости</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="134"/>
|
<location filename="../UserInterface.ui" line="134"/>
|
||||||
|
@ -2471,15 +2469,15 @@ Press 1 for Default View</source>
|
||||||
<translation>Пере&загрузить</translation>
|
<translation>Пере&загрузить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation>Показывать в игре</translation>
|
<translation>Показывать в игре</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation>Скрыть в игре</translation>
|
<translation>Скрыть в игре</translation>
|
||||||
|
|
Binary file not shown.
|
@ -204,21 +204,21 @@ Pictures and Savegames</source>
|
||||||
<translation>&Закрити</translation>
|
<translation>&Закрити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
<translation>Редактор Snapmatic зображень</translation>
|
<translation>Редактор Snapmatic зображень</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation>Виправлення Snapmatic зображення не вдалося через I/O Error</translation>
|
<translation>Виправлення Snapmatic зображення не вдалося через I/O Error</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation>Виправлення Snapmatic зображення не вдалося через помилку картинки</translation>
|
<translation>Виправлення Snapmatic зображення не вдалося через помилку картинки</translation>
|
||||||
|
@ -356,14 +356,14 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="198"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="733"/>
|
<location filename="../ProfileInterface.cpp" line="720"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Користувацький Аватар</translation>
|
<translation>Користувацький Аватар</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="225"/>
|
<location filename="../ImportDialog.cpp" line="225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="752"/>
|
<location filename="../ProfileInterface.cpp" line="739"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Користувацьке Зображення</translation>
|
<translation>Користувацьке Зображення</translation>
|
||||||
|
@ -1010,43 +1010,43 @@ Y: %2</translation>
|
||||||
<translation>&Закрити</translation>
|
<translation>&Закрити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="167"/>
|
<location filename="../PictureDialog.cpp" line="174"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1630"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>Експортувати як &зображення...</translation>
|
<translation>Експортувати як &зображення...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="168"/>
|
<location filename="../PictureDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1631"/>
|
<location filename="../ProfileInterface.cpp" line="1638"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>Експортувати як &Snapmatic...</translation>
|
<translation>Експортувати як &Snapmatic...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="170"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1631"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>&Змінити властивості...</translation>
|
<translation>&Змінити властивості...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="171"/>
|
<location filename="../PictureDialog.cpp" line="178"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1625"/>
|
<location filename="../ProfileInterface.cpp" line="1632"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>&Перезаписати зображення...</translation>
|
<translation>&Перезаписати зображення...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="173"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1634"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>Відкрити &карту...</translation>
|
<translation>Відкрити &карту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="175"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1628"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>Відкрити редактор &JSON...</translation>
|
<translation>Відкрити редактор &JSON...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="603"/>
|
<location filename="../PictureDialog.cpp" line="496"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
|
@ -1055,37 +1055,37 @@ Arrow Keys - Navigate</source>
|
||||||
Стрілки - Навігація</translation>
|
Стрілки - Навігація</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation>Переглядач фотографій Snapmatic</translation>
|
<translation>Переглядач фотографій Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation>Помилка на%1</translation>
|
<translation>Помилка на%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="829"/>
|
<location filename="../PictureDialog.cpp" line="722"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="247"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation>Гравців немає</translation>
|
<translation>Гравців немає</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="805"/>
|
<location filename="../PictureDialog.cpp" line="698"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation>Банди немає</translation>
|
<translation>Банди немає</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation>Невідома локація</translation>
|
<translation>Невідома локація</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="763"/>
|
<location filename="../PictureDialog.cpp" line="656"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation>Режим для аватарок
|
<translation>Режим для аватарок
|
||||||
|
@ -1296,23 +1296,23 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="426"/>
|
<location filename="../ImportDialog.cpp" line="426"/>
|
||||||
<location filename="../ImportDialog.cpp" line="747"/>
|
<location filename="../ImportDialog.cpp" line="747"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="508"/>
|
<location filename="../ProfileInterface.cpp" line="495"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="509"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="574"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="977"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="982"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation>Імпортування...</translation>
|
<translation>Імпортування...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1329,14 +1329,14 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="437"/>
|
<location filename="../ImportDialog.cpp" line="437"/>
|
||||||
<location filename="../ImportDialog.cpp" line="758"/>
|
<location filename="../ImportDialog.cpp" line="758"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="528"/>
|
<location filename="../ProfileInterface.cpp" line="515"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>Файли зображень (%1)</translation>
|
<translation>Файли зображень (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="438"/>
|
<location filename="../ImportDialog.cpp" line="438"/>
|
||||||
<location filename="../ImportDialog.cpp" line="759"/>
|
<location filename="../ImportDialog.cpp" line="759"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="529"/>
|
<location filename="../ProfileInterface.cpp" line="516"/>
|
||||||
<location filename="../UserInterface.cpp" line="474"/>
|
<location filename="../UserInterface.cpp" line="474"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation>Усі файли (**)</translation>
|
<translation>Усі файли (**)</translation>
|
||||||
|
@ -1344,75 +1344,75 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="458"/>
|
<location filename="../ImportDialog.cpp" line="458"/>
|
||||||
<location filename="../ImportDialog.cpp" line="779"/>
|
<location filename="../ImportDialog.cpp" line="779"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
|
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="467"/>
|
<location filename="../ImportDialog.cpp" line="467"/>
|
||||||
<location filename="../ImportDialog.cpp" line="788"/>
|
<location filename="../ImportDialog.cpp" line="788"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
|
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="85"/>
|
<location filename="../ProfileInterface.cpp" line="84"/>
|
||||||
<source>Enabled pictures: %1 of %2</source>
|
<source>Enabled pictures: %1 of %2</source>
|
||||||
<translation>Увімкнено фотографії:%1 з%2</translation>
|
<translation>Увімкнено фотографії:%1 з%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="185"/>
|
<location filename="../ProfileInterface.cpp" line="184"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>Завантаження...</translation>
|
<translation>Завантаження...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>Snapmatic Loader</translation>
|
<translation>Snapmatic Loader</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation><h4>Наступні Snapmatic зображення були відновлені</h4>%1</translation>
|
<translation><h4>Наступні Snapmatic зображення були відновлені</h4>%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="524"/>
|
<location filename="../ProfileInterface.cpp" line="511"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation>Імпортуються файли (%1)</translation>
|
<translation>Імпортуються файли (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="525"/>
|
<location filename="../ProfileInterface.cpp" line="512"/>
|
||||||
<location filename="../UserInterface.cpp" line="471"/>
|
<location filename="../UserInterface.cpp" line="471"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation>GTA V Export (*.g5e)</translation>
|
<translation>GTA V Export (*.g5e)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="526"/>
|
<location filename="../ProfileInterface.cpp" line="513"/>
|
||||||
<location filename="../UserInterface.cpp" line="472"/>
|
<location filename="../UserInterface.cpp" line="472"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation>Файли збереження гри (SGTA*)</translation>
|
<translation>Файли збереження гри (SGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
<location filename="../ProfileInterface.cpp" line="514"/>
|
||||||
<location filename="../UserInterface.cpp" line="473"/>
|
<location filename="../UserInterface.cpp" line="473"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation>Snapmatic зображення (PGTA*)</translation>
|
<translation>Snapmatic зображення (PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../UserInterface.cpp" line="562"/>
|
<location filename="../UserInterface.cpp" line="562"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation>Вибрані недійсні файли</translation>
|
<translation>Вибрані недійсні файли</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="575"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="592"/>
|
<location filename="../ProfileInterface.cpp" line="579"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation>Імпортується файл %1 з %2 файлів</translation>
|
<translation>Імпортується файл %1 з %2 файлів</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1421,81 +1421,81 @@ Press 1 for Default View</source>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../UserInterface.cpp" line="514"/>
|
<location filename="../UserInterface.cpp" line="514"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation>Не вдалося прочитати Snapmatic картинку</translation>
|
<translation>Не вдалося прочитати Snapmatic картинку</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../UserInterface.cpp" line="530"/>
|
<location filename="../UserInterface.cpp" line="530"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation>Не вдалося прочитати файл збереження гри</translation>
|
<translation>Не вдалося прочитати файл збереження гри</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation>
|
<translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation>
|
<translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation>
|
<translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
|
<translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
|
<translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1299"/>
|
<location filename="../ProfileInterface.cpp" line="1306"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1382"/>
|
<location filename="../ProfileInterface.cpp" line="1389"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>Експорт обраних...</translation>
|
<translation>Експорт обраних...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1322"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1347"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation>JPG картинки і GTA Snapmatic</translation>
|
<translation>JPG картинки і GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1345"/>
|
<location filename="../ProfileInterface.cpp" line="1352"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation>Тільки JPG картинки</translation>
|
<translation>Тільки JPG картинки</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
<location filename="../ProfileInterface.cpp" line="1356"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation>Тільки GTA Snapmatic</translation>
|
<translation>Тільки GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation>%1 Експортувати Snapmatic фотографії %2 <br><br> Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень<br>GTA Snapmatic дає змогу імпортувати зображення в гру<br><br>Експортувати як:</translation>
|
<translation>%1 Експортувати Snapmatic фотографії %2 <br><br> Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень<br>GTA Snapmatic дає змогу імпортувати зображення в гру<br><br>Експортувати як:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>Ініціалізація експорту...</translation>
|
<translation>Ініціалізація експорту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1504,45 +1504,45 @@ Press 1 for Default View</source>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
|
<translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>Видалити вибрані</translation>
|
<translation>Видалити вибрані</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
|
<translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
|
<translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation>Не вибрано жодного Snapmatic зображення</translation>
|
<translation>Не вибрано жодного Snapmatic зображення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1552,91 +1552,91 @@ Press 1 for Default View</source>
|
||||||
%2</translation>
|
%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="998"/>
|
<location filename="../ProfileInterface.cpp" line="993"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation>Підготувати контент для імпорту ...</translation>
|
<translation>Підготувати контент для імпорту ...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation>
|
<translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>Позначити як Аватар</translation>
|
<translation>Позначити як Аватар</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2001"/>
|
<location filename="../ProfileInterface.cpp" line="2008"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2104"/>
|
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2341"/>
|
<location filename="../ProfileInterface.cpp" line="2348"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>Вибір патчу...</translation>
|
<translation>Вибір патчу...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2002"/>
|
<location filename="../ProfileInterface.cpp" line="2009"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2021"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2105"/>
|
<location filename="../ProfileInterface.cpp" line="2112"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2124"/>
|
<location filename="../ProfileInterface.cpp" line="2131"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2236"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2255"/>
|
<location filename="../ProfileInterface.cpp" line="2262"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2342"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2368"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation>Патч файлу %1 з %2 файлів</translation>
|
<translation>Патч файлу %1 з %2 файлів</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Якість</translation>
|
<translation>Якість</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>Зміна гравців...</translation>
|
<translation>Зміна гравців...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Змінити гравців</translation>
|
<translation>Змінити гравців</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>Зміна банди...</translation>
|
<translation>Зміна банди...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
|
<translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Змінити банду</translation>
|
<translation>Змінити банду</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>Зміна назви...</translation>
|
<translation>Зміна назви...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
|
<translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Змінити назву</translation>
|
<translation>Змінити назву</translation>
|
||||||
|
@ -1650,17 +1650,15 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation>Шрифт</translation>
|
<translation type="vanished">Шрифт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation>Вибраний шрифт:%1</translation>
|
<translation type="vanished">Вибраний шрифт:%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="136"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation><h4>Ласкаво просимо до %1!</h4>Ви хочете налаштувати %1 перед використанням?</translation>
|
<translation><h4>Ласкаво просимо до %1!</h4>Ви хочете налаштувати %1 перед використанням?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1738,37 +1736,37 @@ Press 1 for Default View</source>
|
||||||
<translation>Видалити</translation>
|
<translation>Видалити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1666"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Перегляд</translation>
|
<translation>&Перегляд</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1667"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Експорт</translation>
|
<translation>&Експорт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1668"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>&Видалення</translation>
|
<translation>&Видалення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1670"/>
|
<location filename="../ProfileInterface.cpp" line="1677"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Виділення</translation>
|
<translation>&Виділення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>&Зняти виділення</translation>
|
<translation>&Зняти виділення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>Вибрати &усі</translation>
|
<translation>Вибрати &усі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>&Зняти виділення усіх</translation>
|
<translation>&Зняти виділення усіх</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1868,8 +1866,8 @@ Press 1 for Default View</source>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
<translation>Властивості Snapmatic</translation>
|
<translation>Властивості Snapmatic</translation>
|
||||||
|
@ -1961,8 +1959,8 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
<translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation>
|
<translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation>
|
||||||
|
@ -1973,73 +1971,73 @@ Press 1 for Default View</source>
|
||||||
<translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
|
<translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation>Snapmatic банда</translation>
|
<translation>Snapmatic банда</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation>Нова Snapmatic банда:</translation>
|
<translation>Нова Snapmatic банда:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation>Snapmatic назва</translation>
|
<translation>Snapmatic назва</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation>Новий Snapmatic заголовок:</translation>
|
<translation>Новий Snapmatic заголовок:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="231"/>
|
<location filename="../SnapmaticEditor.cpp" line="230"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
<location filename="../SnapmaticEditor.cpp" line="265"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
<location filename="../SnapmaticEditor.cpp" line="285"/>
|
||||||
<source>Edit</source>
|
<source>Edit</source>
|
||||||
<translation>Правка</translation>
|
<translation>Правка</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="235"/>
|
<location filename="../SnapmaticEditor.cpp" line="234"/>
|
||||||
<source>Players: %1 (%2)</source>
|
<source>Players: %1 (%2)</source>
|
||||||
<comment>Multiple Player are inserted here</comment>
|
<comment>Multiple Player are inserted here</comment>
|
||||||
<translation>Гравці: %1 (%2)</translation>
|
<translation>Гравці: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="239"/>
|
<location filename="../SnapmaticEditor.cpp" line="238"/>
|
||||||
<source>Player: %1 (%2)</source>
|
<source>Player: %1 (%2)</source>
|
||||||
<comment>One Player is inserted here</comment>
|
<comment>One Player is inserted here</comment>
|
||||||
<translation>Гравець: %1 (%2)</translation>
|
<translation>Гравець: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="267"/>
|
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
||||||
<source>Title: %1 (%2)</source>
|
<source>Title: %1 (%2)</source>
|
||||||
<translation>Назва: %1 (%2)</translation>
|
<translation>Назва: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>Appropriate: %1</source>
|
<source>Appropriate: %1</source>
|
||||||
<translation>Підходить: %1</translation>
|
<translation>Підходить: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<source>Yes</source>
|
<source>Yes</source>
|
||||||
<comment>Yes, should work fine</comment>
|
<comment>Yes, should work fine</comment>
|
||||||
<translation>Так</translation>
|
<translation>Так</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<comment>No, could lead to issues</comment>
|
<comment>No, could lead to issues</comment>
|
||||||
<translation>Ні</translation>
|
<translation>Ні</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="287"/>
|
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
||||||
<source>Crew: %1 (%2)</source>
|
<source>Crew: %1 (%2)</source>
|
||||||
<translation>Банда: %1 (%2)</translation>
|
<translation>Банда: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2048,64 +2046,64 @@ Press 1 for Default View</source>
|
||||||
<name>SnapmaticPicture</name>
|
<name>SnapmaticPicture</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="730"/>
|
<location filename="../SnapmaticPicture.cpp" line="733"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation>JSON неповний та неправильний</translation>
|
<translation>JSON неповний та неправильний</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="734"/>
|
<location filename="../SnapmaticPicture.cpp" line="737"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation>JSON неповний</translation>
|
<translation>JSON неповний</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="738"/>
|
<location filename="../SnapmaticPicture.cpp" line="741"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation>JSON неправильний</translation>
|
<translation>JSON неправильний</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="464"/>
|
<location filename="../SnapmaticPicture.cpp" line="467"/>
|
||||||
<source>PHOTO - %1</source>
|
<source>PHOTO - %1</source>
|
||||||
<translation>ФОТО - %1</translation>
|
<translation>ФОТО - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="690"/>
|
<location filename="../SnapmaticPicture.cpp" line="693"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation>відкрити файл%1</translation>
|
<translation>відкрити файл%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="706"/>
|
<location filename="../SnapmaticPicture.cpp" line="709"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation>заголовок не існує</translation>
|
<translation>заголовок не існує</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="710"/>
|
<location filename="../SnapmaticPicture.cpp" line="713"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation>заголовок неправильний</translation>
|
<translation>заголовок неправильний</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="714"/>
|
<location filename="../SnapmaticPicture.cpp" line="717"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation>зображення не існує (%1)</translation>
|
<translation>зображення не існує (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="718"/>
|
<location filename="../SnapmaticPicture.cpp" line="721"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation>JSON не існує (%1)</translation>
|
<translation>JSON не існує (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="722"/>
|
<location filename="../SnapmaticPicture.cpp" line="725"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation>заголовок не існує (%1)</translation>
|
<translation>заголовок не існує (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="726"/>
|
<location filename="../SnapmaticPicture.cpp" line="729"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation>опис не існує (%1)</translation>
|
<translation>опис не існує (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="740"/>
|
<location filename="../SnapmaticPicture.cpp" line="743"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation>читання файлу %1 тому що %2</translation>
|
<translation>читання файлу %1 тому що %2</translation>
|
||||||
|
@ -2166,52 +2164,52 @@ Press 1 for Default View</source>
|
||||||
<translation>Видалити</translation>
|
<translation>Видалити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1622"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>Редагува&ти</translation>
|
<translation>Редагува&ти</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1625"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>Показати &у грі</translation>
|
<translation>Показати &у грі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1622"/>
|
<location filename="../ProfileInterface.cpp" line="1629"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>Сховати &у грі</translation>
|
<translation>Сховати &у грі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1629"/>
|
<location filename="../ProfileInterface.cpp" line="1636"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Експортувати</translation>
|
<translation>&Експортувати</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1632"/>
|
<location filename="../ProfileInterface.cpp" line="1639"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Переглянути</translation>
|
<translation>&Переглянути</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>&Видалити</translation>
|
<translation>&Видалити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1644"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Виділення</translation>
|
<translation>&Виділення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1638"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>&Зняти виділення</translation>
|
<translation>&Зняти виділення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1641"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>Вибрати &усі</translation>
|
<translation>Вибрати &усі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1652"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>&Зняти виділення усіх</translation>
|
<translation>&Зняти виділення усіх</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2239,22 +2237,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="165"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation>Ви хочете допомогти %1 покращитись у майбутньому, включивши дані особистого користування?</translation>
|
<translation>Ви хочете допомогти %1 покращитись у майбутньому, включивши дані особистого користування?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="166"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation>%1 Статистика користувачів</translation>
|
<translation>%1 Статистика користувачів</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation>Так, я хочу включити дані особистого користування.</translation>
|
<translation>Так, я хочу включити дані особистого користування.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="179"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translatorcomment>&OK</translatorcomment>
|
<translatorcomment>&OK</translatorcomment>
|
||||||
<translation>&OK</translation>
|
<translation>&OK</translation>
|
||||||
|
@ -2432,15 +2430,15 @@ Press 1 for Default View</source>
|
||||||
<translation>Змінити &гравців...</translation>
|
<translation>Змінити &гравців...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation>Показати у грі</translation>
|
<translation>Показати у грі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation>Сховати у грі</translation>
|
<translation>Сховати у грі</translation>
|
||||||
|
@ -2473,7 +2471,7 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.cpp" line="645"/>
|
<location filename="../UserInterface.cpp" line="645"/>
|
||||||
<source>%1 - Messages</source>
|
<source>%1 - Messages</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>%1 - Новини</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
Binary file not shown.
|
@ -200,21 +200,21 @@ Pictures and Savegames</source>
|
||||||
<translation>關閉(&C)</translation>
|
<translation>關閉(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
<translation>Snapmatic 圖片編輯器</translation>
|
<translation>Snapmatic 圖片編輯器</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1037"/>
|
<location filename="../PictureDialog.cpp" line="934"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
<location filename="../SnapmaticWidget.cpp" line="375"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation>I/O 錯誤,Snapmatic 圖片更新失敗</translation>
|
<translation>I/O 錯誤,Snapmatic 圖片更新失敗</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="1061"/>
|
<location filename="../PictureDialog.cpp" line="958"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
<location filename="../SnapmaticWidget.cpp" line="399"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation>圖片錯誤,Snapmatic 圖片更新失敗</translation>
|
<translation>圖片錯誤,Snapmatic 圖片更新失敗</translation>
|
||||||
|
@ -352,14 +352,14 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="198"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="733"/>
|
<location filename="../ProfileInterface.cpp" line="720"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>自訂大頭貼</translation>
|
<translation>自訂大頭貼</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="225"/>
|
<location filename="../ImportDialog.cpp" line="225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="752"/>
|
<location filename="../ProfileInterface.cpp" line="739"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>自訂圖片</translation>
|
<translation>自訂圖片</translation>
|
||||||
|
@ -1004,43 +1004,43 @@ Y: %2</translation>
|
||||||
<translation>關閉(&C)</translation>
|
<translation>關閉(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="167"/>
|
<location filename="../PictureDialog.cpp" line="174"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1630"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>匯出成圖片(&P)...</translation>
|
<translation>匯出成圖片(&P)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="168"/>
|
<location filename="../PictureDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1631"/>
|
<location filename="../ProfileInterface.cpp" line="1638"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>匯出成 Snapmatic(&S)...</translation>
|
<translation>匯出成 Snapmatic(&S)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="170"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1631"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>編輯屬性(&E) ...</translation>
|
<translation>編輯屬性(&E) ...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="171"/>
|
<location filename="../PictureDialog.cpp" line="178"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1625"/>
|
<location filename="../ProfileInterface.cpp" line="1632"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>修改圖片(&O)...</translation>
|
<translation>修改圖片(&O)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="173"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1634"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>開啟地圖檢視器(&M)...</translation>
|
<translation>開啟地圖檢視器(&M)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="175"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1628"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>開啟 JSON 編輯器(&J)...</translation>
|
<translation>開啟 JSON 編輯器(&J)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="603"/>
|
<location filename="../PictureDialog.cpp" line="496"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
|
@ -1049,37 +1049,37 @@ Arrow Keys - Navigate</source>
|
||||||
方向鍵 - 導覽</translation>
|
方向鍵 - 導覽</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation>Snapmatic 圖片檢視器</translation>
|
<translation>Snapmatic 圖片檢視器</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="664"/>
|
<location filename="../PictureDialog.cpp" line="557"/>
|
||||||
<location filename="../PictureDialog.cpp" line="690"/>
|
<location filename="../PictureDialog.cpp" line="583"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation>失敗: %1</translation>
|
<translation>失敗: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="829"/>
|
<location filename="../PictureDialog.cpp" line="722"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="247"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation>無</translation>
|
<translation>無</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<location filename="../PictureDialog.cpp" line="805"/>
|
<location filename="../PictureDialog.cpp" line="698"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation>無</translation>
|
<translation>無</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="689"/>
|
<location filename="../PictureDialog.cpp" line="582"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation>未知地點</translation>
|
<translation>未知地點</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="763"/>
|
<location filename="../PictureDialog.cpp" line="656"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation>大頭貼預覽模式
|
<translation>大頭貼預覽模式
|
||||||
|
@ -1290,23 +1290,23 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="426"/>
|
<location filename="../ImportDialog.cpp" line="426"/>
|
||||||
<location filename="../ImportDialog.cpp" line="747"/>
|
<location filename="../ImportDialog.cpp" line="747"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="508"/>
|
<location filename="../ProfileInterface.cpp" line="495"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="509"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="574"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="977"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="982"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation>匯入...</translation>
|
<translation>匯入...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1323,14 +1323,14 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="437"/>
|
<location filename="../ImportDialog.cpp" line="437"/>
|
||||||
<location filename="../ImportDialog.cpp" line="758"/>
|
<location filename="../ImportDialog.cpp" line="758"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="528"/>
|
<location filename="../ProfileInterface.cpp" line="515"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>所有圖片 (%1)</translation>
|
<translation>所有圖片 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="438"/>
|
<location filename="../ImportDialog.cpp" line="438"/>
|
||||||
<location filename="../ImportDialog.cpp" line="759"/>
|
<location filename="../ImportDialog.cpp" line="759"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="529"/>
|
<location filename="../ProfileInterface.cpp" line="516"/>
|
||||||
<location filename="../UserInterface.cpp" line="474"/>
|
<location filename="../UserInterface.cpp" line="474"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation>所有檔案 (**)</translation>
|
<translation>所有檔案 (**)</translation>
|
||||||
|
@ -1338,201 +1338,201 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="458"/>
|
<location filename="../ImportDialog.cpp" line="458"/>
|
||||||
<location filename="../ImportDialog.cpp" line="779"/>
|
<location filename="../ImportDialog.cpp" line="779"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="790"/>
|
<location filename="../ProfileInterface.cpp" line="781"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>無法匯入 %1,因為檔案無法開啟</translation>
|
<translation>無法匯入 %1,因為檔案無法開啟</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="467"/>
|
<location filename="../ImportDialog.cpp" line="467"/>
|
||||||
<location filename="../ImportDialog.cpp" line="788"/>
|
<location filename="../ImportDialog.cpp" line="788"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="800"/>
|
<location filename="../ProfileInterface.cpp" line="791"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>無法匯入 %1,因為檔案無法正確解析</translation>
|
<translation>無法匯入 %1,因為檔案無法正確解析</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="85"/>
|
<location filename="../ProfileInterface.cpp" line="84"/>
|
||||||
<source>Enabled pictures: %1 of %2</source>
|
<source>Enabled pictures: %1 of %2</source>
|
||||||
<translation>開啟圖片 %1 共 %2</translation>
|
<translation>開啟圖片 %1 共 %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="185"/>
|
<location filename="../ProfileInterface.cpp" line="184"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>載入中...</translation>
|
<translation>載入中...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>Snapmatic 載入器</translation>
|
<translation>Snapmatic 載入器</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="435"/>
|
<location filename="../ProfileInterface.cpp" line="422"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation><h4>下列的 Snapmatic 圖片已被更新</h4>%1</translation>
|
<translation><h4>下列的 Snapmatic 圖片已被更新</h4>%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="524"/>
|
<location filename="../ProfileInterface.cpp" line="511"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation>可匯入的檔案 (%1)</translation>
|
<translation>可匯入的檔案 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="525"/>
|
<location filename="../ProfileInterface.cpp" line="512"/>
|
||||||
<location filename="../UserInterface.cpp" line="471"/>
|
<location filename="../UserInterface.cpp" line="471"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation>GTA V Export (*.g5e)</translation>
|
<translation>GTA V Export (*.g5e)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="526"/>
|
<location filename="../ProfileInterface.cpp" line="513"/>
|
||||||
<location filename="../UserInterface.cpp" line="472"/>
|
<location filename="../UserInterface.cpp" line="472"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation>遊戲存檔 (SGTA*)</translation>
|
<translation>遊戲存檔 (SGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
<location filename="../ProfileInterface.cpp" line="514"/>
|
||||||
<location filename="../UserInterface.cpp" line="473"/>
|
<location filename="../UserInterface.cpp" line="473"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation>Snapmatic 圖片 (PGTA*)</translation>
|
<translation>Snapmatic 圖片 (PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="540"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="944"/>
|
<location filename="../ProfileInterface.cpp" line="939"/>
|
||||||
<location filename="../UserInterface.cpp" line="562"/>
|
<location filename="../UserInterface.cpp" line="562"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation>沒有選擇有效的檔案</translation>
|
<translation>沒有選擇有效的檔案</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="575"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="592"/>
|
<location filename="../ProfileInterface.cpp" line="579"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation>匯入檔案 %1 共 %2 個</translation>
|
<translation>匯入檔案 %1 共 %2 個</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="595"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
<translation>%1 匯入失敗</translation>
|
<translation>%1 匯入失敗</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="650"/>
|
<location filename="../ProfileInterface.cpp" line="637"/>
|
||||||
<location filename="../UserInterface.cpp" line="514"/>
|
<location filename="../UserInterface.cpp" line="514"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation>無法讀取 Snapmatic 圖片</translation>
|
<translation>無法讀取 Snapmatic 圖片</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="685"/>
|
<location filename="../ProfileInterface.cpp" line="672"/>
|
||||||
<location filename="../UserInterface.cpp" line="530"/>
|
<location filename="../UserInterface.cpp" line="530"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation>無法讀取遊戲存檔</translation>
|
<translation>無法讀取遊戲存檔</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="939"/>
|
<location filename="../ProfileInterface.cpp" line="934"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation>無法匯入 %1,因為無法檢測該檔案格式</translation>
|
<translation>無法匯入 %1,因為無法檢測該檔案格式</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation>匯入 Snapmatic 圖片失敗,檔案不是 PGTA 開頭或附檔名不是 .g5e</translation>
|
<translation>匯入 Snapmatic 圖片失敗,檔案不是 PGTA 開頭或附檔名不是 .g5e</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1192"/>
|
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation>匯入 Snapmatic 圖片失敗,無法將該檔案複製到設定檔中</translation>
|
<translation>匯入 Snapmatic 圖片失敗,無法將該檔案複製到設定檔中</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1229"/>
|
<location filename="../ProfileInterface.cpp" line="1236"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation>匯入遊戲存檔失敗,無法將該檔案複製到設定檔中</translation>
|
<translation>匯入遊戲存檔失敗,無法將該檔案複製到設定檔中</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1235"/>
|
<location filename="../ProfileInterface.cpp" line="1242"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation>匯入遊戲存檔失敗,沒有遊戲存檔欄位</translation>
|
<translation>匯入遊戲存檔失敗,沒有遊戲存檔欄位</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1299"/>
|
<location filename="../ProfileInterface.cpp" line="1306"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1382"/>
|
<location filename="../ProfileInterface.cpp" line="1389"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>匯出所選...</translation>
|
<translation>匯出所選...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1322"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1347"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation>JPG 圖片和 GTA Snapmatic</translation>
|
<translation>JPG 圖片和 GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1345"/>
|
<location filename="../ProfileInterface.cpp" line="1352"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation>只有 JPG 圖片</translation>
|
<translation>只有 JPG 圖片</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
<location filename="../ProfileInterface.cpp" line="1356"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation>只有 GTA Snapmatic</translation>
|
<translation>只有 GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1337"/>
|
<location filename="../ProfileInterface.cpp" line="1344"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation>%1 匯出 Snapmatic 圖片 %2<br><br>JPG 圖片可使用圖片檢視器開啟<br>GTA Snapmatic 可以匯入到遊戲中<br><br>匯出成:</translation>
|
<translation>%1 匯出 Snapmatic 圖片 %2<br><br>JPG 圖片可使用圖片檢視器開啟<br>GTA Snapmatic 可以匯入到遊戲中<br><br>匯出成:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>初始化...</translation>
|
<translation>初始化...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1417"/>
|
<location filename="../ProfileInterface.cpp" line="1424"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
<translation>%1 匯出失敗</translation>
|
<translation>%1 匯出失敗</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1437"/>
|
<location filename="../ProfileInterface.cpp" line="1444"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation>未選擇 Snapmatic 圖片或遊戲存檔</translation>
|
<translation>未選擇 Snapmatic 圖片或遊戲存檔</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1479"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>移除所選</translation>
|
<translation>移除所選</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
<location filename="../ProfileInterface.cpp" line="1452"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation>你想移除所選的 Snapmatic 圖片/存檔嗎?</translation>
|
<translation>你想移除所選的 Snapmatic 圖片/存檔嗎?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1473"/>
|
<location filename="../ProfileInterface.cpp" line="1480"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation>無法移除所選擇的 Snapmatic 圖片/遊戲存檔</translation>
|
<translation>無法移除所選擇的 Snapmatic 圖片/遊戲存檔</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation>未選擇 Snapmatic 圖片</translation>
|
<translation>未選擇 Snapmatic 圖片</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1542,91 +1542,91 @@ Press 1 for Default View</source>
|
||||||
%2</translation>
|
%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="998"/>
|
<location filename="../ProfileInterface.cpp" line="993"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation>準備匯入內容...</translation>
|
<translation>準備匯入內容...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1112"/>
|
<location filename="../ProfileInterface.cpp" line="1111"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation>已有與 uid %1 相同的 Snapmatic 圖片,你想要匯入新的 uid 和時間戳嗎?</translation>
|
<translation>已有與 uid %1 相同的 Snapmatic 圖片,你想要匯入新的 uid 和時間戳嗎?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1990"/>
|
<location filename="../ProfileInterface.cpp" line="1997"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>合格大頭貼</translation>
|
<translation>合格大頭貼</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2001"/>
|
<location filename="../ProfileInterface.cpp" line="2008"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2104"/>
|
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2242"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2341"/>
|
<location filename="../ProfileInterface.cpp" line="2348"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>修改所選...</translation>
|
<translation>修改所選...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2002"/>
|
<location filename="../ProfileInterface.cpp" line="2009"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2021"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2105"/>
|
<location filename="../ProfileInterface.cpp" line="2112"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2124"/>
|
<location filename="../ProfileInterface.cpp" line="2131"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2236"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2255"/>
|
<location filename="../ProfileInterface.cpp" line="2262"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2342"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2368"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation>修改檔案 %1 共 %2 個檔案</translation>
|
<translation>修改檔案 %1 共 %2 個檔案</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2055"/>
|
<location filename="../ProfileInterface.cpp" line="2062"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>合格</translation>
|
<translation>合格</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2076"/>
|
<location filename="../ProfileInterface.cpp" line="2083"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>更改玩家...</translation>
|
<translation>更改玩家...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2161"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>更改玩家</translation>
|
<translation>更改玩家</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2175"/>
|
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>更改幫會...</translation>
|
<translation>更改幫會...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2212"/>
|
<location filename="../ProfileInterface.cpp" line="2219"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation>輸入了無效的幫會 ID</translation>
|
<translation>輸入了無效的幫會 ID</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2285"/>
|
<location filename="../ProfileInterface.cpp" line="2292"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>更改幫會</translation>
|
<translation>更改幫會</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2306"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>更改標題...</translation>
|
<translation>更改標題...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2323"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation>輸入了無效的標題</translation>
|
<translation>輸入了無效的標題</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2388"/>
|
<location filename="../ProfileInterface.cpp" line="2395"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>更改標題</translation>
|
<translation>更改標題</translation>
|
||||||
|
@ -1640,17 +1640,15 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation>字體</translation>
|
<translation type="vanished">字體</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation>選擇的字體: %1</translation>
|
<translation type="vanished">選擇的字體: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="136"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation><h4>歡迎使用 %1!</h4> 你想在開始前先設定 %1 嗎?</translation>
|
<translation><h4>歡迎使用 %1!</h4> 你想在開始前先設定 %1 嗎?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1728,37 +1726,37 @@ Press 1 for Default View</source>
|
||||||
<translation>刪除</translation>
|
<translation>刪除</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1666"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>檢視(&V)</translation>
|
<translation>檢視(&V)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1667"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>匯出(&E)</translation>
|
<translation>匯出(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1668"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>移除(&R)</translation>
|
<translation>移除(&R)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1670"/>
|
<location filename="../ProfileInterface.cpp" line="1677"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>選擇(&S)</translation>
|
<translation>選擇(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>取消選擇(&D)</translation>
|
<translation>取消選擇(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>選擇全部(&A)</translation>
|
<translation>選擇全部(&A)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>取消選擇全部(&D)</translation>
|
<translation>取消選擇全部(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1858,8 +1856,8 @@ Press 1 for Default View</source>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
<location filename="../JsonEditorDialog.cpp" line="226"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
<translation>Snapmatic 屬性</translation>
|
<translation>Snapmatic 屬性</translation>
|
||||||
|
@ -1951,8 +1949,8 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="952"/>
|
<location filename="../PictureDialog.cpp" line="849"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="334"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
<location filename="../SnapmaticWidget.cpp" line="433"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
<translation>讀寫錯誤,未能更新 Snapmatic 屬性</translation>
|
<translation>讀寫錯誤,未能更新 Snapmatic 屬性</translation>
|
||||||
|
@ -1963,73 +1961,73 @@ Press 1 for Default View</source>
|
||||||
<translation>JSON 錯誤,未能更新 Snapmatic 屬性</translation>
|
<translation>JSON 錯誤,未能更新 Snapmatic 屬性</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation>幫會</translation>
|
<translation>幫會</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2210"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="443"/>
|
<location filename="../SnapmaticEditor.cpp" line="442"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation>輸入新的幫會:</translation>
|
<translation>輸入新的幫會:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation>標題</translation>
|
<translation>標題</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2318"/>
|
<location filename="../ProfileInterface.cpp" line="2325"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="414"/>
|
<location filename="../SnapmaticEditor.cpp" line="413"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation>輸入新的標題:</translation>
|
<translation>輸入新的標題:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="231"/>
|
<location filename="../SnapmaticEditor.cpp" line="230"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
<location filename="../SnapmaticEditor.cpp" line="265"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
<location filename="../SnapmaticEditor.cpp" line="285"/>
|
||||||
<source>Edit</source>
|
<source>Edit</source>
|
||||||
<translation>編輯</translation>
|
<translation>編輯</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="235"/>
|
<location filename="../SnapmaticEditor.cpp" line="234"/>
|
||||||
<source>Players: %1 (%2)</source>
|
<source>Players: %1 (%2)</source>
|
||||||
<comment>Multiple Player are inserted here</comment>
|
<comment>Multiple Player are inserted here</comment>
|
||||||
<translation>玩家: %1 (%2)</translation>
|
<translation>玩家: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="239"/>
|
<location filename="../SnapmaticEditor.cpp" line="238"/>
|
||||||
<source>Player: %1 (%2)</source>
|
<source>Player: %1 (%2)</source>
|
||||||
<comment>One Player is inserted here</comment>
|
<comment>One Player is inserted here</comment>
|
||||||
<translation>玩家: %1 (%2)</translation>
|
<translation>玩家: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="267"/>
|
<location filename="../SnapmaticEditor.cpp" line="266"/>
|
||||||
<source>Title: %1 (%2)</source>
|
<source>Title: %1 (%2)</source>
|
||||||
<translation>標題: %1 (%2)</translation>
|
<translation>標題: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>Appropriate: %1</source>
|
<source>Appropriate: %1</source>
|
||||||
<translation>可使用: %1</translation>
|
<translation>可使用: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="271"/>
|
<location filename="../SnapmaticEditor.cpp" line="270"/>
|
||||||
<source>Yes</source>
|
<source>Yes</source>
|
||||||
<comment>Yes, should work fine</comment>
|
<comment>Yes, should work fine</comment>
|
||||||
<translation>是</translation>
|
<translation>是</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="275"/>
|
<location filename="../SnapmaticEditor.cpp" line="274"/>
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<comment>No, could lead to issues</comment>
|
<comment>No, could lead to issues</comment>
|
||||||
<translation>否</translation>
|
<translation>否</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="287"/>
|
<location filename="../SnapmaticEditor.cpp" line="286"/>
|
||||||
<source>Crew: %1 (%2)</source>
|
<source>Crew: %1 (%2)</source>
|
||||||
<translation>幫會: %1 (%2)</translation>
|
<translation>幫會: %1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2038,64 +2036,64 @@ Press 1 for Default View</source>
|
||||||
<name>SnapmaticPicture</name>
|
<name>SnapmaticPicture</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
<location filename="../JsonEditorDialog.cpp" line="177"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="730"/>
|
<location filename="../SnapmaticPicture.cpp" line="733"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation>JSON 不完整和異常</translation>
|
<translation>JSON 不完整和異常</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="734"/>
|
<location filename="../SnapmaticPicture.cpp" line="737"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation>JSON 不完整</translation>
|
<translation>JSON 不完整</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
<location filename="../JsonEditorDialog.cpp" line="185"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="738"/>
|
<location filename="../SnapmaticPicture.cpp" line="741"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation>JSON 異常</translation>
|
<translation>JSON 異常</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="464"/>
|
<location filename="../SnapmaticPicture.cpp" line="467"/>
|
||||||
<source>PHOTO - %1</source>
|
<source>PHOTO - %1</source>
|
||||||
<translation>照片 - %1</translation>
|
<translation>照片 - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="690"/>
|
<location filename="../SnapmaticPicture.cpp" line="693"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation>開啟檔案 - %1</translation>
|
<translation>開啟檔案 - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="706"/>
|
<location filename="../SnapmaticPicture.cpp" line="709"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation>標頭不存在</translation>
|
<translation>標頭不存在</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="710"/>
|
<location filename="../SnapmaticPicture.cpp" line="713"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation>標頭異常</translation>
|
<translation>標頭異常</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="714"/>
|
<location filename="../SnapmaticPicture.cpp" line="717"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation>圖片不存在 (%1)</translation>
|
<translation>圖片不存在 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="718"/>
|
<location filename="../SnapmaticPicture.cpp" line="721"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation>JSON 不存在 (%1)</translation>
|
<translation>JSON 不存在 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="722"/>
|
<location filename="../SnapmaticPicture.cpp" line="725"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation>標題不存在 (%1)</translation>
|
<translation>標題不存在 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="726"/>
|
<location filename="../SnapmaticPicture.cpp" line="729"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation>描述不存在 (%1)</translation>
|
<translation>描述不存在 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="740"/>
|
<location filename="../SnapmaticPicture.cpp" line="743"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation>讀取檔案 %1 失敗,因為 %2</translation>
|
<translation>讀取檔案 %1 失敗,因為 %2</translation>
|
||||||
|
@ -2156,52 +2154,52 @@ Press 1 for Default View</source>
|
||||||
<translation>刪除</translation>
|
<translation>刪除</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1622"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>編輯(&E)</translation>
|
<translation>編輯(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1625"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>在遊戲中顯示(&I)</translation>
|
<translation>在遊戲中顯示(&I)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1622"/>
|
<location filename="../ProfileInterface.cpp" line="1629"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>在遊戲中隱藏(&I)</translation>
|
<translation>在遊戲中隱藏(&I)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1629"/>
|
<location filename="../ProfileInterface.cpp" line="1636"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>匯出(&E)</translation>
|
<translation>匯出(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1632"/>
|
<location filename="../ProfileInterface.cpp" line="1639"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>檢視(&V)</translation>
|
<translation>檢視(&V)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>移除(&R)</translation>
|
<translation>移除(&R)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1644"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>選擇(&S)</translation>
|
<translation>選擇(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1638"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>取消選擇(&D)</translation>
|
<translation>取消選擇(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1641"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>選擇全部(&A)</translation>
|
<translation>選擇全部(&A)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1652"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>取消選擇全部(&D)</translation>
|
<translation>取消選擇全部(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2229,22 +2227,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="165"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation>你希望通過收集資料來幫助改善 %1 嗎?</translation>
|
<translation>你希望通過收集資料來幫助改善 %1 嗎?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="166"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation>%1 使用者統計</translation>
|
<translation>%1 使用者統計</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation>是的,我想幫忙.</translation>
|
<translation>是的,我想幫忙.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="179"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>確定(&O)</translation>
|
<translation>確定(&O)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2421,15 +2419,15 @@ Press 1 for Default View</source>
|
||||||
<translation>更改玩家(&P)...</translation>
|
<translation>更改玩家(&P)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
<location filename="../ProfileInterface.cpp" line="1552"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1559"/>
|
<location filename="../ProfileInterface.cpp" line="1566"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation>在遊戲中顯示</translation>
|
<translation>在遊戲中顯示</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1586"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1593"/>
|
<location filename="../ProfileInterface.cpp" line="1600"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
<location filename="../SnapmaticWidget.cpp" line="320"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation>在遊戲中隱藏</translation>
|
<translation>在遊戲中隱藏</translation>
|
||||||
|
@ -2462,7 +2460,7 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.cpp" line="645"/>
|
<location filename="../UserInterface.cpp" line="645"/>
|
||||||
<source>%1 - Messages</source>
|
<source>%1 - Messages</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>%1 - 新聞</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
Loading…
Reference in a new issue