Skip to content

Commit 75b919b

Browse files
author
Przemysław Lib
committed
feat (i18n): Polish translation.
Polish translation based off english translation.
1 parent d619ad0 commit 75b919b

File tree

1 file changed

+109
-0
lines changed

1 file changed

+109
-0
lines changed

src/js/i18n/pl.js

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
/**
2+
* Created by zuk38 & przemoli on 9/11/15.
3+
*/
4+
(function () {
5+
angular.module('ui.grid').config(['$provide', function($provide) {
6+
$provide.decorator('i18nService', ['$delegate', function($delegate) {
7+
$delegate.add('pl', {
8+
headerCell: {
9+
aria: {
10+
defaultFilterLabel: 'Filter dla kolumny',
11+
removeFilter: 'Usuń filter',
12+
columnMenuButtonLabel: 'Menu kolumny'
13+
},
14+
priority: 'Prioritet:',
15+
filterLabel: "Filtr dla kolumny: "
16+
},
17+
aggregate: {
18+
label: 'pozycji'
19+
},
20+
groupPanel: {
21+
description: 'Przeciągnij nagłówek kolumny tutaj, aby pogrupować według niej.'
22+
},
23+
search: {
24+
placeholder: 'Szukaj...',
25+
showingItems: 'Widoczne pozycje:',
26+
selectedItems: 'Zaznaczone pozycje:',
27+
totalItems: 'Wszystkich pozycji:',
28+
size: 'Rozmiar strony:',
29+
first: 'Pierwsza strona',
30+
next: 'Następna strona',
31+
previous: 'Poprzednia strona',
32+
last: 'Ostatnia strona'
33+
},
34+
menu: {
35+
text: 'Wybierz kolumny:'
36+
},
37+
sort: {
38+
ascending: 'Sortuj rosnąco',
39+
descending: 'Sortuj malejąco',
40+
none: 'Brak sortowania',
41+
remove: 'Wyłącz sortowanie'
42+
},
43+
column: {
44+
hide: 'Ukryj kolumne'
45+
},
46+
aggregation: {
47+
count: 'Razem pozycji: ',
48+
sum: 'Razem: ',
49+
avg: 'Średnia: ',
50+
min: 'Min: ',
51+
max: 'Max: '
52+
},
53+
pinning: {
54+
pinLeft: 'Przypnij do lewej',
55+
pinRight: 'Przypnij do prawej',
56+
unpin: 'Odepnij'
57+
},
58+
columnMenu: {
59+
close: 'Zamknij'
60+
},
61+
gridMenu: {
62+
aria: {
63+
buttonLabel: 'Menu Grida'
64+
},
65+
columns: 'Kolumny:',
66+
importerTitle: 'Importuj plik',
67+
exporterAllAsCsv: 'Eksportuj wszystkie dane do csv',
68+
exporterVisibleAsCsv: 'Eksportuj widoczne dane do csv',
69+
exporterSelectedAsCsv: 'Eksportuj zaznaczone dane do csv',
70+
exporterAllAsPdf: 'Eksportuj wszystkie dane do pdf',
71+
exporterVisibleAsPdf: 'Eksportuj widoczne dane do pdf',
72+
exporterSelectedAsPdf: 'Eksportuj zaznaczone dane do pdf',
73+
clearAllFilters: 'Wyczyść filtry'
74+
},
75+
importer: {
76+
noHeaders: 'Nie udało się wczytać nazw kolumn. Czy plik posiada nagłówek?',
77+
noObjects: 'Nie udalo się wczytać pozycji. Czy plik zawiera dane??',
78+
invalidCsv: 'Nie udało się przetworzyć pliku, jest to prawidlowy plik CSV??',
79+
invalidJson: 'Nie udało się przetworzyć pliku, jest to prawidlowy plik Json?',
80+
jsonNotArray: 'Importowany plik json musi zawierać tablicę, importowanie przerwane.'
81+
},
82+
pagination: {
83+
aria: {
84+
pageToFirst: 'Pierwsza strona',
85+
pageBack: 'Poprzednia strona',
86+
pageSelected: 'Wybrana strona',
87+
pageForward: 'Następna strona',
88+
pageToLast: 'Ostatnia strona'
89+
},
90+
sizes: 'pozycji na stronę',
91+
totalItems: 'pozycji',
92+
through: 'do',
93+
of: 'z'
94+
},
95+
grouping: {
96+
group: 'Grupuj',
97+
ungroup: 'Rozgrupuj',
98+
aggregate_count: 'Zbiorczo: Razem',
99+
aggregate_sum: 'Zbiorczo: Suma',
100+
aggregate_max: 'Zbiorczo: Max',
101+
aggregate_min: 'Zbiorczo: Min',
102+
aggregate_avg: 'Zbiorczo: Średnia',
103+
aggregate_remove: 'Zbiorczo: Usuń'
104+
}
105+
});
106+
return $delegate;
107+
}]);
108+
}]);
109+
})();

0 commit comments

Comments
 (0)