Skip to content

Commit d619ad0

Browse files
committed
Merge pull request #4636 from sMoKeSz/master
Romanian language
2 parents 2b1e9a3 + 4fb71c9 commit d619ad0

File tree

1 file changed

+106
-0
lines changed

1 file changed

+106
-0
lines changed

src/js/i18n/ro.js

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
(function () {
2+
angular.module('ui.grid').config(['$provide', function($provide) {
3+
$provide.decorator('i18nService', ['$delegate', function($delegate) {
4+
$delegate.add('ro', {
5+
headerCell: {
6+
aria: {
7+
defaultFilterLabel: 'Filtru pentru coloana',
8+
removeFilter: 'Sterge filtru',
9+
columnMenuButtonLabel: 'Column Menu'
10+
},
11+
priority: 'Prioritate:',
12+
filterLabel: "Filtru pentru coloana:"
13+
},
14+
aggregate: {
15+
label: 'Elemente'
16+
},
17+
groupPanel: {
18+
description: 'Trage un cap de coloana aici pentru a grupa elementele dupa coloana respectiva'
19+
},
20+
search: {
21+
placeholder: 'Cauta...',
22+
showingItems: 'Arata elementele:',
23+
selectedItems: 'Elementele selectate:',
24+
totalItems: 'Total elemente:',
25+
size: 'Marime pagina:',
26+
first: 'Prima pagina',
27+
next: 'Pagina urmatoare',
28+
previous: 'Pagina anterioara',
29+
last: 'Ultima pagina'
30+
},
31+
menu: {
32+
text: 'Alege coloane:'
33+
},
34+
sort: {
35+
ascending: 'Ordoneaza crescator',
36+
descending: 'Ordoneaza descrescator',
37+
none: 'Fara ordonare',
38+
remove: 'Sterge ordonarea'
39+
},
40+
column: {
41+
hide: 'Ascunde coloana'
42+
},
43+
aggregation: {
44+
count: 'total linii: ',
45+
sum: 'total: ',
46+
avg: 'medie: ',
47+
min: 'min: ',
48+
max: 'max: '
49+
},
50+
pinning: {
51+
pinLeft: 'Pin la stanga',
52+
pinRight: 'Pin la dreapta',
53+
unpin: 'Sterge pinul'
54+
},
55+
columnMenu: {
56+
close: 'Inchide'
57+
},
58+
gridMenu: {
59+
aria: {
60+
buttonLabel: 'Grid Menu'
61+
},
62+
columns: 'Coloane:',
63+
importerTitle: 'Incarca fisier',
64+
exporterAllAsCsv: 'Exporta toate datele ca csv',
65+
exporterVisibleAsCsv: 'Exporta datele vizibile ca csv',
66+
exporterSelectedAsCsv: 'Exporta datele selectate ca csv',
67+
exporterAllAsPdf: 'Exporta toate datele ca pdf',
68+
exporterVisibleAsPdf: 'Exporta datele vizibile ca pdf',
69+
exporterSelectedAsPdf: 'Exporta datele selectate ca csv pdf',
70+
clearAllFilters: 'Sterge toate filtrele'
71+
},
72+
importer: {
73+
noHeaders: 'Numele coloanelor nu a putut fi incarcat, acest fisier are un header?',
74+
noObjects: 'Datele nu au putut fi incarcate, exista date in fisier in afara numelor de coloane?',
75+
invalidCsv: 'Fisierul nu a putut fi procesat, ati incarcat un CSV valid ?',
76+
invalidJson: 'Fisierul nu a putut fi procesat, ati incarcat un Json valid?',
77+
jsonNotArray: 'Json-ul incarcat trebuie sa contina un array, inchidere.'
78+
},
79+
pagination: {
80+
aria: {
81+
pageToFirst: 'Prima pagina',
82+
pageBack: 'O pagina inapoi',
83+
pageSelected: 'Pagina selectata',
84+
pageForward: 'O pagina inainte',
85+
pageToLast: 'Ultima pagina'
86+
},
87+
sizes: 'Elemente per pagina',
88+
totalItems: 'elemente',
89+
through: 'prin',
90+
of: 'of'
91+
},
92+
grouping: {
93+
group: 'Grupeaza',
94+
ungroup: 'Opreste gruparea',
95+
aggregate_count: 'Agg: Count',
96+
aggregate_sum: 'Agg: Sum',
97+
aggregate_max: 'Agg: Max',
98+
aggregate_min: 'Agg: Min',
99+
aggregate_avg: 'Agg: Avg',
100+
aggregate_remove: 'Agg: Remove'
101+
}
102+
});
103+
return $delegate;
104+
}]);
105+
}]);
106+
})();

0 commit comments

Comments
 (0)