Skip to content

Commit ae66fe6

Browse files
committed
feat(i18n): add Ukrainian translation. close apache#17243
1 parent 18c3337 commit ae66fe6

File tree

1 file changed

+143
-0
lines changed

1 file changed

+143
-0
lines changed

src/i18n/langUA.ts

Lines changed: 143 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
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: Ukrainian.
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: 'Діаграма Санкей',
103+
funnel: 'Воронкообразна діаграма',
104+
gauge: 'Шкала',
105+
pictorialBar: 'Стовпчик-картинка',
106+
themeRiver: 'Тематична ріка',
107+
sunburst: 'Сонячне проміння'
108+
}
109+
},
110+
aria: {
111+
general: {
112+
withTitle: 'Це графік, що відрображує "{title}"',
113+
withoutTitle: 'Це графік'
114+
},
115+
series: {
116+
single: {
117+
prefix: '',
118+
withName: ' з типом {seriesType} та іменем {seriesName}.',
119+
withoutName: ' з типом {seriesType}.'
120+
},
121+
multiple: {
122+
prefix: '. Він складається з {seriesCount} серій.',
123+
withName:
124+
' Серія {seriesId} має тип {seriesType} та відображає {seriesName}.',
125+
withoutName: ' Серія {seriesId} має тип {seriesType}.',
126+
separator: {
127+
middle: '',
128+
end: ''
129+
}
130+
}
131+
},
132+
data: {
133+
allData: 'Дані такі: ',
134+
partialData: 'Перші {displayCnt} елементів: ',
135+
withName: 'значення для {name} — {value}',
136+
withoutName: '{value}',
137+
separator: {
138+
middle: ', ',
139+
end: '. '
140+
}
141+
}
142+
}
143+
};

0 commit comments

Comments
 (0)