Skip to content

Commit 58595b6

Browse files
authored
Merge pull request #404 from iMicknl/dutch-translation
Add Dutch locale (nl-nl)
2 parents 345958d + a8941c2 commit 58595b6

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/Strings.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,19 @@ const localizedStrings: LocalizedStrings = {
6969
timeSent: " в %1",
7070
consolePlaceholder: "Введите ваше сообщение..."
7171
},
72+
'nl-nl': {
73+
title: "Chat",
74+
send: "Verstuur",
75+
unknownFile: "[Bestand van het type '%1']",
76+
unknownCard: "[Onbekende kaart '%1']",
77+
receiptTax: "BTW",
78+
receiptTotal: "Totaal",
79+
messageRetry: "opnieuw",
80+
messageFailed: "versturen mislukt",
81+
messageSending: "versturen",
82+
timeSent: " om %1",
83+
consolePlaceholder: "Typ je bericht..."
84+
},
7285
'lv-lv': {
7386
title: "Tērzēšana",
7487
send: "Sūtīt",
@@ -110,6 +123,8 @@ export const strings = (locale: string) => {
110123
locale = 'pl-pl';
111124
else if (locale.startsWith('ru'))
112125
locale = 'ru-ru';
126+
else if (locale.startsWith('nl'))
127+
locale = 'nl-nl';
113128
else if (locale.startsWith('lv'))
114129
locale = 'lv-lv';
115130
else if (locale.startsWith('pt'))

0 commit comments

Comments
 (0)