Merge pull request #219 from jerogee/feature/dutch-translation

Added Dutch translation
This commit is contained in:
Volker Fischer 2020-05-14 22:11:57 +02:00 committed by GitHub
commit 2a2c49832e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 2356 additions and 2 deletions

View file

@ -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

Binary file not shown.

File diff suppressed because it is too large Load diff

View file

@ -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>

View 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() );