Merge pull request #309 from tcuje/master
Improve German translation. Fix Issue #308. Let QT translate default UI buttons
|
@ -191,7 +191,7 @@ bool lcApplication::Initialize(QList<QPair<QString, bool>>& LibraryPaths, bool&
|
||||||
int ImageEnd = 0;
|
int ImageEnd = 0;
|
||||||
int PartImagesWidth = -1;
|
int PartImagesWidth = -1;
|
||||||
int PartImagesHeight = -1;
|
int PartImagesHeight = -1;
|
||||||
float CameraLatitude, CameraLongitude;
|
float CameraLatitude = 0.0f, CameraLongitude = 0.0f;
|
||||||
QString ImageName;
|
QString ImageName;
|
||||||
QString ModelName;
|
QString ModelName;
|
||||||
QString CameraName;
|
QString CameraName;
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include <array>
|
#include <array>
|
||||||
|
|
||||||
#ifndef Q_FALLTHROUGH
|
#ifndef Q_FALLTHROUGH
|
||||||
#define Q_FALLTHROUGH() (void)0
|
#define Q_FALLTHROUGH(); [[fallthrough]];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(EGL_VERSION_1_0) && !defined(GL_ES_VERSION_2_0) && !defined(GL_ES_VERSION_3_0) && !defined(QT_OPENGL_ES)
|
#if !defined(EGL_VERSION_1_0) && !defined(GL_ES_VERSION_2_0) && !defined(GL_ES_VERSION_3_0) && !defined(QT_OPENGL_ES)
|
||||||
|
@ -27,6 +27,7 @@
|
||||||
|
|
||||||
// Old defines and declarations.
|
// Old defines and declarations.
|
||||||
#define LC_MAXPATH 1024
|
#define LC_MAXPATH 1024
|
||||||
|
#define LC_MAXNAME 1000
|
||||||
|
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
char* strcasestr(const char *s, const char *find);
|
char* strcasestr(const char *s, const char *find);
|
||||||
|
|
|
@ -155,7 +155,7 @@ public:
|
||||||
mZipFileIndex = ZipFileIndex;
|
mZipFileIndex = ZipFileIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
char mName[LC_MAXPATH];
|
char mName[LC_MAXNAME];
|
||||||
lcZipFileType mZipFileType;
|
lcZipFileType mZipFileType;
|
||||||
quint32 mZipFileIndex;
|
quint32 mZipFileIndex;
|
||||||
lcPrimitiveState mState;
|
lcPrimitiveState mState;
|
||||||
|
|
|
@ -58,7 +58,7 @@ void lcResetDefaultMouseShortcuts()
|
||||||
void lcKeyboardShortcuts::Reset()
|
void lcKeyboardShortcuts::Reset()
|
||||||
{
|
{
|
||||||
for (int CommandIdx = 0; CommandIdx < LC_NUM_COMMANDS; CommandIdx++)
|
for (int CommandIdx = 0; CommandIdx < LC_NUM_COMMANDS; CommandIdx++)
|
||||||
mShortcuts[CommandIdx] = qApp->translate("Shortcut", gCommands[CommandIdx].DefaultShortcut);
|
mShortcuts[CommandIdx] = gCommands[CommandIdx].DefaultShortcut;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool lcKeyboardShortcuts::Save(const QString& FileName)
|
bool lcKeyboardShortcuts::Save(const QString& FileName)
|
||||||
|
|
|
@ -39,8 +39,8 @@ void lcViewSphere::CreateResources(lcContext* Context)
|
||||||
|
|
||||||
const QString ViewNames[6] =
|
const QString ViewNames[6] =
|
||||||
{
|
{
|
||||||
QT_TRANSLATE_NOOP("ViewName", "Left"), QT_TRANSLATE_NOOP("ViewName", "Right"), QT_TRANSLATE_NOOP("ViewName", "Back"),
|
QCoreApplication::translate("ViewName", "Left"), QCoreApplication::translate("ViewName", "Right"), QCoreApplication::translate("ViewName", "Back"),
|
||||||
QT_TRANSLATE_NOOP("ViewName", "Front"), QT_TRANSLATE_NOOP("ViewName", "Top"), QT_TRANSLATE_NOOP("ViewName", "Bottom")
|
QCoreApplication::translate("ViewName", "Front"), QCoreApplication::translate("ViewName", "Top"), QCoreApplication::translate("ViewName", "Bottom")
|
||||||
};
|
};
|
||||||
|
|
||||||
const QTransform ViewTransforms[6] =
|
const QTransform ViewTransforms[6] =
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label_2">
|
<widget class="QLabel" name="label_2">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><a href="http://www.leocad.org">http://www.leocad.org</a></string>
|
<string notr="true"><a href="https://www.leocad.org">https://www.leocad.org</a></string>
|
||||||
</property>
|
</property>
|
||||||
<property name="openExternalLinks">
|
<property name="openExternalLinks">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
|
|
|
@ -71,7 +71,7 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QLabel" name="label">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Sets Database provided by <a href="http://www.rebrickable.com">Rebrickable</a></string>
|
<string>Sets Database provided by <a href="https://www.rebrickable.com">Rebrickable</a></string>
|
||||||
</property>
|
</property>
|
||||||
<property name="openExternalLinks">
|
<property name="openExternalLinks">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
|
|
|
@ -125,9 +125,23 @@ int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
lcApplication Application(argc, argv);
|
lcApplication Application(argc, argv);
|
||||||
|
|
||||||
|
QTranslator QtTranslator;
|
||||||
|
if (QtTranslator.load(QLocale::system(), "qt", "_", QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
||||||
|
{
|
||||||
|
Application.installTranslator(&QtTranslator);
|
||||||
|
}
|
||||||
|
|
||||||
|
QTranslator QtBaseTranslator;
|
||||||
|
if (QtBaseTranslator.load("qtbase_" + QLocale::system().name(), QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
||||||
|
{
|
||||||
|
Application.installTranslator(&QtBaseTranslator);
|
||||||
|
}
|
||||||
|
|
||||||
QTranslator Translator;
|
QTranslator Translator;
|
||||||
Translator.load(QString("leocad_") + QLocale::system().name().section('_', 0, 0) + ".qm", ":/resources");
|
if (Translator.load(QString("leocad_") + QLocale::system().name().section('_', 0, 0) + ".qm", ":/resources"))
|
||||||
Application.installTranslator(&Translator);
|
{
|
||||||
|
Application.installTranslator(&Translator);
|
||||||
|
}
|
||||||
|
|
||||||
qRegisterMetaTypeStreamOperators<QList<int> >("QList<int>");
|
qRegisterMetaTypeStreamOperators<QList<int> >("QList<int>");
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 939 B |
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 718 B After Width: | Height: | Size: 907 B |
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 556 B |
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 480 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 695 B After Width: | Height: | Size: 891 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 735 B After Width: | Height: | Size: 820 B |
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 857 B After Width: | Height: | Size: 992 B |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 628 B After Width: | Height: | Size: 887 B |
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 940 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 654 B After Width: | Height: | Size: 608 B |
Before Width: | Height: | Size: 501 B After Width: | Height: | Size: 526 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 592 B After Width: | Height: | Size: 750 B |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 984 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 361 B After Width: | Height: | Size: 419 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 353 B After Width: | Height: | Size: 343 B |
Before Width: | Height: | Size: 318 B After Width: | Height: | Size: 311 B |
Before Width: | Height: | Size: 329 B After Width: | Height: | Size: 313 B |
Before Width: | Height: | Size: 316 B After Width: | Height: | Size: 314 B |
Before Width: | Height: | Size: 353 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 356 B After Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 358 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 391 B After Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 487 B After Width: | Height: | Size: 454 B |
Before Width: | Height: | Size: 474 B After Width: | Height: | Size: 441 B |
Before Width: | Height: | Size: 330 B After Width: | Height: | Size: 365 B |
Before Width: | Height: | Size: 323 B After Width: | Height: | Size: 358 B |
Before Width: | Height: | Size: 336 B After Width: | Height: | Size: 332 B |
Before Width: | Height: | Size: 369 B After Width: | Height: | Size: 353 B |
Before Width: | Height: | Size: 189 B After Width: | Height: | Size: 375 B |
Before Width: | Height: | Size: 318 B After Width: | Height: | Size: 313 B |
Before Width: | Height: | Size: 285 B After Width: | Height: | Size: 397 B |
Before Width: | Height: | Size: 412 B After Width: | Height: | Size: 388 B |
Before Width: | Height: | Size: 797 B After Width: | Height: | Size: 986 B |
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 538 B |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 920 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 755 B After Width: | Height: | Size: 950 B |
Before Width: | Height: | Size: 964 B After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 683 B After Width: | Height: | Size: 1,017 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 825 B After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 865 B |
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 743 B After Width: | Height: | Size: 945 B |
Before Width: | Height: | Size: 741 B After Width: | Height: | Size: 783 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 823 B After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 671 B After Width: | Height: | Size: 953 B |
Before Width: | Height: | Size: 435 B After Width: | Height: | Size: 569 B |
Before Width: | Height: | Size: 762 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 509 B After Width: | Height: | Size: 798 B |
Before Width: | Height: | Size: 705 B After Width: | Height: | Size: 974 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 722 B After Width: | Height: | Size: 936 B |
Before Width: | Height: | Size: 952 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 664 B After Width: | Height: | Size: 911 B |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 565 B After Width: | Height: | Size: 862 B |
Before Width: | Height: | Size: 871 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 5.4 KiB |
|
@ -1089,7 +1089,7 @@
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_commands.cpp" line="9"/>
|
<location filename="../common/lc_commands.cpp" line="9"/>
|
||||||
<source>&New</source>
|
<source>&New</source>
|
||||||
<translation>&Neu</translation>
|
<translation type="unfinished">&Neu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_commands.cpp" line="16"/>
|
<location filename="../common/lc_commands.cpp" line="16"/>
|
||||||
|
@ -1663,7 +1663,7 @@
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_commands.cpp" line="912"/>
|
<location filename="../common/lc_commands.cpp" line="912"/>
|
||||||
<source>Reset</source>
|
<source>Reset</source>
|
||||||
<translation>Rücksetzen</translation>
|
<translation>Zurücksetzen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_commands.cpp" line="919"/>
|
<location filename="../common/lc_commands.cpp" line="919"/>
|
||||||
|
@ -1700,17 +1700,17 @@
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_commands.cpp" line="961"/>
|
<location filename="../common/lc_commands.cpp" line="961"/>
|
||||||
<source>Add Keys</source>
|
<source>Add Keys</source>
|
||||||
<translation>Tasten hinzufügen</translation>
|
<translation>Schlüssel hinzufügen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_commands.cpp" line="968"/>
|
<location filename="../common/lc_commands.cpp" line="968"/>
|
||||||
<source>Split &Horizontal</source>
|
<source>Split &Horizontal</source>
|
||||||
<translation>&Horizontal Teilen</translation>
|
<translation>&Horizontal teilen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_commands.cpp" line="975"/>
|
<location filename="../common/lc_commands.cpp" line="975"/>
|
||||||
<source>Split &Vertical</source>
|
<source>Split &Vertical</source>
|
||||||
<translation>&Vertikal Teilen</translation>
|
<translation>&Vertikal teilen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_commands.cpp" line="982"/>
|
<location filename="../common/lc_commands.cpp" line="982"/>
|
||||||
|
@ -2264,389 +2264,6 @@
|
||||||
<translation>Spezialfarben</translation>
|
<translation>Spezialfarben</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
|
||||||
<name>Shortcut</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="11"/>
|
|
||||||
<source>Ctrl+N</source>
|
|
||||||
<translation>Strg+N</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="18"/>
|
|
||||||
<source>Ctrl+O</source>
|
|
||||||
<translation>Strg+O</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="32"/>
|
|
||||||
<source>Ctrl+S</source>
|
|
||||||
<translation>Strg+S</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="179"/>
|
|
||||||
<source>Ctrl+Z</source>
|
|
||||||
<translation>Strg+Z</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="186"/>
|
|
||||||
<source>Ctrl+Y</source>
|
|
||||||
<translation>Strg+Y</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="193"/>
|
|
||||||
<source>Ctrl+X</source>
|
|
||||||
<translation>Strg+X</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="200"/>
|
|
||||||
<source>Ctrl+C</source>
|
|
||||||
<translation>Strg+C</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="207"/>
|
|
||||||
<source>Ctrl+V</source>
|
|
||||||
<translation>Strg+V</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="214"/>
|
|
||||||
<source>Ctrl+F</source>
|
|
||||||
<translation>Strg+F</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="221"/>
|
|
||||||
<source>F3</source>
|
|
||||||
<translation>F3</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="228"/>
|
|
||||||
<source>Shift+F3</source>
|
|
||||||
<translation>Shift+F3</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="235"/>
|
|
||||||
<source>Ctrl+A</source>
|
|
||||||
<translation>Strg+A</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="249"/>
|
|
||||||
<source>Ctrl+I</source>
|
|
||||||
<translation>Strg+I</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="312"/>
|
|
||||||
<source>0</source>
|
|
||||||
<translation>8x {0?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="319"/>
|
|
||||||
<source>1</source>
|
|
||||||
<translation>8x {1?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="326"/>
|
|
||||||
<source>2</source>
|
|
||||||
<translation>8x {2?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="333"/>
|
|
||||||
<source>3</source>
|
|
||||||
<translation>8x {3?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="340"/>
|
|
||||||
<source>4</source>
|
|
||||||
<translation>8x {4?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="347"/>
|
|
||||||
<source>5</source>
|
|
||||||
<translation>8x {5?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="354"/>
|
|
||||||
<source>6</source>
|
|
||||||
<translation>8x {6?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="361"/>
|
|
||||||
<source>7</source>
|
|
||||||
<translation>8x {7?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="368"/>
|
|
||||||
<source>8</source>
|
|
||||||
<translation>8x {8?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="375"/>
|
|
||||||
<source>9</source>
|
|
||||||
<translation>8x {9?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="382"/>
|
|
||||||
<source>Ctrl+Shift+0</source>
|
|
||||||
<translation>Strg+Shift+0</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="389"/>
|
|
||||||
<source>Ctrl+Shift+1</source>
|
|
||||||
<translation>Strg+Shift+1</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="396"/>
|
|
||||||
<source>Ctrl+Shift+2</source>
|
|
||||||
<translation>Strg+Shift+2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="403"/>
|
|
||||||
<source>Ctrl+Shift+3</source>
|
|
||||||
<translation>Strg+Shift+3</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="410"/>
|
|
||||||
<source>Ctrl+Shift+4</source>
|
|
||||||
<translation>Strg+Shift+4</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="417"/>
|
|
||||||
<source>Ctrl+Shift+5</source>
|
|
||||||
<translation>Strg+Shift+5</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="424"/>
|
|
||||||
<source>Ctrl+Shift+6</source>
|
|
||||||
<translation>Strg+Shift+6</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="431"/>
|
|
||||||
<source>Ctrl+Shift+7</source>
|
|
||||||
<translation>Strg+Shift+7</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="438"/>
|
|
||||||
<source>Ctrl+Shift+8</source>
|
|
||||||
<translation>Strg+Shift+8</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="445"/>
|
|
||||||
<source>Ctrl+Shift+9</source>
|
|
||||||
<translation>Strg+Shift+9</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="459"/>
|
|
||||||
<source>Shift+0</source>
|
|
||||||
<translation>Shift+0</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="466"/>
|
|
||||||
<source>Shift+1</source>
|
|
||||||
<translation>Shift+1</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="473"/>
|
|
||||||
<source>Shift+2</source>
|
|
||||||
<translation>Shift+2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="480"/>
|
|
||||||
<source>Shift+3</source>
|
|
||||||
<translation>Shift+3</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="487"/>
|
|
||||||
<source>Shift+4</source>
|
|
||||||
<translation>Shift+4</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="494"/>
|
|
||||||
<source>Shift+5</source>
|
|
||||||
<translation>Shift+5</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="501"/>
|
|
||||||
<source>Shift+6</source>
|
|
||||||
<translation>Shift+6</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="508"/>
|
|
||||||
<source>Shift+7</source>
|
|
||||||
<translation>Shift+7</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="515"/>
|
|
||||||
<source>Shift+8</source>
|
|
||||||
<translation>Shift+8</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="522"/>
|
|
||||||
<source>Shift+9</source>
|
|
||||||
<translation>Shift+9</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="662"/>
|
|
||||||
<source>Esc</source>
|
|
||||||
<translation>Esc</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="676"/>
|
|
||||||
<source>+</source>
|
|
||||||
<translation>+</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="683"/>
|
|
||||||
<source>-</source>
|
|
||||||
<translation>-</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="746"/>
|
|
||||||
<source>F</source>
|
|
||||||
<translation>F</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="753"/>
|
|
||||||
<source>B</source>
|
|
||||||
<translation>B</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="760"/>
|
|
||||||
<source>T</source>
|
|
||||||
<translation>T</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="767"/>
|
|
||||||
<source>O</source>
|
|
||||||
<translation>O</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="774"/>
|
|
||||||
<source>L</source>
|
|
||||||
<translation>L</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="781"/>
|
|
||||||
<source>R</source>
|
|
||||||
<translation>R</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="788"/>
|
|
||||||
<source>H</source>
|
|
||||||
<translation>H</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="921"/>
|
|
||||||
<source>Alt+Up</source>
|
|
||||||
<translation>Alt+Rauf</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="928"/>
|
|
||||||
<source>Alt+Left</source>
|
|
||||||
<translation>Alt+Links</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="935"/>
|
|
||||||
<source>Alt+Right</source>
|
|
||||||
<translation>Alt+Rechts</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="942"/>
|
|
||||||
<source>Alt+Down</source>
|
|
||||||
<translation>Alt+Runter</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1005"/>
|
|
||||||
<source>Ctrl+W</source>
|
|
||||||
<translation>Strg+W</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1047"/>
|
|
||||||
<source>Insert</source>
|
|
||||||
<translation>Einfügen</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1054"/>
|
|
||||||
<source>Delete</source>
|
|
||||||
<translation>Löschen</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1061"/>
|
|
||||||
<source>Ctrl+D</source>
|
|
||||||
<translation>Strg+D</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1096"/>
|
|
||||||
<source>Down</source>
|
|
||||||
<translation>Runter</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1103"/>
|
|
||||||
<source>Up</source>
|
|
||||||
<translation>Rauf</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1110"/>
|
|
||||||
<source>Right</source>
|
|
||||||
<translation>Rechts</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1117"/>
|
|
||||||
<source>Left</source>
|
|
||||||
<translation>Links</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1124"/>
|
|
||||||
<source>PgUp</source>
|
|
||||||
<translation>Bild auf</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1131"/>
|
|
||||||
<source>PgDown</source>
|
|
||||||
<translation>Bild ab</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1138"/>
|
|
||||||
<source>Shift+Down</source>
|
|
||||||
<translation>Shift+Runter</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1145"/>
|
|
||||||
<source>Shift+Up</source>
|
|
||||||
<translation>Shift+Hoch</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1152"/>
|
|
||||||
<source>Shift+Right</source>
|
|
||||||
<translation>Shift+Rechts</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1159"/>
|
|
||||||
<source>Shift+Left</source>
|
|
||||||
<translation>Shift+Links</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1166"/>
|
|
||||||
<source>Shift+PgUp</source>
|
|
||||||
<translation>Shift+Bild auf</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1173"/>
|
|
||||||
<source>Shift+PgDown</source>
|
|
||||||
<translation>Shift+Bild ab</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1229"/>
|
|
||||||
<source>Ctrl+G</source>
|
|
||||||
<translation>Strg+G</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1236"/>
|
|
||||||
<source>Ctrl+U</source>
|
|
||||||
<translation>Strg+U</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1264"/>
|
|
||||||
<source>Ctrl+H</source>
|
|
||||||
<translation>Strg+H</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
<context>
|
<context>
|
||||||
<name>Status</name>
|
<name>Status</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -3331,7 +2948,7 @@
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_commands.cpp" line="962"/>
|
<location filename="../common/lc_commands.cpp" line="962"/>
|
||||||
<source>Toggle adding new animation keys</source>
|
<source>Toggle adding new animation keys</source>
|
||||||
<translation>Hinzufügen neuer Animationstasten umschalten</translation>
|
<translation>Hinzufügen neuer Animationsschlüssel umschalten</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_commands.cpp" line="969"/>
|
<location filename="../common/lc_commands.cpp" line="969"/>
|
||||||
|
@ -3537,7 +3154,7 @@
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_commands.cpp" line="1494"/>
|
<location filename="../common/lc_commands.cpp" line="1494"/>
|
||||||
<source>Open LeoCAD's home page on the internet using your default web browser</source>
|
<source>Open LeoCAD's home page on the internet using your default web browser</source>
|
||||||
<translation>LeoCAD's Homepage unter 'Verwendung des Standardbrowsers öffnen</translation>
|
<translation>LeoCAD's Homepage im Standardbrowsers öffnen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_commands.cpp" line="1508"/>
|
<location filename="../common/lc_commands.cpp" line="1508"/>
|
||||||
|
@ -3870,7 +3487,7 @@ Bitte lesen sie unter https://www.leocad.org nach wie man eine Bibliothek herunt
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_mainwindow.cpp" line="1970"/>
|
<location filename="../common/lc_mainwindow.cpp" line="1970"/>
|
||||||
<source>&Undo</source>
|
<source>&Undo</source>
|
||||||
<translation>rückg&ängig machen</translation>
|
<translation>Rückg&ängig machen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_mainwindow.cpp" line="1976"/>
|
<location filename="../common/lc_mainwindow.cpp" line="1976"/>
|
||||||
|
@ -3880,7 +3497,7 @@ Bitte lesen sie unter https://www.leocad.org nach wie man eine Bibliothek herunt
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_mainwindow.cpp" line="1981"/>
|
<location filename="../common/lc_mainwindow.cpp" line="1981"/>
|
||||||
<source>&Redo</source>
|
<source>&Redo</source>
|
||||||
<translation>&wiederherstellen</translation>
|
<translation>&Wiederherstellen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../common/lc_mainwindow.cpp" line="2169"/>
|
<location filename="../common/lc_mainwindow.cpp" line="2169"/>
|
||||||
|
@ -4428,11 +4045,6 @@ Bitte lesen sie unter https://www.leocad.org nach wie man eine Bibliothek herunt
|
||||||
<source>LeoCAD is a free application for creating virtual LEGO models.</source>
|
<source>LeoCAD is a free application for creating virtual LEGO models.</source>
|
||||||
<translation>LeoCAD ist eine freie Anwendung zur gestaltung virtueller LEGO Modelle.</translation>
|
<translation>LeoCAD ist eine freie Anwendung zur gestaltung virtueller LEGO Modelle.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
|
||||||
<location filename="../qt/lc_qaboutdialog.ui" line="59"/>
|
|
||||||
<source><a href="http://www.leocad.org">http://www.leocad.org</a></source>
|
|
||||||
<translation><a href="http://www.leocad.org">http://www.leocad.org</a></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qaboutdialog.ui" line="73"/>
|
<location filename="../qt/lc_qaboutdialog.ui" line="73"/>
|
||||||
<source>System Information</source>
|
<source>System Information</source>
|
||||||
|
@ -4914,7 +4526,7 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qminifigdialog.cpp" line="182"/>
|
<location filename="../qt/lc_qminifigdialog.cpp" line="182"/>
|
||||||
<source>Are you sure you want to overwrite the template '%1'?</source>
|
<source>Are you sure you want to overwrite the template '%1'?</source>
|
||||||
<translation>Bist du sicher das du die Vorlage '%1' überschreiben willst?</translation>
|
<translation>Sind sie sicher das sie die Vorlage '%1' überschreiben wollen?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qminifigdialog.cpp" line="183"/>
|
<location filename="../qt/lc_qminifigdialog.cpp" line="183"/>
|
||||||
|
@ -4924,7 +4536,7 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qminifigdialog.cpp" line="209"/>
|
<location filename="../qt/lc_qminifigdialog.cpp" line="209"/>
|
||||||
<source>Are you sure you want to delete the template '%1'?</source>
|
<source>Are you sure you want to delete the template '%1'?</source>
|
||||||
<translation>Bist du sicher das du die Vorlage '%1' löschen willst?</translation>
|
<translation>Sind sie sicher das sie die Vorlage '%1' löschen wollen?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qminifigdialog.cpp" line="211"/>
|
<location filename="../qt/lc_qminifigdialog.cpp" line="211"/>
|
||||||
|
@ -5077,7 +4689,7 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="862"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="862"/>
|
||||||
<source>Button:</source>
|
<source>Button:</source>
|
||||||
<translation>Schaltknopf:</translation>
|
<translation>Maustaste:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="870"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="870"/>
|
||||||
|
@ -5102,12 +4714,12 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="893"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="893"/>
|
||||||
<source>Modifiers:</source>
|
<source>Modifiers:</source>
|
||||||
<translation>Modifizierer:</translation>
|
<translation>Sondertaste:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="900"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="900"/>
|
||||||
<source>Control</source>
|
<source>Control</source>
|
||||||
<translation>Steuerung</translation>
|
<translation>Strg</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="907"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="907"/>
|
||||||
|
@ -5147,17 +4759,17 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="144"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="144"/>
|
||||||
<source>Once a day</source>
|
<source>Once a day</source>
|
||||||
<translation>einmal am Tag</translation>
|
<translation>Einmal am Tag</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="149"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="149"/>
|
||||||
<source>Once a week</source>
|
<source>Once a week</source>
|
||||||
<translation>einmal pro Woche</translation>
|
<translation>Einmal pro Woche</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="157"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="157"/>
|
||||||
<source>Fixed direction keys</source>
|
<source>Fixed direction keys</source>
|
||||||
<translation>Richtungstasten</translation>
|
<translation>Feste Richtungstasten</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="165"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="165"/>
|
||||||
|
@ -5172,12 +4784,12 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="210"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="210"/>
|
||||||
<source>Axis icon</source>
|
<source>Axis icon</source>
|
||||||
<translation>Ikonen an den Achsen</translation>
|
<translation>Achsenbeschriftung</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="237"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="237"/>
|
||||||
<source>width</source>
|
<source>width</source>
|
||||||
<translation>breite</translation>
|
<translation>Breite</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="230"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="230"/>
|
||||||
|
@ -5237,7 +4849,7 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="323"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="323"/>
|
||||||
<source>Draw lines every</source>
|
<source>Draw lines every</source>
|
||||||
<translation>Linien Zeichnen alle</translation>
|
<translation>Linien zeichnen alle</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="340"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="340"/>
|
||||||
|
@ -5347,7 +4959,7 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="706"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="706"/>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="825"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="825"/>
|
||||||
<source>Reset...</source>
|
<source>Reset...</source>
|
||||||
<translation>Rücksetzen…</translation>
|
<translation>Zurücksetzen…</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.ui" line="610"/>
|
<location filename="../qt/lc_qpreferencesdialog.ui" line="610"/>
|
||||||
|
@ -5534,17 +5146,17 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.cpp" line="711"/>
|
<location filename="../qt/lc_qpreferencesdialog.cpp" line="711"/>
|
||||||
<source>Left Button</source>
|
<source>Left Button</source>
|
||||||
<translation>Schaltfeld links</translation>
|
<translation>Linke Maustaste</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.cpp" line="716"/>
|
<location filename="../qt/lc_qpreferencesdialog.cpp" line="716"/>
|
||||||
<source>Middle Button</source>
|
<source>Middle Button</source>
|
||||||
<translation>Schaltfeld mitte</translation>
|
<translation>Mittlere Maustaste</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.cpp" line="721"/>
|
<location filename="../qt/lc_qpreferencesdialog.cpp" line="721"/>
|
||||||
<source>Right Button</source>
|
<source>Right Button</source>
|
||||||
<translation>Schaltfeld rechts</translation>
|
<translation>Rechte Maustaste</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpreferencesdialog.cpp" line="790"/>
|
<location filename="../qt/lc_qpreferencesdialog.cpp" line="790"/>
|
||||||
|
@ -5751,7 +5363,7 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpropertiestree.cpp" line="832"/>
|
<location filename="../qt/lc_qpropertiestree.cpp" line="832"/>
|
||||||
<source>Color</source>
|
<source>Color</source>
|
||||||
<translation>Couleur</translation>
|
<translation>Farbe</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qpropertiestree.cpp" line="833"/>
|
<location filename="../qt/lc_qpropertiestree.cpp" line="833"/>
|
||||||
|
@ -6021,8 +5633,8 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_setsdatabasedialog.ui" line="74"/>
|
<location filename="../qt/lc_setsdatabasedialog.ui" line="74"/>
|
||||||
<source>Sets Database provided by <a href="http://www.rebrickable.com">Rebrickable</a></source>
|
<source>Sets Database provided by <a href="https://www.rebrickable.com">Rebrickable</a></source>
|
||||||
<translation>Sets Datenbank bereitgestellt von <a href="http://www.rebrickable.com">Rebrickable</a></translation>
|
<translation>Sets Datenbank bereitgestellt von <a href="https://www.rebrickable.com">Rebrickable</a></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_setsdatabasedialog.cpp" line="62"/>
|
<location filename="../qt/lc_setsdatabasedialog.cpp" line="62"/>
|
||||||
|
|
|
@ -2264,389 +2264,6 @@
|
||||||
<translation>Couleurs spéciales</translation>
|
<translation>Couleurs spéciales</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
|
||||||
<name>Shortcut</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="11"/>
|
|
||||||
<source>Ctrl+N</source>
|
|
||||||
<translation>Ctrl+N</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="18"/>
|
|
||||||
<source>Ctrl+O</source>
|
|
||||||
<translation>Ctrl+O</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="32"/>
|
|
||||||
<source>Ctrl+S</source>
|
|
||||||
<translation>Ctrl+S</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="179"/>
|
|
||||||
<source>Ctrl+Z</source>
|
|
||||||
<translation>Ctrl+Z</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="186"/>
|
|
||||||
<source>Ctrl+Y</source>
|
|
||||||
<translation>Ctrl+Y</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="193"/>
|
|
||||||
<source>Ctrl+X</source>
|
|
||||||
<translation>Ctrl+X</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="200"/>
|
|
||||||
<source>Ctrl+C</source>
|
|
||||||
<translation>Ctrl+C</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="207"/>
|
|
||||||
<source>Ctrl+V</source>
|
|
||||||
<translation>Ctrl+V</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="214"/>
|
|
||||||
<source>Ctrl+F</source>
|
|
||||||
<translation>Ctrl+F</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="221"/>
|
|
||||||
<source>F3</source>
|
|
||||||
<translation>F3</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="228"/>
|
|
||||||
<source>Shift+F3</source>
|
|
||||||
<translation>Maj+F3</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="235"/>
|
|
||||||
<source>Ctrl+A</source>
|
|
||||||
<translation>Ctrl+A</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="249"/>
|
|
||||||
<source>Ctrl+I</source>
|
|
||||||
<translation>Ctrl+I</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="312"/>
|
|
||||||
<source>0</source>
|
|
||||||
<translation>8x {0?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="319"/>
|
|
||||||
<source>1</source>
|
|
||||||
<translation>8x {1?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="326"/>
|
|
||||||
<source>2</source>
|
|
||||||
<translation>8x {2?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="333"/>
|
|
||||||
<source>3</source>
|
|
||||||
<translation>8x {3?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="340"/>
|
|
||||||
<source>4</source>
|
|
||||||
<translation>8x {4?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="347"/>
|
|
||||||
<source>5</source>
|
|
||||||
<translation>8x {5?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="354"/>
|
|
||||||
<source>6</source>
|
|
||||||
<translation>8x {6?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="361"/>
|
|
||||||
<source>7</source>
|
|
||||||
<translation>8x {7?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="368"/>
|
|
||||||
<source>8</source>
|
|
||||||
<translation>8x {8?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="375"/>
|
|
||||||
<source>9</source>
|
|
||||||
<translation>8x {9?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="382"/>
|
|
||||||
<source>Ctrl+Shift+0</source>
|
|
||||||
<translation>Ctrl+Maj+0</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="389"/>
|
|
||||||
<source>Ctrl+Shift+1</source>
|
|
||||||
<translation>Ctrl+Maj+1</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="396"/>
|
|
||||||
<source>Ctrl+Shift+2</source>
|
|
||||||
<translation>Ctrl+Maj+2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="403"/>
|
|
||||||
<source>Ctrl+Shift+3</source>
|
|
||||||
<translation>Ctrl+Maj+3</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="410"/>
|
|
||||||
<source>Ctrl+Shift+4</source>
|
|
||||||
<translation>Ctrl+Maj+4</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="417"/>
|
|
||||||
<source>Ctrl+Shift+5</source>
|
|
||||||
<translation>Ctrl+Maj+5</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="424"/>
|
|
||||||
<source>Ctrl+Shift+6</source>
|
|
||||||
<translation>Ctrl+Maj+6</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="431"/>
|
|
||||||
<source>Ctrl+Shift+7</source>
|
|
||||||
<translation>Ctrl+Maj+7</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="438"/>
|
|
||||||
<source>Ctrl+Shift+8</source>
|
|
||||||
<translation>Ctrl+Maj+8</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="445"/>
|
|
||||||
<source>Ctrl+Shift+9</source>
|
|
||||||
<translation>Ctrl+Maj+9</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="459"/>
|
|
||||||
<source>Shift+0</source>
|
|
||||||
<translation>Maj+0</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="466"/>
|
|
||||||
<source>Shift+1</source>
|
|
||||||
<translation>Maj+1</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="473"/>
|
|
||||||
<source>Shift+2</source>
|
|
||||||
<translation>Maj+2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="480"/>
|
|
||||||
<source>Shift+3</source>
|
|
||||||
<translation>Maj+3</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="487"/>
|
|
||||||
<source>Shift+4</source>
|
|
||||||
<translation>Maj+4</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="494"/>
|
|
||||||
<source>Shift+5</source>
|
|
||||||
<translation>Maj+5</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="501"/>
|
|
||||||
<source>Shift+6</source>
|
|
||||||
<translation>Maj+6</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="508"/>
|
|
||||||
<source>Shift+7</source>
|
|
||||||
<translation>Maj+7</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="515"/>
|
|
||||||
<source>Shift+8</source>
|
|
||||||
<translation>Maj+8</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="522"/>
|
|
||||||
<source>Shift+9</source>
|
|
||||||
<translation>Maj+9</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="662"/>
|
|
||||||
<source>Esc</source>
|
|
||||||
<translation>Échap</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="676"/>
|
|
||||||
<source>+</source>
|
|
||||||
<translation>+</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="683"/>
|
|
||||||
<source>-</source>
|
|
||||||
<translation>-</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="746"/>
|
|
||||||
<source>F</source>
|
|
||||||
<translation>F</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="753"/>
|
|
||||||
<source>B</source>
|
|
||||||
<translation>B</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="760"/>
|
|
||||||
<source>T</source>
|
|
||||||
<translation>T</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="767"/>
|
|
||||||
<source>O</source>
|
|
||||||
<translation>O</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="774"/>
|
|
||||||
<source>L</source>
|
|
||||||
<translation>L</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="781"/>
|
|
||||||
<source>R</source>
|
|
||||||
<translation>R</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="788"/>
|
|
||||||
<source>H</source>
|
|
||||||
<translation>H</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="921"/>
|
|
||||||
<source>Alt+Up</source>
|
|
||||||
<translation>Alt+Up</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="928"/>
|
|
||||||
<source>Alt+Left</source>
|
|
||||||
<translation>Alt+Left</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="935"/>
|
|
||||||
<source>Alt+Right</source>
|
|
||||||
<translation>Alt+Right</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="942"/>
|
|
||||||
<source>Alt+Down</source>
|
|
||||||
<translation>Alt+Down</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1005"/>
|
|
||||||
<source>Ctrl+W</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1047"/>
|
|
||||||
<source>Insert</source>
|
|
||||||
<translation>Inser</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1054"/>
|
|
||||||
<source>Delete</source>
|
|
||||||
<translation>Suppr</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1061"/>
|
|
||||||
<source>Ctrl+D</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1096"/>
|
|
||||||
<source>Down</source>
|
|
||||||
<translation>Bas</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1103"/>
|
|
||||||
<source>Up</source>
|
|
||||||
<translation>Haut</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1110"/>
|
|
||||||
<source>Right</source>
|
|
||||||
<translation>Droite</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1117"/>
|
|
||||||
<source>Left</source>
|
|
||||||
<translation>Gauche</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1124"/>
|
|
||||||
<source>PgUp</source>
|
|
||||||
<translation>Page préc</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1131"/>
|
|
||||||
<source>PgDown</source>
|
|
||||||
<translation>Page suiv</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1138"/>
|
|
||||||
<source>Shift+Down</source>
|
|
||||||
<translation>Maj+Bas</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1145"/>
|
|
||||||
<source>Shift+Up</source>
|
|
||||||
<translation>Maj+Haut</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1152"/>
|
|
||||||
<source>Shift+Right</source>
|
|
||||||
<translation>Maj+Droite</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1159"/>
|
|
||||||
<source>Shift+Left</source>
|
|
||||||
<translation>Maj+Gauche</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1166"/>
|
|
||||||
<source>Shift+PgUp</source>
|
|
||||||
<translation>Maj+Page préc</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1173"/>
|
|
||||||
<source>Shift+PgDown</source>
|
|
||||||
<translation>Maj+Page suiv</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1229"/>
|
|
||||||
<source>Ctrl+G</source>
|
|
||||||
<translation>Ctrl+G</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1236"/>
|
|
||||||
<source>Ctrl+U</source>
|
|
||||||
<translation>Ctrl+U</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1264"/>
|
|
||||||
<source>Ctrl+H</source>
|
|
||||||
<translation>Ctrl+H</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
<context>
|
<context>
|
||||||
<name>Status</name>
|
<name>Status</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4428,11 +4045,6 @@ SVP visitez https://www.leocad.org pour apprendre comment télécharger et insta
|
||||||
<source>LeoCAD is a free application for creating virtual LEGO models.</source>
|
<source>LeoCAD is a free application for creating virtual LEGO models.</source>
|
||||||
<translation>LeoCAD est une application libre pour créer les modèles LEGO virtuels.</translation>
|
<translation>LeoCAD est une application libre pour créer les modèles LEGO virtuels.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
|
||||||
<location filename="../qt/lc_qaboutdialog.ui" line="59"/>
|
|
||||||
<source><a href="http://www.leocad.org">http://www.leocad.org</a></source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qaboutdialog.ui" line="73"/>
|
<location filename="../qt/lc_qaboutdialog.ui" line="73"/>
|
||||||
<source>System Information</source>
|
<source>System Information</source>
|
||||||
|
@ -4855,12 +4467,12 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qimagedialog.cpp" line="54"/>
|
<location filename="../qt/lc_qimagedialog.cpp" line="54"/>
|
||||||
<source>Please enter a width between 1 and 32768.</source>
|
<source>Please enter a width between 1 and 32768.</source>
|
||||||
<translation type="unfinished">SVP entrez une largeur entre 1 et 2048. {1 ?} {32768.?}</translation>
|
<translation>SVP entrez une largeur entre 1 et 32768.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qimagedialog.cpp" line="62"/>
|
<location filename="../qt/lc_qimagedialog.cpp" line="62"/>
|
||||||
<source>Please enter a height between 1 and 32768.</source>
|
<source>Please enter a height between 1 and 32768.</source>
|
||||||
<translation type="unfinished">SVP entrez une hauteur entre 1 et 2048. {1 ?} {32768.?}</translation>
|
<translation>SVP entrez une hauteur entre 1 et 32768.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qimagedialog.cpp" line="117"/>
|
<location filename="../qt/lc_qimagedialog.cpp" line="117"/>
|
||||||
|
@ -6016,7 +5628,7 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_setsdatabasedialog.ui" line="74"/>
|
<location filename="../qt/lc_setsdatabasedialog.ui" line="74"/>
|
||||||
<source>Sets Database provided by <a href="http://www.rebrickable.com">Rebrickable</a></source>
|
<source>Sets Database provided by <a href="https://www.rebrickable.com">Rebrickable</a></source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
|
@ -2264,389 +2264,6 @@
|
||||||
<translation>Cores Especiais</translation>
|
<translation>Cores Especiais</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
|
||||||
<name>Shortcut</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="11"/>
|
|
||||||
<source>Ctrl+N</source>
|
|
||||||
<translation>Ctrl+N</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="18"/>
|
|
||||||
<source>Ctrl+O</source>
|
|
||||||
<translation>Ctrl+O</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="32"/>
|
|
||||||
<source>Ctrl+S</source>
|
|
||||||
<translation>Ctrl+S</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="179"/>
|
|
||||||
<source>Ctrl+Z</source>
|
|
||||||
<translation>Ctrl+Z</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="186"/>
|
|
||||||
<source>Ctrl+Y</source>
|
|
||||||
<translation>Ctrl+Y</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="193"/>
|
|
||||||
<source>Ctrl+X</source>
|
|
||||||
<translation>Ctrl+X</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="200"/>
|
|
||||||
<source>Ctrl+C</source>
|
|
||||||
<translation>Ctrl+C</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="207"/>
|
|
||||||
<source>Ctrl+V</source>
|
|
||||||
<translation>Ctrl+V</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="214"/>
|
|
||||||
<source>Ctrl+F</source>
|
|
||||||
<translation>Ctrl+F</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="221"/>
|
|
||||||
<source>F3</source>
|
|
||||||
<translation>F3</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="228"/>
|
|
||||||
<source>Shift+F3</source>
|
|
||||||
<translation>Shift+F3</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="235"/>
|
|
||||||
<source>Ctrl+A</source>
|
|
||||||
<translation>Ctrl+A</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="249"/>
|
|
||||||
<source>Ctrl+I</source>
|
|
||||||
<translation>Ctrl+I</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="312"/>
|
|
||||||
<source>0</source>
|
|
||||||
<translation>8x {0?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="319"/>
|
|
||||||
<source>1</source>
|
|
||||||
<translation>8x {1?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="326"/>
|
|
||||||
<source>2</source>
|
|
||||||
<translation>8x {2?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="333"/>
|
|
||||||
<source>3</source>
|
|
||||||
<translation>8x {3?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="340"/>
|
|
||||||
<source>4</source>
|
|
||||||
<translation>8x {4?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="347"/>
|
|
||||||
<source>5</source>
|
|
||||||
<translation>8x {5?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="354"/>
|
|
||||||
<source>6</source>
|
|
||||||
<translation>8x {6?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="361"/>
|
|
||||||
<source>7</source>
|
|
||||||
<translation>8x {7?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="368"/>
|
|
||||||
<source>8</source>
|
|
||||||
<translation>8x {8?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="375"/>
|
|
||||||
<source>9</source>
|
|
||||||
<translation>8x {9?}</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="382"/>
|
|
||||||
<source>Ctrl+Shift+0</source>
|
|
||||||
<translation>Ctrl+Shift+0</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="389"/>
|
|
||||||
<source>Ctrl+Shift+1</source>
|
|
||||||
<translation>Ctrl+Shift+1</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="396"/>
|
|
||||||
<source>Ctrl+Shift+2</source>
|
|
||||||
<translation>Ctrl+Shift+2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="403"/>
|
|
||||||
<source>Ctrl+Shift+3</source>
|
|
||||||
<translation>Ctrl+Shift+3</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="410"/>
|
|
||||||
<source>Ctrl+Shift+4</source>
|
|
||||||
<translation>Ctrl+Shift+4</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="417"/>
|
|
||||||
<source>Ctrl+Shift+5</source>
|
|
||||||
<translation>Ctrl+Shift+5</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="424"/>
|
|
||||||
<source>Ctrl+Shift+6</source>
|
|
||||||
<translation>Ctrl+Shift+6</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="431"/>
|
|
||||||
<source>Ctrl+Shift+7</source>
|
|
||||||
<translation>Ctrl+Shift+7</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="438"/>
|
|
||||||
<source>Ctrl+Shift+8</source>
|
|
||||||
<translation>Ctrl+Shift+8</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="445"/>
|
|
||||||
<source>Ctrl+Shift+9</source>
|
|
||||||
<translation>Ctrl+Shift+9</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="459"/>
|
|
||||||
<source>Shift+0</source>
|
|
||||||
<translation></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="466"/>
|
|
||||||
<source>Shift+1</source>
|
|
||||||
<translation>Shift+1</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="473"/>
|
|
||||||
<source>Shift+2</source>
|
|
||||||
<translation>Shift+2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="480"/>
|
|
||||||
<source>Shift+3</source>
|
|
||||||
<translation>Shift+3</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="487"/>
|
|
||||||
<source>Shift+4</source>
|
|
||||||
<translation>Shift+4</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="494"/>
|
|
||||||
<source>Shift+5</source>
|
|
||||||
<translation>Shift+5</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="501"/>
|
|
||||||
<source>Shift+6</source>
|
|
||||||
<translation>Shift+6</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="508"/>
|
|
||||||
<source>Shift+7</source>
|
|
||||||
<translation>Shift+7</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="515"/>
|
|
||||||
<source>Shift+8</source>
|
|
||||||
<translation>Shift+8</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="522"/>
|
|
||||||
<source>Shift+9</source>
|
|
||||||
<translation>Shift+9</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="662"/>
|
|
||||||
<source>Esc</source>
|
|
||||||
<translation>Esc</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="676"/>
|
|
||||||
<source>+</source>
|
|
||||||
<translation>+</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="683"/>
|
|
||||||
<source>-</source>
|
|
||||||
<translation>-</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="746"/>
|
|
||||||
<source>F</source>
|
|
||||||
<translation>F</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="753"/>
|
|
||||||
<source>B</source>
|
|
||||||
<translation>B</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="760"/>
|
|
||||||
<source>T</source>
|
|
||||||
<translation>T</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="767"/>
|
|
||||||
<source>O</source>
|
|
||||||
<translation>O</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="774"/>
|
|
||||||
<source>L</source>
|
|
||||||
<translation>L</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="781"/>
|
|
||||||
<source>R</source>
|
|
||||||
<translation>R</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="788"/>
|
|
||||||
<source>H</source>
|
|
||||||
<translation>H</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="921"/>
|
|
||||||
<source>Alt+Up</source>
|
|
||||||
<translation>Alt+Up</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="928"/>
|
|
||||||
<source>Alt+Left</source>
|
|
||||||
<translation>Alt+Left</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="935"/>
|
|
||||||
<source>Alt+Right</source>
|
|
||||||
<translation>Alt+Right</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="942"/>
|
|
||||||
<source>Alt+Down</source>
|
|
||||||
<translation>Alt+Down</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1005"/>
|
|
||||||
<source>Ctrl+W</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1047"/>
|
|
||||||
<source>Insert</source>
|
|
||||||
<translation>Insert</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1054"/>
|
|
||||||
<source>Delete</source>
|
|
||||||
<translation>Delete</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1061"/>
|
|
||||||
<source>Ctrl+D</source>
|
|
||||||
<translation>Ctrl+D</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1096"/>
|
|
||||||
<source>Down</source>
|
|
||||||
<translation>Down</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1103"/>
|
|
||||||
<source>Up</source>
|
|
||||||
<translation>Up</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1110"/>
|
|
||||||
<source>Right</source>
|
|
||||||
<translation>Right</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1117"/>
|
|
||||||
<source>Left</source>
|
|
||||||
<translation>Left</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1124"/>
|
|
||||||
<source>PgUp</source>
|
|
||||||
<translation>PgUp</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1131"/>
|
|
||||||
<source>PgDown</source>
|
|
||||||
<translation>PgDown</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1138"/>
|
|
||||||
<source>Shift+Down</source>
|
|
||||||
<translation>Shift+Down</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1145"/>
|
|
||||||
<source>Shift+Up</source>
|
|
||||||
<translation>Shift+Up</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1152"/>
|
|
||||||
<source>Shift+Right</source>
|
|
||||||
<translation>Shift+Right</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1159"/>
|
|
||||||
<source>Shift+Left</source>
|
|
||||||
<translation>Shift+Left</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1166"/>
|
|
||||||
<source>Shift+PgUp</source>
|
|
||||||
<translation>Shift+PgUp</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1173"/>
|
|
||||||
<source>Shift+PgDown</source>
|
|
||||||
<translation>Shift+PgDown</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1229"/>
|
|
||||||
<source>Ctrl+G</source>
|
|
||||||
<translation>Ctrl+G</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1236"/>
|
|
||||||
<source>Ctrl+U</source>
|
|
||||||
<translation>Ctrl+U</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../common/lc_commands.cpp" line="1264"/>
|
|
||||||
<source>Ctrl+H</source>
|
|
||||||
<translation>Ctrl+H</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
<context>
|
<context>
|
||||||
<name>Status</name>
|
<name>Status</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4428,11 +4045,6 @@ Veja https://www.leocad.org para saber como descarragar e instalar uma bibliotec
|
||||||
<source>LeoCAD is a free application for creating virtual LEGO models.</source>
|
<source>LeoCAD is a free application for creating virtual LEGO models.</source>
|
||||||
<translation>LeoCAD é um programa libre para criar modelos LEGO virtuais.</translation>
|
<translation>LeoCAD é um programa libre para criar modelos LEGO virtuais.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
|
||||||
<location filename="../qt/lc_qaboutdialog.ui" line="59"/>
|
|
||||||
<source><a href="http://www.leocad.org">http://www.leocad.org</a></source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_qaboutdialog.ui" line="73"/>
|
<location filename="../qt/lc_qaboutdialog.ui" line="73"/>
|
||||||
<source>System Information</source>
|
<source>System Information</source>
|
||||||
|
@ -6016,7 +5628,7 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt/lc_setsdatabasedialog.ui" line="74"/>
|
<location filename="../qt/lc_setsdatabasedialog.ui" line="74"/>
|
||||||
<source>Sets Database provided by <a href="http://www.rebrickable.com">Rebrickable</a></source>
|
<source>Sets Database provided by <a href="https://www.rebrickable.com">Rebrickable</a></source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 867 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 952 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 941 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 407 B After Width: | Height: | Size: 759 B |
Before Width: | Height: | Size: 412 B After Width: | Height: | Size: 547 B |
Before Width: | Height: | Size: 467 B After Width: | Height: | Size: 563 B |