Commit 13b2bfe919726294218c2ea09b4c86233f12e4dc
Merge branch '2.0' of https://github.com/iview/iview into 2.0
Showing
3 changed files
with
119 additions
and
5 deletions
Show diff stats
README.md
@@ -30,7 +30,7 @@ iView | @@ -30,7 +30,7 @@ iView | ||
30 | </a> | 30 | </a> |
31 | </td> | 31 | </td> |
32 | <td align="center" valign="middle"> | 32 | <td align="center" valign="middle"> |
33 | - <a href="https://studio.qcloud.coding.net/campaign/favorite-plugins/index?utm_source=iview" target="_blank"> | 33 | + <a href="https://e.coding.net/?utm_source=iview" target="_blank"> |
34 | <img width="300" src="https://file.iviewui.com/asd/asd-coding3.png"> | 34 | <img width="300" src="https://file.iviewui.com/asd/asd-coding3.png"> |
35 | </a> | 35 | </a> |
36 | </td> | 36 | </td> |
1 | +import setLang from '../lang'; | ||
2 | + | ||
3 | +const lang = { | ||
4 | + i: { | ||
5 | + locale: 'pl-PL', | ||
6 | + select: { | ||
7 | + placeholder: 'Wybierz', | ||
8 | + noMatch: 'Brak pasujących wyników', | ||
9 | + loading: 'Ładowanie' | ||
10 | + }, | ||
11 | + table: { | ||
12 | + noDataText: 'Brak danych', | ||
13 | + noFilteredDataText: 'Brak danych', | ||
14 | + confirmFilter: 'Potwierdź', | ||
15 | + resetFilter: 'Resetuj', | ||
16 | + clearFilter: 'Wszystkie' | ||
17 | + }, | ||
18 | + datepicker: { | ||
19 | + selectDate: 'Wybierz datę', | ||
20 | + selectTime: 'Wybierz godzinę', | ||
21 | + startTime: 'Godzina początkowa', | ||
22 | + endTime: 'Godzina końcowa', | ||
23 | + clear: 'Wyczyść', | ||
24 | + ok: 'OK', | ||
25 | + datePanelLabel: '[mmmm] [yyyy]', | ||
26 | + month: 'Miesiąc', | ||
27 | + month1: 'Styczeń', | ||
28 | + month2: 'Luty', | ||
29 | + month3: 'Marzec', | ||
30 | + month4: 'Kwiecień', | ||
31 | + month5: 'Maj', | ||
32 | + month6: 'Czerwiec', | ||
33 | + month7: 'Lipiec', | ||
34 | + month8: 'Sierpień', | ||
35 | + month9: 'Wrzesień', | ||
36 | + month10: 'Październik', | ||
37 | + month11: 'Listopad', | ||
38 | + month12: 'Grudzień', | ||
39 | + year: 'Rok', | ||
40 | + weekStartDay: '1', | ||
41 | + weeks: { | ||
42 | + sun: 'Ndz', | ||
43 | + mon: 'Pon', | ||
44 | + tue: 'Wto', | ||
45 | + wed: 'Śro', | ||
46 | + thu: 'Czw', | ||
47 | + fri: 'Pią', | ||
48 | + sat: 'Sob' | ||
49 | + }, | ||
50 | + months: { | ||
51 | + m1: 'Sty', | ||
52 | + m2: 'Lut', | ||
53 | + m3: 'Mar', | ||
54 | + m4: 'Kwi', | ||
55 | + m5: 'Maj', | ||
56 | + m6: 'Cze', | ||
57 | + m7: 'Lip', | ||
58 | + m8: 'Sie', | ||
59 | + m9: 'Wrz', | ||
60 | + m10: 'Paź', | ||
61 | + m11: 'Lis', | ||
62 | + m12: 'Gru' | ||
63 | + } | ||
64 | + }, | ||
65 | + transfer: { | ||
66 | + titles: { | ||
67 | + source: 'Źródłowy', | ||
68 | + target: 'Docelowy' | ||
69 | + }, | ||
70 | + filterPlaceholder: 'Szukaj tutaj', | ||
71 | + notFoundText: 'Nie znaleziono' | ||
72 | + }, | ||
73 | + modal: { | ||
74 | + okText: 'OK', | ||
75 | + cancelText: 'Anuluj' | ||
76 | + }, | ||
77 | + poptip: { | ||
78 | + okText: 'OK', | ||
79 | + cancelText: 'Anuluj' | ||
80 | + }, | ||
81 | + page: { | ||
82 | + prev: 'Poprzednia Strona', | ||
83 | + next: 'Następna Strona', | ||
84 | + total: 'Łącznie', | ||
85 | + item: 'element', | ||
86 | + items: 'elementów', | ||
87 | + prev5: 'Poprzednie 5 Stron', | ||
88 | + next5: 'Następne 5 Stron', | ||
89 | + page: '/stronę', | ||
90 | + goto: 'Idź do', | ||
91 | + p: '' | ||
92 | + }, | ||
93 | + rate: { | ||
94 | + star: 'Gwiazdka', | ||
95 | + stars: 'Gwiazdek' | ||
96 | + }, | ||
97 | + time: { | ||
98 | + before: ' temu', | ||
99 | + after: ' po', | ||
100 | + just: 'dopiero co', | ||
101 | + seconds: ' sekund', | ||
102 | + minutes: ' minut', | ||
103 | + hours: ' godzin', | ||
104 | + days: ' dni' | ||
105 | + }, | ||
106 | + tree: { | ||
107 | + emptyText: 'Brak danych' | ||
108 | + } | ||
109 | + } | ||
110 | +}; | ||
111 | + | ||
112 | +setLang(lang); | ||
113 | + | ||
114 | +export default lang; | ||
0 | \ No newline at end of file | 115 | \ No newline at end of file |
src/locale/lang/ru-RU.js
@@ -68,7 +68,7 @@ const lang = { | @@ -68,7 +68,7 @@ const lang = { | ||
68 | target: 'Цель' | 68 | target: 'Цель' |
69 | }, | 69 | }, |
70 | filterPlaceholder: 'Искать здесь', | 70 | filterPlaceholder: 'Искать здесь', |
71 | - notFoundText: 'Не Найдено' | 71 | + notFoundText: 'Не найдено' |
72 | }, | 72 | }, |
73 | modal: { | 73 | modal: { |
74 | okText: 'OK', | 74 | okText: 'OK', |
@@ -86,8 +86,8 @@ const lang = { | @@ -86,8 +86,8 @@ const lang = { | ||
86 | items: 'пункты', | 86 | items: 'пункты', |
87 | prev5: 'Пред. 5 страниц', | 87 | prev5: 'Пред. 5 страниц', |
88 | next5: 'След. 5 страниц', | 88 | next5: 'След. 5 страниц', |
89 | - page: '/page', | ||
90 | - goto: 'Идти к', | 89 | + page: ' на странице', |
90 | + goto: 'Перейти к', | ||
91 | p: '' | 91 | p: '' |
92 | }, | 92 | }, |
93 | rate: { | 93 | rate: { |
@@ -102,4 +102,4 @@ const lang = { | @@ -102,4 +102,4 @@ const lang = { | ||
102 | 102 | ||
103 | setLang(lang); | 103 | setLang(lang); |
104 | 104 | ||
105 | -export default lang; | ||
106 | \ No newline at end of file | 105 | \ No newline at end of file |
106 | +export default lang; |