added nl_NL thanks to Heimen Stoffels (Vistaus)

This commit is contained in:
Hauke Schade 2015-03-17 22:47:13 +01:00
parent 35f4c6a428
commit f7cacce749
7 changed files with 1068 additions and 4 deletions

View file

@ -12,3 +12,4 @@ CONTRIBUTORS
- Patrik Nilsson (AsavarTzeth) - Patrik Nilsson (AsavarTzeth)
- Alexey (lewa) - Alexey (lewa)
- clovis86 - clovis86
- Heimen Stoffels (Vistaus)

View file

@ -2,7 +2,7 @@ ttrss
========== ==========
ttrss is a [Tiny Tiny RSS](http://tt-rss.org) Reader App for the ttrss is a [Tiny Tiny RSS](http://tt-rss.org) Reader App for the
Nokia N9 smart phone, written using Qt/QML. Nokia N9 smart phone and Jolla Sailfish phone, written using Qt/QML.
It uses the [Tiny Tiny RSS API](http://tt-rss.org/redmine/projects/tt-rss/wiki/JsonApiReference). It uses the [Tiny Tiny RSS API](http://tt-rss.org/redmine/projects/tt-rss/wiki/JsonApiReference).
If you want to support me or this app, [buy me a beer](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WUWGSGAK8K7ZN) (in €). If you want to support me or this app, [buy me a beer](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WUWGSGAK8K7ZN) (in €).

View file

@ -71,7 +71,8 @@ OTHER_FILES += rpm/$${TARGET}.spec \
rpm/$${TARGET}.changes \ rpm/$${TARGET}.changes \
$$files(rpm/*) \ $$files(rpm/*) \
$$files(qml/ttrss/harmattan/*) \ $$files(qml/ttrss/harmattan/*) \
$$files(qml/ttrss/components/*) $$files(qml/ttrss/components/*) \
*.md
TS_FILE = $${_PRO_FILE_PWD_}/i18n/$${TARGET}.ts TS_FILE = $${_PRO_FILE_PWD_}/i18n/$${TARGET}.ts
@ -105,6 +106,7 @@ TRANSLATIONS += i18n/qml-translation.cs.ts \
i18n/qml-translation.en.ts \ i18n/qml-translation.en.ts \
i18n/qml-translation.es.ts \ i18n/qml-translation.es.ts \
i18n/qml-translation.fr.ts \ i18n/qml-translation.fr.ts \
i18n/qml-translation.nl_NL.ts \
i18n/qml-translation.ru.ts \ i18n/qml-translation.ru.ts \
i18n/qml-translation.ro.ts \ i18n/qml-translation.ro.ts \
i18n/qml-translation.sv.ts \ i18n/qml-translation.sv.ts \

View file

@ -29,5 +29,6 @@ http://www.gnu.org/licenses/.
<file>i18n/qml-translation.ru.qm</file> <file>i18n/qml-translation.ru.qm</file>
<file>i18n/qml-translation.ro.qm</file> <file>i18n/qml-translation.ro.qm</file>
<file>i18n/qml-translation.sv.qm</file> <file>i18n/qml-translation.sv.qm</file>
<file>i18n/qml-translation.nl_NL.qm</file>
</qresource> </qresource>
</RCC> </RCC>

File diff suppressed because it is too large Load diff

View file

@ -33,7 +33,7 @@ MenuItem {
donateurl: constant.donateUrl, donateurl: constant.donateUrl,
text: qsTr("Author: %1").arg("Hauke Schade 2012-2014") + "<br/>" text: qsTr("Author: %1").arg("Hauke Schade 2012-2014") + "<br/>"
+ qsTr("Thanks to:") + " " + qsTr("Thanks to:") + " "
+ "Francois Cattin, Jakub Kožíšek, Alberto Mardegan, gwmgdemj, equeim, Silviu Vulcan, Michael Käufl, Patrik Nilsson, Alexey, clovis86", + "Francois Cattin, Jakub Kožíšek, Alberto Mardegan, gwmgdemj, equeim, Silviu Vulcan, Michael Käufl, Patrik Nilsson, Alexey, clovis86, Heimen Stoffels",
homepageurl: constant.website, homepageurl: constant.website,
issuetrackertext: qsTr("If you encounter bugs or have feature requests, please visit the Issue Tracker"), issuetrackertext: qsTr("If you encounter bugs or have feature requests, please visit the Issue Tracker"),
issuetrackerurl: constant.issueTrackerUrl issuetrackerurl: constant.issueTrackerUrl

View file

@ -124,7 +124,7 @@ Page {
font.pixelSize: Theme.fontSizeSmall font.pixelSize: Theme.fontSizeSmall
text: "Francois Cattin, Jakub Kožíšek, Alberto Mardegan, " text: "Francois Cattin, Jakub Kožíšek, Alberto Mardegan, "
+ "gwmgdemj, equeim, Silviu Vulcan, Michael Käufl, " + "gwmgdemj, equeim, Silviu Vulcan, Michael Käufl, "
+ "Patrik Nilsson, Alexey, clovis86" + "Patrik Nilsson, Alexey, clovis86, Heimen Stoffels"
} }
// -- Feature Requests & Bugs -- // -- Feature Requests & Bugs --