File tree Expand file tree Collapse file tree 4 files changed +33
-1
lines changed Expand file tree Collapse file tree 4 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " notificationapi-js-client-sdk" ,
3
- "version" : " 4.6.3 " ,
3
+ "version" : " 4.7.0 " ,
4
4
"description" : " NotificationAPI client-side library for JavaScript" ,
5
5
"keywords" : [
6
6
" notificationapi" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "no_more_notifications" : " Geen notificaties meer om in te laden" ,
3
+ "notifications" : " Notificaties" ,
4
+ "notification_settings" : " Notificatie instellingen" ,
5
+ "mark_all_as_read" : " Markeer alles als gelezen" ,
6
+ "no_notifications" : " Je hebt geen notificaties!" ,
7
+ "notification_preferences" : " Notificatie voorkeuren" ,
8
+ "click_here" : " Klik hier" ,
9
+ "necessary_permissions_push_notifications" : " Om ons de nodige browser rechten te geven om push notificaties te ontvangen." ,
10
+ "do_you_want_to_receive_push_notifications" : " Wil je push notificaties ontvangen?" ,
11
+ "yes" : " Ja" ,
12
+ "no_thanks" : " Nee, bedankt" ,
13
+ "expand" : " uitklappen" ,
14
+ "there_are_no_notifications_to_configure" : " Er zijn geen notificaties om in te stellen" ,
15
+ "mark_as_read" : " Markeer als gelezen" ,
16
+ "ago" : " geleden" ,
17
+ "year" : " jaar" ,
18
+ "years" : " jaren" ,
19
+ "month" : " maand" ,
20
+ "months" : " maanden" ,
21
+ "day" : " dag" ,
22
+ "days" : " dagen" ,
23
+ "hour" : " uur" ,
24
+ "hours" : " uren" ,
25
+ "minute" : " minuut" ,
26
+ "minutes" : " minuten" ,
27
+ "just_now" : " zojuist"
28
+ }
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ import enUS from './assets/i18n/en-US.json';
26
26
import esES from './assets/i18n/es-ES.json' ;
27
27
import frFR from './assets/i18n/fr-FR.json' ;
28
28
import itIT from './assets/i18n/it-IT.json' ;
29
+ import nlNL from './assets/i18n/nl-NL.json' ;
29
30
import ptBR from './assets/i18n/pt-BR.json' ;
30
31
31
32
const defaultRestAPIUrl = 'https://api.notificationapi.com' ;
@@ -36,6 +37,7 @@ const supportedLanguages: SupportedLanguages[] = [
36
37
'es-ES' ,
37
38
'fr-FR' ,
38
39
'it-IT' ,
40
+ 'nl-NL' ,
39
41
'pt-BR'
40
42
] ;
41
43
const supportedLanguagesFile : {
@@ -45,6 +47,7 @@ const supportedLanguagesFile: {
45
47
'es-ES' : esES ,
46
48
'fr-FR' : frFR ,
47
49
'it-IT' : itIT ,
50
+ 'nl-NL' : nlNL ,
48
51
'pt-BR' : ptBR
49
52
} ;
50
53
const PAGE_SIZE = 5 ;
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ export type SupportedLanguages =
77
77
| 'es-ES'
78
78
| 'fr-FR'
79
79
| 'it-IT'
80
+ | 'nl-NL'
80
81
| 'pt-BR' ;
81
82
82
83
export type TranslationObject = {
You can’t perform that action at this time.
0 commit comments