Skip to content

Commit e630036

Browse files
authored
Merge pull request #21119 from tassosgeo/fix-21118
feat(i18n): add Greek locale. Closes #21118
2 parents 0c9fc77 + 3146e59 commit e630036

2 files changed

Lines changed: 154 additions & 0 deletions

File tree

src/i18n/langEL.ts

Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
20+
/**
21+
* Language: Greek.
22+
*/
23+
24+
export default {
25+
time: {
26+
month: [
27+
'Ιανουάριος', 'Φεβρουάριος', 'Μάρτιος', 'Απρίλιος', 'Μάιος', 'Ιούνιος',
28+
'Ιούλιος', 'Αύγουστος', 'Σεπτέμβριος', 'Οκτώβριος', 'Νοέμβριος', 'Δεκέμβριος'
29+
],
30+
monthAbbr: [
31+
'Ιαν', 'Φεβ', 'Μαρ', 'Απρ', 'Μαϊ', 'Ιουν',
32+
'Ιουλ', 'Αυγ', 'Σεπ', 'Οκτ', 'Νοε', 'Δεκ'
33+
],
34+
dayOfWeek: [
35+
'Κυριακή', 'Δευτέρα', 'Τρίτη', 'Τετάρτη', 'Πέμπτη', 'Παρασκευή', 'Σάββατο'
36+
],
37+
dayOfWeekAbbr: [
38+
'Κυρ', 'Δευ', 'Τρι', 'Τετ', 'Πεμ', 'Παρ', 'Σαβ'
39+
]
40+
},
41+
legend: {
42+
selector: {
43+
all: 'Όλα',
44+
inverse: 'Αντιστροφή'
45+
}
46+
},
47+
toolbox: {
48+
brush: {
49+
title: {
50+
rect: 'Επιλογή με πλαίσιο',
51+
polygon: 'Επιλογή με λάσο',
52+
lineX: 'Οριζόντια επιλογή',
53+
lineY: 'Κατακόρυφη επιλογή',
54+
keep: 'Διατήρηση επιλογών',
55+
clear: 'Καθαρισμός επιλογών'
56+
}
57+
},
58+
dataView: {
59+
title: 'Προβολή δεδομένων',
60+
lang: ['Προβολή δεδομένων', 'Κλείσιμο', 'Ανανένωση']
61+
},
62+
dataZoom: {
63+
title: {
64+
zoom: 'Μεγέθυνση',
65+
back: 'Επαναφορά μεγέθυνσης'
66+
}
67+
},
68+
magicType: {
69+
title: {
70+
line: 'Αλλαγή σε γραμμικό διάγραμμα',
71+
bar: 'Αλλαγή σε ραβδογράφημα',
72+
stack: 'Στοίβα',
73+
tiled: 'Πλακίδια'
74+
}
75+
},
76+
restore: {
77+
title: 'Επαναφορά'
78+
},
79+
saveAsImage: {
80+
title: 'Αποθήκευση ως εικόνα',
81+
lang: ['Δεξί κλικ για αποθήκευση εικόνας']
82+
}
83+
},
84+
series: {
85+
typeNames: {
86+
pie: 'Γράφημα πίτας',
87+
bar: 'Ραβδογράφημα',
88+
line: 'Γραμμικό διάγραμμα',
89+
scatter: 'Διάγραμμα διασποράς',
90+
effectScatter: 'Διάγραμμα διασποράς με κυματισμό',
91+
radar: 'Διάγραμμα ραντάρ',
92+
tree: 'Δενδρόγραμμα',
93+
treemap: 'Διάγραμμα διαμερισματοποίησης',
94+
boxplot: 'Γράφημα πλαισίου-απολήξεων',
95+
candlestick: 'Διάγραμμα κηροπηγίων',
96+
k: 'Διάγραμμα Κ',
97+
heatmap: 'Θερμικός χάρτης',
98+
map: 'Χάρτης',
99+
parallel: 'Χάρτης παράλληλων συντεταγμένων',
100+
lines: 'Γράφημα γραμμών',
101+
graph: 'Γράφος σχέσεων',
102+
sankey: 'Διάγραμμα Sankey',
103+
funnel: 'Διάγραμμα χωνιού',
104+
gauge: 'Διάγραμμα μετρητή',
105+
pictorialBar: 'Εικονογραφικό ραβδογράφημα',
106+
themeRiver: 'Γράφημα Ροής Κατηγοριών',
107+
sunburst: 'Γράφημα Ιεραρχικών Δακτυλίων',
108+
custom: 'Προσαρμοσμένο διάγραμμα',
109+
chart: 'Διάγραμμα'
110+
}
111+
},
112+
aria: {
113+
general: {
114+
withTitle: 'Αυτό είναι ένα διάγραμμα με τίτλο "{title}"',
115+
withoutTitle: 'Αυτό είναι ένα διάγραμμα'
116+
},
117+
series: {
118+
single: {
119+
prefix: '',
120+
withName: ' με τύπο {seriesType} και όνομα {seriesName}.',
121+
withoutName: ' με τύπο {seriesType}.'
122+
},
123+
multiple: {
124+
prefix: '. Αποτελείται από {seriesCount} σειρές δεδομένων.',
125+
withName: ' Η σειρά {seriesId} είναι {seriesType} με όνομα {seriesName}.',
126+
withoutName: ' Η σειρά {seriesId} είναι {seriesType}.',
127+
separator: {
128+
middle: '',
129+
end: ''
130+
}
131+
}
132+
},
133+
data: {
134+
allData: 'Τα δεδομένα είναι τα εξής:',
135+
partialData: 'Τα πρώτα {displayCnt} στοιχεία είναι: ',
136+
withName: 'τα δεδομένα για {name} είναι {value}',
137+
withoutName: '{value}',
138+
separator: {
139+
middle: ', ',
140+
end: '. '
141+
}
142+
}
143+
}
144+
};

test/lang.html

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)