-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathui-grid.language.all.js
3214 lines (3181 loc) · 115 KB
/
ui-grid.language.all.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*!
* ui-grid - v4.12.7 - 2024-04-12
* http://ui-grid.info/
* Copyright (c) 2024 ; License: MIT
*/
(function() {
angular.module('ui.grid').config(['$provide', function($provide) {
$provide.decorator('i18nService', ['$delegate', function($delegate) {
$delegate.add('ar', {
"headerCell": {
"aria": {
"defaultFilterLabel": "التصفيه بالعمود",
"removeFilter": "محو التصفيه",
"columnMenuButtonLabel": "قاءمه الاعمده"
},
"priority": "أولويه : ",
"filterLabel": "تصفيه بالاعمده :"
},
"aggregate": {
"label": "العناصر"
},
"groupPanel": {
"description": "اسحب رأس العمود هنا وأسقطه لإنشاء مجموعه"
},
"search": {
"placeholder": "بحث ...",
"showingItems": "العناصر الظاهره :",
"selectedItems": "العناصر المحدده :",
"totalItems": "عدد العناصر :",
"size": "حجم الصفحه :",
"first": "اول صفحه",
"next": "الصفحه التاليه",
"previous": "الصفحه الصابقه",
"last": "الصفحه الاخيره"
},
"menu": {
"text": "اختيار العمود :"
},
"sort": {
"ascending": "ترتيب تصاعدى",
"descending": "ترتيب تنازلى",
"none": "عدم التحديد",
"remove": "حذف الترتيب"
},
"column": {
"hide": "إخفاء عمود"
},
"aggregation": {
"count": "عدد الصفوف: ",
"sum": "جمع: ",
"avg": "المتوسط الحسابى: ",
"min": "الادنى: ",
"max": "الاقصى: "
},
"pinning": {
"pinLeft": "تثبيت لليسار",
"pinRight": "تثبيت لليمين",
"unpin": "فك التثبيت"
},
"columnMenu": {
"close": "غلق"
},
"gridMenu": {
"aria": {
"buttonLabel": "قائمه الجدول"
},
"columns": "الاعمده:",
"importerTitle": "إدخال ملف",
"exporterAllAsCsv": "إخراج كل البيانات ك(csv)",
"exporterVisibleAsCsv": "إخراج كل البيانات الواضحه ك (csv)",
"exporterSelectedAsCsv": "إخراج كل البيانات المحدده ك (csv)",
"exporterAllAsPdf": "إخراج كل البيانات ك(pdf)",
"exporterVisibleAsPdf": "إخراج كل البيانات الواضحه ك (pdf)",
"exporterSelectedAsPdf": "إخراج كل البيانات المحدده ك (pdf)",
"clearAllFilters": "محو كل الترشيح"
},
"importer": {
"noHeaders": "اسماء هؤلاء الاعمده غير واضحه، هل يوجد رأس للملف؟",
"noObjects": "Objects were not able to be derived, was there data in the file other than headers?",
"invalidCsv": "الملف غير قادر على الاتمام ، هل ال (CSV) صحيح؟",
"invalidJson": "الملف غير قادر على الاتمام ، هل ال (JSON) صحيح؟",
"jsonNotArray": "Imported json file must contain an array, aborting."
},
"pagination": {
"aria": {
"pageToFirst": "الصفحه الاولى",
"pageBack": "الصفه السابقه",
"pageSelected": "الصفحه المحدده",
"pageForward": "الصفحه التاليه",
"pageToLast": "الصفحه الاخيره"
},
"sizes": "عدد العناصر فى الصفحه",
"totalItems": "عناصر",
"through": "إلى",
"of": "من"
},
"grouping": {
"group": "جمع",
"ungroup": "فك الجمع",
"aggregate_count": "جمله : العدد",
"aggregate_sum": "جمله : الحاصل",
"aggregate_max": "جمله : الاقصى",
"aggregate_min": "جمله : الاقل",
"aggregate_avg": "جمله :المتوسط ",
"aggregate_remove": "جمله : حذف"
},
"validate": {
"error": "خطأ :",
"minLength": "القيمه لابد ان لا تقل عن THRESHOLD حرف.",
"maxLength": "القيمه لابد ان لا تزيد عن THRESHOLD حرف.",
"required": "مطلوب قيمه"
}
});
return $delegate;
}]);
}]);
})();
(function () {
angular.module('ui.grid').config(['$provide', function($provide) {
$provide.decorator('i18nService', ['$delegate', function($delegate) {
$delegate.add('bg', {
headerCell: {
aria: {
defaultFilterLabel: 'Филттър за колоната',
removeFilter: 'Премахни филтър',
columnMenuButtonLabel: 'Меню на колоната'
},
priority: 'Приоритет:',
filterLabel: "Филтър за колоната: "
},
aggregate: {
label: 'обекти'
},
search: {
placeholder: 'Търсене...',
showingItems: 'Показани обекти:',
selectedItems: 'избрани обекти:',
totalItems: 'Общо:',
size: 'Размер на страницата:',
first: 'Първа страница',
next: 'Следваща страница',
previous: 'Предишна страница',
last: 'Последна страница'
},
menu: {
text: 'Избери колони:'
},
sort: {
ascending: 'Сортиране по възходящ ред',
descending: 'Сортиране по низходящ ред',
none: 'Без сортиране',
remove: 'Премахни сортирането'
},
column: {
hide: 'Скрий колоната'
},
aggregation: {
count: 'Общо редове: ',
sum: 'общо: ',
avg: 'средно: ',
min: 'най-малко: ',
max: 'най-много: '
},
pinning: {
pinLeft: 'Прикрепи вляво',
pinRight: 'Прикрепи вдясно',
unpin: 'Премахване'
},
columnMenu: {
close: 'Затвори'
},
gridMenu: {
aria: {
buttonLabel: 'Меню на таблицата'
},
columns: 'Колони:',
importerTitle: 'Импортиране на файл',
exporterAllAsCsv: 'Експортиране на данните като csv',
exporterVisibleAsCsv: 'Експортиране на видимите данни като csv',
exporterSelectedAsCsv: 'Експортиране на избраните данни като csv',
exporterAllAsPdf: 'Експортиране на данните като pdf',
exporterVisibleAsPdf: 'Експортиране на видимите данни като pdf',
exporterSelectedAsPdf: 'Експортиране на избраните данни като pdf',
clearAllFilters: 'Премахни всички филтри'
},
importer: {
noHeaders: 'Имената на колоните не успяха да бъдат извлечени, файлът има ли хедър?',
noObjects: 'Обектите не успяха да бъдат извлечени, файлът съдържа ли данни, различни от хедър?',
invalidCsv: 'Файлът не може да бъде обработеб, уверете се, че е валиден CSV файл',
invalidJson: 'Файлът не може да бъде обработеб, уверете се, че е валиден JSON файл',
jsonNotArray: 'Импортираният JSON файл трябва да съдържа масив, прекратяване.'
},
pagination: {
aria: {
pageToFirst: 'Към първа страница',
pageBack: 'Страница назад',
pageSelected: 'Избрана страница',
pageForward: 'Страница напред',
pageToLast: 'Към последна страница'
},
sizes: 'обекта на страница',
totalItems: 'обекта',
through: 'до',
of: 'от'
},
grouping: {
group: 'Групиране',
ungroup: 'Премахване на групирането',
aggregate_count: 'Сбор: Брой',
aggregate_sum: 'Сбор: Сума',
aggregate_max: 'Сбор: Максимум',
aggregate_min: 'Сбор: Минимум',
aggregate_avg: 'Сбор: Средно',
aggregate_remove: 'Сбор: Премахване'
},
validate: {
error: 'Грешка:',
minLength: 'Стойността трябва да съдържа поне THRESHOLD символа.',
maxLength: 'Стойността не трябва да съдържа повече от THRESHOLD символа.',
required: 'Необходима е стойност.'
}
});
return $delegate;
}]);
}]);
})();
(function () {
angular.module('ui.grid').config(['$provide', function($provide) {
$provide.decorator('i18nService', ['$delegate', function($delegate) {
var lang = {
aggregate: {
label: 'položky'
},
groupPanel: {
description: 'Přesuňte záhlaví zde pro vytvoření skupiny dle sloupce.'
},
search: {
placeholder: 'Hledat...',
showingItems: 'Zobrazuji položky:',
selectedItems: 'Vybrané položky:',
totalItems: 'Celkem položek:',
size: 'Velikost strany:',
first: 'První strana',
next: 'Další strana',
previous: 'Předchozí strana',
last: 'Poslední strana'
},
menu: {
text: 'Vyberte sloupec:'
},
sort: {
ascending: 'Seřadit od A-Z',
descending: 'Seřadit od Z-A',
remove: 'Odebrat seřazení'
},
column: {
hide: 'Schovat sloupec'
},
aggregation: {
count: 'celkem řádků: ',
sum: 'celkem: ',
avg: 'avg: ',
min: 'min.: ',
max: 'max.: '
},
pinning: {
pinLeft: 'Zamknout vlevo',
pinRight: 'Zamknout vpravo',
unpin: 'Odemknout'
},
gridMenu: {
columns: 'Sloupce:',
importerTitle: 'Importovat soubor',
exporterAllAsCsv: 'Exportovat všechna data do csv',
exporterVisibleAsCsv: 'Exportovat viditelná data do csv',
exporterSelectedAsCsv: 'Exportovat vybraná data do csv',
exporterAllAsPdf: 'Exportovat všechna data do pdf',
exporterVisibleAsPdf: 'Exportovat viditelná data do pdf',
exporterSelectedAsPdf: 'Exportovat vybraná data do pdf',
exporterAllAsExcel: 'Exportovat všechna data do excel',
exporterVisibleAsExcel: 'Exportovat viditelná data do excel',
exporterSelectedAsExcel: 'Exportovat vybraná data do excel',
clearAllFilters: 'Odstranit všechny filtry'
},
importer: {
noHeaders: 'Názvy sloupců se nepodařilo získat, obsahuje soubor záhlaví?',
noObjects: 'Data se nepodařilo zpracovat, obsahuje soubor řádky mimo záhlaví?',
invalidCsv: 'Soubor nelze zpracovat, jedná se o CSV?',
invalidJson: 'Soubor nelze zpracovat, je to JSON?',
jsonNotArray: 'Soubor musí obsahovat json. Ukončuji..'
},
pagination: {
sizes: 'položek na stránku',
totalItems: 'položek'
},
grouping: {
group: 'Seskupit',
ungroup: 'Odebrat seskupení',
aggregate_count: 'Agregace: Count',
aggregate_sum: 'Agregace: Sum',
aggregate_max: 'Agregace: Max',
aggregate_min: 'Agregace: Min',
aggregate_avg: 'Agregace: Avg',
aggregate_remove: 'Agregace: Odebrat'
}
};
// support varianty of different czech keys.
$delegate.add('cs', lang);
$delegate.add('cz', lang);
$delegate.add('cs-cz', lang);
$delegate.add('cs-CZ', lang);
return $delegate;
}]);
}]);
})();
(function() {
angular.module('ui.grid').config(['$provide', function($provide) {
$provide.decorator('i18nService', ['$delegate', function($delegate) {
$delegate.add('da', {
aggregate: {
label: 'artikler'
},
groupPanel: {
description: 'Grupér rækker udfra en kolonne ved at trække dens overskift hertil.'
},
search: {
placeholder: 'Søg...',
showingItems: 'Viste rækker:',
selectedItems: 'Valgte rækker:',
totalItems: 'Rækker totalt:',
size: 'Side størrelse:',
first: 'Første side',
next: 'Næste side',
previous: 'Forrige side',
last: 'Sidste side'
},
menu: {
text: 'Vælg kolonner:'
},
sort: {
ascending: 'Sorter stigende',
descending: 'Sorter faldende',
none: 'Sorter ingen',
remove: 'Fjern sortering'
},
column: {
hide: 'Skjul kolonne'
},
aggregation: {
count: 'antal rækker: ',
sum: 'sum: ',
avg: 'gns: ',
min: 'min: ',
max: 'max: '
},
pinning: {
pinLeft: 'Fastgør til venstre',
pinRight: 'Fastgør til højre',
unpin: 'Frigør'
},
gridMenu: {
columns: 'Kolonner:',
importerTitle: 'Importer fil',
exporterAllAsCsv: 'Eksporter alle data som csv',
exporterVisibleAsCsv: 'Eksporter synlige data som csv',
exporterSelectedAsCsv: 'Eksporter markerede data som csv',
exporterAllAsPdf: 'Eksporter alle data som pdf',
exporterVisibleAsPdf: 'Eksporter synlige data som pdf',
exporterSelectedAsPdf: 'Eksporter markerede data som pdf',
exporterAllAsExcel: 'Eksporter alle data som excel',
exporterVisibleAsExcel: 'Eksporter synlige data som excel',
exporterSelectedAsExcel: 'Eksporter markerede data som excel',
clearAllFilters: 'Clear all filters'
},
importer: {
noHeaders: 'Column names were unable to be derived, does the file have a header?',
noObjects: 'Objects were not able to be derived, was there data in the file other than headers?',
invalidCsv: 'File was unable to be processed, is it valid CSV?',
invalidJson: 'File was unable to be processed, is it valid Json?',
jsonNotArray: 'Imported json file must contain an array, aborting.'
},
pagination: {
aria: {
pageToFirst: 'Gå til første',
pageBack: 'Gå tilbage',
pageSelected: 'Valgte side',
pageForward: 'Gå frem',
pageToLast: 'Gå til sidste'
},
sizes: 'genstande per side',
totalItems: 'genstande',
through: 'gennem',
of: 'af'
}
});
return $delegate;
}]);
}]);
})();
(function () {
angular.module('ui.grid').config(['$provide', function ($provide) {
$provide.decorator('i18nService', ['$delegate', function ($delegate) {
$delegate.add('de', {
headerCell: {
aria: {
defaultFilterLabel: 'Filter für Spalte',
removeFilter: 'Filter löschen',
columnMenuButtonLabel: 'Spaltenmenü',
column: 'Spalte'
},
priority: 'Priorität:',
filterLabel: "Filter für Spalte: "
},
aggregate: {
label: 'Eintrag'
},
groupPanel: {
description: 'Ziehen Sie eine Spaltenüberschrift hierhin, um nach dieser Spalte zu gruppieren.'
},
search: {
aria: {
selected: 'Zeile markiert',
notSelected: 'Zeile nicht markiert'
},
placeholder: 'Suche...',
showingItems: 'Zeige Einträge:',
selectedItems: 'Ausgewählte Einträge:',
totalItems: 'Einträge gesamt:',
size: 'Einträge pro Seite:',
first: 'Erste Seite',
next: 'Nächste Seite',
previous: 'Vorherige Seite',
last: 'Letzte Seite'
},
selection: {
aria: {
row: 'Zeile'
},
selectAll: 'Alle auswählen',
displayName: 'Zeilenauswahlkasten'
},
menu: {
text: 'Spalten auswählen:'
},
sort: {
ascending: 'aufsteigend sortieren',
descending: 'absteigend sortieren',
none: 'keine Sortierung',
remove: 'Sortierung zurücksetzen'
},
column: {
hide: 'Spalte ausblenden'
},
aggregation: {
count: 'Zeilen insgesamt: ',
sum: 'gesamt: ',
avg: 'Durchschnitt: ',
min: 'min: ',
max: 'max: '
},
pinning: {
pinLeft: 'Links anheften',
pinRight: 'Rechts anheften',
unpin: 'Lösen'
},
columnMenu: {
close: 'Schließen'
},
gridMenu: {
aria: {
buttonLabel: 'Tabellenmenü'
},
columns: 'Spalten:',
importerTitle: 'Datei importieren',
exporterAllAsCsv: 'Alle Daten als CSV exportieren',
exporterVisibleAsCsv: 'Sichtbare Daten als CSV exportieren',
exporterSelectedAsCsv: 'Markierte Daten als CSV exportieren',
exporterAllAsPdf: 'Alle Daten als PDF exportieren',
exporterVisibleAsPdf: 'Sichtbare Daten als PDF exportieren',
exporterSelectedAsPdf: 'Markierte Daten als PDF exportieren',
exporterAllAsExcel: 'Alle Daten als Excel exportieren',
exporterVisibleAsExcel: 'Sichtbare Daten als Excel exportieren',
exporterSelectedAsExcel: 'Markierte Daten als Excel exportieren',
clearAllFilters: 'Alle Filter zurücksetzen'
},
importer: {
noHeaders: 'Es konnten keine Spaltennamen ermittelt werden. Sind in der Datei Spaltendefinitionen enthalten?',
noObjects: 'Es konnten keine Zeileninformationen gelesen werden, Sind in der Datei außer den Spaltendefinitionen auch Daten enthalten?',
invalidCsv: 'Die Datei konnte nicht eingelesen werden, ist es eine gültige CSV-Datei?',
invalidJson: 'Die Datei konnte nicht eingelesen werden. Enthält sie gültiges JSON?',
jsonNotArray: 'Die importierte JSON-Datei muß ein Array enthalten. Breche Import ab.'
},
pagination: {
aria: {
pageToFirst: 'Zum Anfang',
pageBack: 'Seite zurück',
pageSelected: 'Ausgewählte Seite',
pageForward: 'Seite vor',
pageToLast: 'Zum Ende'
},
sizes: 'Einträge pro Seite',
totalItems: 'Einträgen',
through: 'bis',
of: 'von'
},
grouping: {
group: 'Gruppieren',
ungroup: 'Gruppierung aufheben',
aggregate_count: 'Agg: Anzahl',
aggregate_sum: 'Agg: Summe',
aggregate_max: 'Agg: Maximum',
aggregate_min: 'Agg: Minimum',
aggregate_avg: 'Agg: Mittelwert',
aggregate_remove: 'Aggregation entfernen'
},
validate: {
error: 'Fehler:',
minLength: 'Der Wert sollte mindestens THRESHOLD Zeichen lang sein.',
maxLength: 'Der Wert sollte maximal THRESHOLD Zeichen lang sein.',
required: 'Ein Wert wird benötigt.'
}
});
return $delegate;
}]);
}]);
})();
(function () {
angular.module('ui.grid').config(['$provide', function($provide) {
$provide.decorator('i18nService', ['$delegate', function($delegate) {
$delegate.add('es-ct', {
headerCell: {
aria: {
defaultFilterLabel: 'Filtre per columna',
removeFilter: 'Elimina el filtre',
columnMenuButtonLabel: 'Menú de Columna',
column: 'Columna'
},
priority: 'Priority:',
filterLabel: 'Filtre per columna: '
},
aggregate: {
label: 'items'
},
groupPanel: {
description: 'Arrossegueu una capçalera de columna aquí i deixeu-lo anar per agrupar per aquesta columna.'
},
search: {
aria: {
selected: 'Fila seleccionada',
notSelected: 'Fila no seleccionada'
},
placeholder: 'Cerca...',
showingItems: 'Ítems Mostrats:',
selectedItems: 'Ítems Seleccionats:',
totalItems: 'Ítems Totals:',
size: 'Mida de la pàgina:',
first: 'Primera Pàgina',
next: 'Propera Pàgina',
previous: 'Pàgina Anterior',
last: 'Última Pàgina'
},
selection: {
aria: {
row: 'Fila'
},
selectAll: 'Seleccionar Todo',
displayName: 'Seleccionar Fila'
},
menu: {
text: 'Triar Columnes:'
},
sort: {
ascending: 'Ordena Ascendent',
descending: 'Ordena Descendent',
none: 'Sense Ordre',
remove: 'Eliminar Ordre'
},
column: {
hide: 'Amaga la Columna'
},
aggregation: {
count: 'Files Totals: ',
sum: 'total: ',
avg: 'mitjà: ',
min: 'mín: ',
max: 'màx: '
},
pinning: {
pinLeft: "Fixar a l'Esquerra",
pinRight: 'Fixar a la Dreta',
unpin: 'Treure Fixació'
},
columnMenu: {
close: 'Tanca'
},
gridMenu: {
aria: {
buttonLabel: 'Menú de Quadrícula'
},
columns: 'Columnes:',
importerTitle: 'Importa el fitxer',
exporterAllAsCsv: 'Exporta tot com CSV',
exporterVisibleAsCsv: 'Exporta les dades visibles com a CSV',
exporterSelectedAsCsv: 'Exporta les dades seleccionades com a CSV',
exporterAllAsPdf: 'Exporta tot com PDF',
exporterVisibleAsPdf: 'Exporta les dades visibles com a PDF',
exporterSelectedAsPdf: 'Exporta les dades seleccionades com a PDF',
exporterAllAsExcel: 'Exporta tot com Excel',
exporterVisibleAsExcel: 'Exporta les dades visibles com Excel',
exporterSelectedAsExcel: 'Exporta les dades seleccionades com Excel',
clearAllFilters: 'Netejar tots els filtres'
},
importer: {
noHeaders: "No va ser possible derivar els noms de les columnes, té encapçalats l'arxiu?",
noObjects: "No va ser possible obtenir registres, conté dades l'arxiu, a part de les capçaleres?",
invalidCsv: "No va ser possible processar l'arxiu, ¿és un CSV vàlid?",
invalidJson: "No va ser possible processar l'arxiu, ¿és un JSON vàlid?",
jsonNotArray: 'El fitxer json importat ha de contenir una matriu, avortant.'
},
pagination: {
aria: {
pageToFirst: 'Page to first',
pageBack: 'Page back',
pageSelected: 'Selected page',
pageForward: 'Page forward',
pageToLast: 'Page to last'
},
sizes: 'ítems per pàgina',
totalItems: 'ítems',
through: 'a',
of: 'de'
},
grouping: {
group: 'Agrupar',
ungroup: 'Desagrupar',
aggregate_count: 'Agr: Compte',
aggregate_sum: 'Agr: Sum',
aggregate_max: 'Agr: Máx',
aggregate_min: 'Agr: Mín',
aggregate_avg: 'Agr: Mitjà',
aggregate_remove: 'Agr: Treure'
},
validate: {
error: 'Error:',
minLength: 'El valor ha de tenir almenys caràcters THRESHOLD.',
maxLength: 'El valor ha de tenir com a màxim caràcters THRESHOLD.',
required: 'Un valor és necessari.'
}
});
return $delegate;
}]);
}]);
})();
(function () {
angular.module('ui.grid').config(['$provide', function($provide) {
$provide.decorator('i18nService', ['$delegate', function($delegate) {
$delegate.add('es', {
aggregate: {
label: 'Artículos'
},
groupPanel: {
description: 'Arrastre un encabezado de columna aquí y suéltelo para agrupar por esa columna.'
},
search: {
placeholder: 'Buscar...',
showingItems: 'Artículos Mostrados:',
selectedItems: 'Artículos Seleccionados:',
totalItems: 'Artículos Totales:',
size: 'Tamaño de Página:',
first: 'Primera Página',
next: 'Página Siguiente',
previous: 'Página Anterior',
last: 'Última Página'
},
selection: {
aria: {
row: 'Fila'
},
selectAll: 'Seleccionar Todo',
displayName: 'Seleccionar Fila'
},
menu: {
text: 'Elegir columnas:'
},
sort: {
ascending: 'Orden Ascendente',
descending: 'Orden Descendente',
remove: 'Sin Ordenar'
},
column: {
hide: 'Ocultar la columna'
},
aggregation: {
count: 'filas totales: ',
sum: 'total: ',
avg: 'media: ',
min: 'min: ',
max: 'max: '
},
pinning: {
pinLeft: 'Fijar a la Izquierda',
pinRight: 'Fijar a la Derecha',
unpin: 'Quitar Fijación'
},
gridMenu: {
columns: 'Columnas:',
importerTitle: 'Importar archivo',
exporterAllAsCsv: 'Exportar todo como csv',
exporterVisibleAsCsv: 'Exportar vista como csv',
exporterSelectedAsCsv: 'Exportar selección como csv',
exporterAllAsPdf: 'Exportar todo como pdf',
exporterVisibleAsPdf: 'Exportar vista como pdf',
exporterSelectedAsPdf: 'Exportar selección como pdf',
exporterAllAsExcel: 'Exportar todo como excel',
exporterVisibleAsExcel: 'Exportar vista como excel',
exporterSelectedAsExcel: 'Exportar selección como excel',
clearAllFilters: 'Limpiar todos los filtros'
},
importer: {
noHeaders: 'No fue posible derivar los nombres de las columnas, ¿tiene encabezados el archivo?',
noObjects: 'No fue posible obtener registros, ¿contiene datos el archivo, aparte de los encabezados?',
invalidCsv: 'No fue posible procesar el archivo, ¿es un CSV válido?',
invalidJson: 'No fue posible procesar el archivo, ¿es un Json válido?',
jsonNotArray: 'El archivo json importado debe contener un array, abortando.'
},
pagination: {
aria: {
pageToFirst: 'Página para primero',
pageBack: 'Página atrás',
pageSelected: 'Página seleccionada',
pageForward: 'Avance de página',
pageToLast: 'Página para durar'
},
through: 'mediante',
sizes: 'registros por página',
totalItems: 'registros',
of: 'de'
},
grouping: {
group: 'Agrupar',
ungroup: 'Desagrupar',
aggregate_count: 'Agr: Cont',
aggregate_sum: 'Agr: Sum',
aggregate_max: 'Agr: Máx',
aggregate_min: 'Agr: Min',
aggregate_avg: 'Agr: Prom',
aggregate_remove: 'Agr: Quitar'
}
});
return $delegate;
}]);
}]);
})();
/**
* Translated by: R. Salarmehr
* M. Hosseynzade
* Using Vajje.com online dictionary.
*/
(function () {
angular.module('ui.grid').config(['$provide', function ($provide) {
$provide.decorator('i18nService', ['$delegate', function ($delegate) {
$delegate.add('fa', {
aggregate: {
label: 'قلم'
},
groupPanel: {
description: 'عنوان یک ستون را بگیر و به گروهی از آن ستون رها کن.'
},
search: {
placeholder: 'جستجو...',
showingItems: 'نمایش اقلام:',
selectedItems: 'قلم\u200cهای انتخاب شده:',
totalItems: 'مجموع اقلام:',
size: 'اندازه\u200cی صفحه:',
first: 'اولین صفحه',
next: 'صفحه\u200cی\u200cبعدی',
previous: 'صفحه\u200cی\u200c قبلی',
last: 'آخرین صفحه'
},
menu: {
text: 'ستون\u200cهای انتخابی:'
},
sort: {
ascending: 'ترتیب صعودی',
descending: 'ترتیب نزولی',
remove: 'حذف مرتب کردن'
},
column: {
hide: 'پنهان\u200cکردن ستون'
},
aggregation: {
count: 'تعداد: ',
sum: 'مجموع: ',
avg: 'میانگین: ',
min: 'کمترین: ',
max: 'بیشترین: '
},
pinning: {
pinLeft: 'پین کردن سمت چپ',
pinRight: 'پین کردن سمت راست',
unpin: 'حذف پین'
},
gridMenu: {
columns: 'ستون\u200cها:',
importerTitle: 'وارد کردن فایل',
exporterAllAsCsv: 'خروجی تمام داده\u200cها در فایل csv',
exporterVisibleAsCsv: 'خروجی داده\u200cهای قابل مشاهده در فایل csv',
exporterSelectedAsCsv: 'خروجی داده\u200cهای انتخاب\u200cشده در فایل csv',
exporterAllAsPdf: 'خروجی تمام داده\u200cها در فایل pdf',
exporterVisibleAsPdf: 'خروجی داده\u200cهای قابل مشاهده در فایل pdf',
exporterSelectedAsPdf: 'خروجی داده\u200cهای انتخاب\u200cشده در فایل pdf',
clearAllFilters: 'پاک کردن تمام فیلتر'
},
importer: {
noHeaders: 'نام ستون قابل استخراج نیست. آیا فایل عنوان دارد؟',
noObjects: 'اشیا قابل استخراج نیستند. آیا به جز عنوان\u200cها در فایل داده وجود دارد؟',
invalidCsv: 'فایل قابل پردازش نیست. آیا فرمت csv معتبر است؟',
invalidJson: 'فایل قابل پردازش نیست. آیا فرمت json معتبر است؟',
jsonNotArray: 'فایل json وارد شده باید حاوی آرایه باشد. عملیات ساقط شد.'
},
pagination: {
sizes: 'اقلام در هر صفحه',
totalItems: 'اقلام',
of: 'از'
},
grouping: {
group: 'گروه\u200cبندی',
ungroup: 'حذف گروه\u200cبندی',
aggregate_count: 'Agg: تعداد',
aggregate_sum: 'Agg: جمع',
aggregate_max: 'Agg: بیشینه',
aggregate_min: 'Agg: کمینه',
aggregate_avg: 'Agg: میانگین',
aggregate_remove: 'Agg: حذف'
}
});
return $delegate;
}]);
}]);
})();
(function () {
angular.module('ui.grid').config(['$provide', function($provide) {
$provide.decorator('i18nService', ['$delegate', function($delegate) {
$delegate.add('fi', {
aggregate: {
label: 'rivit'
},
groupPanel: {
description: 'Raahaa ja pudota otsikko tähän ryhmittääksesi sarakkeen mukaan.'
},
search: {
placeholder: 'Hae...',
showingItems: 'Näytetään rivejä:',
selectedItems: 'Valitut rivit:',
totalItems: 'Rivejä yht.:',
size: 'Näytä:',
first: 'Ensimmäinen sivu',
next: 'Seuraava sivu',
previous: 'Edellinen sivu',
last: 'Viimeinen sivu'
},
menu: {
text: 'Valitse sarakkeet:'
},
sort: {
ascending: 'Järjestä nouseva',
descending: 'Järjestä laskeva',
remove: 'Poista järjestys'
},
column: {
hide: 'Piilota sarake'
},
aggregation: {
count: 'Rivejä yht.: ',
sum: 'Summa: ',
avg: 'K.a.: ',
min: 'Min: ',
max: 'Max: '
},
pinning: {
pinLeft: 'Lukitse vasemmalle',
pinRight: 'Lukitse oikealle',
unpin: 'Poista lukitus'
},
gridMenu: {
columns: 'Sarakkeet:',
importerTitle: 'Tuo tiedosto',
exporterAllAsCsv: 'Vie tiedot csv-muodossa',
exporterVisibleAsCsv: 'Vie näkyvä tieto csv-muodossa',
exporterSelectedAsCsv: 'Vie valittu tieto csv-muodossa',
exporterAllAsPdf: 'Vie tiedot pdf-muodossa',
exporterVisibleAsPdf: 'Vie näkyvä tieto pdf-muodossa',
exporterSelectedAsPdf: 'Vie valittu tieto pdf-muodossa',
exporterAllAsExcel: 'Vie tiedot excel-muodossa',
exporterVisibleAsExcel: 'Vie näkyvä tieto excel-muodossa',
exporterSelectedAsExcel: 'Vie valittu tieto excel-muodossa',
clearAllFilters: 'Puhdista kaikki suodattimet'
},
importer: {
noHeaders: 'Sarakkeen nimiä ei voitu päätellä, onko tiedostossa otsikkoriviä?',
noObjects: 'Tietoja ei voitu lukea, onko tiedostossa muuta kuin otsikkot?',
invalidCsv: 'Tiedostoa ei voitu käsitellä, oliko se CSV-muodossa?',
invalidJson: 'Tiedostoa ei voitu käsitellä, oliko se JSON-muodossa?',
jsonNotArray: 'Tiedosto ei sisältänyt taulukkoa, lopetetaan.'
}
});
return $delegate;
}]);
}]);
})();
(function () {
angular.module('ui.grid').config(['$provide', function($provide) {
$provide.decorator('i18nService', ['$delegate', function($delegate) {
$delegate.add('fr', {
headerCell: {
aria: {
defaultFilterLabel: 'Filtre de la colonne',
removeFilter: 'Supprimer le filtre',
columnMenuButtonLabel: 'Menu de la colonne'
},
priority: 'Priorité:',
filterLabel: "Filtre de la colonne: "
},
aggregate: {
label: 'éléments'
},
groupPanel: {
description: 'Faites glisser une en-tête de colonne ici pour créer un groupe de colonnes.'
},
search: {
placeholder: 'Recherche...',
showingItems: 'Affichage des éléments :',
selectedItems: 'Éléments sélectionnés :',
totalItems: 'Nombre total d\'éléments:',
size: 'Taille de page:',
first: 'Première page',
next: 'Page Suivante',
previous: 'Page précédente',
last: 'Dernière page'
},
selection: {
aria: {
row: 'Ligne'
},
selectAll: 'Tout Sélectionner',
displayName: 'Sélectionnez la ligne'
},
menu: {
text: 'Choisir des colonnes :'
},
sort: {
ascending: 'Trier par ordre croissant',
descending: 'Trier par ordre décroissant',
none: 'Aucun tri',
remove: 'Enlever le tri'
},
column: {
hide: 'Cacher la colonne'
},
aggregation: {
count: 'lignes totales: ',
sum: 'total: ',
avg: 'moy: ',
min: 'min: ',
max: 'max: '
},
pinning: {
pinLeft: 'Épingler à gauche',
pinRight: 'Épingler à droite',
unpin: 'Détacher'
},
columnMenu: {
close: 'Fermer'
},
gridMenu: {
aria: {
buttonLabel: 'Menu du tableau'
},
columns: 'Colonnes:',
importerTitle: 'Importer un fichier',
exporterAllAsCsv: 'Exporter toutes les données en CSV',
exporterVisibleAsCsv: 'Exporter les données visibles en CSV',
exporterSelectedAsCsv: 'Exporter les données sélectionnées en CSV',
exporterAllAsPdf: 'Exporter toutes les données en PDF',
exporterVisibleAsPdf: 'Exporter les données visibles en PDF',
exporterSelectedAsPdf: 'Exporter les données sélectionnées en PDF',
exporterAllAsExcel: 'Exporter toutes les données en Excel',
exporterVisibleAsExcel: 'Exporter les données visibles en Excel',
exporterSelectedAsExcel: 'Exporter les données sélectionnées en Excel',