Merge pull request #219 from jerogee/feature/dutch-translation
Added Dutch translation
This commit is contained in:
commit
2a2c49832e
5 changed files with 2356 additions and 2 deletions
|
@ -18,7 +18,8 @@ QT += widgets \
|
|||
TRANSLATIONS = src/res/translation/translation_de_DE.ts \
|
||||
src/res/translation/translation_fr_FR.ts \
|
||||
src/res/translation/translation_pt_PT.ts \
|
||||
src/res/translation/translation_es_ES.ts
|
||||
src/res/translation/translation_es_ES.ts \
|
||||
src/res/translation/translation_nl_NL.ts
|
||||
|
||||
INCLUDEPATH += src
|
||||
|
||||
|
|
BIN
src/res/translation/translation_nl_NL.qm
Normal file
BIN
src/res/translation/translation_nl_NL.qm
Normal file
Binary file not shown.
2348
src/res/translation/translation_nl_NL.ts
Normal file
2348
src/res/translation/translation_nl_NL.ts
Normal file
File diff suppressed because it is too large
Load diff
|
@ -11,6 +11,9 @@
|
|||
<qresource prefix="/translations" lang="es">
|
||||
<file alias="translation.qm">res/translation/translation_es_ES.qm</file>
|
||||
</qresource>
|
||||
<qresource prefix="/translations" lang="nl">
|
||||
<file alias="translation.qm">res/translation/translation_nl_NL.qm</file>
|
||||
</qresource>
|
||||
<qresource prefix="/png/LEDs">
|
||||
<file>res/CLEDDisabledSmall.png</file>
|
||||
<file>res/CLEDGreenArrow.png</file>
|
||||
|
|
|
@ -409,7 +409,9 @@ CAboutDlg::CAboutDlg ( QWidget* parent ) : QDialog ( parent )
|
|||
"<p><b>" + tr ( "French" ) + "</b></p>"
|
||||
"<p>Olivier Humbert (<a href=""https://github.com/trebmuh"">trebmuh</a>)</p>"
|
||||
"<p><b>" + tr ( "Portuguese" ) + "</b></p>"
|
||||
"<p>Miguel de Matos (<a href=""https://github.com/Snayler"">Snayler</a>)</p>" );
|
||||
"<p>Miguel de Matos (<a href=""https://github.com/Snayler"">Snayler</a>)</p>"
|
||||
"<p><b>" + tr ( "Dutch" ) + "</b></p>"
|
||||
"<p>Jeroen Geertzen (<a href=""https://github.com/jerogee"">Jerogee</a>)</p>" );
|
||||
|
||||
// set version number in about dialog
|
||||
lblVersion->setText ( GetVersionAndNameStr() );
|
||||
|
|
Loading…
Reference in a new issue