This repository has been archived by the owner on Jul 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslations.js
94 lines (94 loc) · 3.5 KB
/
translations.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
const messages = {
en: {
app_title: 'SDG Data Tab',
hackathon_logo: 'Hackathon GUS Logo - SDG',
about: 'The application is a project created during the hackathon organized by Statistics Poland. Members of the EmojiNotSupportedException team:',
back: '↞ Go back',
lang_switcher: {
change_language: 'Change language',
change_language_to: 'Change language to'
},
main: {
randomize_next: 'Shuffle'
},
goals: {
goal: 'Goal',
1: 'No poverty',
2: 'Zero hunger',
3: 'Good health and well-being',
4: 'Quality education',
5: 'Gender equality',
6: 'Clean water and sanitation',
7: 'Affordable and clean energy',
8: 'Decent work and economic growth',
9: 'Industry, innovation and infrastructure',
10: 'Reduced inequalities',
11: 'Sustainable cities and communities',
12: 'Responsible consumption and production',
13: 'Climate action',
14: 'Life below water',
15: 'Life on land',
16: 'Peace, justice and strong institutions',
17: 'Partnerships for the goals',
},
chart: {
poland: 'Poland',
eu: 'European Union',
},
main_footer: {
chrome_extension: 'Chrome Homepage Extension',
facebook_share: 'Share to Facebook',
twitter_share: 'Share to Twitter',
stat_poland: 'Statistics Poland',
sdg: 'UN - Sustainable Development',
campaign_goals: '„17 goals” campaign',
about: 'About us'
}
},
pl: {
app_title: 'Zakładka Zrównoważonych Danych',
hackathon_logo: 'Logo Hackathonu GUS - SDG',
about: 'Aplikacja jest projektem stworzonym podczas hackathonu organizowanego przez Główny Urząd Statystyczny. Pomysł zespołu EmojiNotSupportedException w składzie:',
back: '↞ Powrót',
lang_switcher: {
change_language: 'Zmień język',
change_language_to: 'Zmień język na '
},
main: {
randomize_next: 'Losuj'
},
goals: {
goal: 'Cel',
1: 'Koniec z ubóstwem',
2: 'Zero głodu',
3: 'Dobre zdrowie i jakość życia',
4: 'Dobra jakość edukacji',
5: 'Równość płci',
6: 'Czysta woda i warunki sanitarne',
7: 'Czysta i dostępna energia',
8: 'Wzrost gospodarczy i godna praca',
9: 'Innowacyjność, przemysł, infrastruktura',
10: 'Mniej nierówności',
11: 'Zrównoważone miasta i społeczności',
12: 'Odpowiedzialna konsumpcja i produkcja',
13: 'Działanie w dziedzinie klimatu',
14: 'Życie pod wodą',
15: 'Życie na lądzie',
16: 'Pokój, sprawiedliwość i silne instytucje',
17: 'Partnerstwo na rzecz celów',
},
chart: {
poland: 'Polska',
eu: 'Unia Europejska',
},
main_footer: {
chrome_extension: 'Rozszerzenie do Google Chrome',
facebook_share: 'Wysharuj na Facebooka',
twitter_share: 'Wysharuj na Twittera',
stat_poland: 'GUS',
sdg: 'ONZ - Zrównoważony rozwój',
campaign_goals: 'Kampania „17 celów”',
about: 'O nas'
}
}
};