-
Notifications
You must be signed in to change notification settings - Fork 5
/
localization.js
10673 lines (9717 loc) · 365 KB
/
localization.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
/*
InfCloud - the open source CalDAV/CardDAV Web Client
Copyright (C) 2011-2015
Jan Mate <[email protected]>
Andrej Lezo <[email protected]>
Matej Mihalik <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// NOTE: console.log(...) messages are not translated
var localization = new Object();
localization['cs_CZ']= /* Jan Mate <[email protected]> */
{
txtResources: 'Prostředky',
txtNote: 'Poznámky',
errUnableSync: 'Chyba: \'nepodařilo se synchronizovat prostředek\': zkuste to později!',
loadingResources: 'Načítání prostředků (%act% z %total%) ...',
loadingCollectionList: 'Načítání zoznamu prostředků',
txtCacheText: 'Na serveru byla nalezena aktualizace, prosím znovu načtěte stránku!',
txtCacheButton: 'Znovu načíst'
};
localization['da_DK']= /* thanks Niels Bo Andersen and Michael Rasmussen */
{
txtResources: 'Ressourcer',
txtNote: 'Note',
errUnableSync: 'Fejl: \'kunne ikke synkronisere ressource\': prøv igen senere!',
loadingResources: 'Henter ressourcer (%act% af %total%) ...',
loadingCollectionList: 'Indlæser ressource listen',
txtCacheText: 'En opdatering er klar på serveren, genindlæs derfor siden!',
txtCacheButton: 'Genindlæs'
};
localization['de_DE']= /* thanks Marten Gajda and Thomas Scheel */
{
txtResources: 'Ressourcen',
txtNote: 'Notiz',
errUnableSync: 'Fehler: \'Ressource konnte nicht syncronisiert werden\': Versuchen Sie es später noch einmal!',
loadingResources: 'Lade Ressourcen (%act% von %total%) ...',
loadingCollectionList: 'Lade Ressourcenliste',
txtCacheText: 'Auf dem Server ist ein Update verfügbar. Bitte laden Sie die Seite neu!',
txtCacheButton: 'Seite neu laden'
};
localization['en_US']= /* Jan Mate <[email protected]> */
{
txtResources: 'Resources',
txtNote: 'Note',
errUnableSync: 'Error: \'unable to sync resource\': try again later!',
loadingResources: 'Loading resources (%act% of %total%) ...',
loadingCollectionList: 'Loading resource list',
txtCacheText: 'There is an update available on the server, please reload the page!',
txtCacheButton: 'Reload'
};
localization['es_ES']= /* Damian Vila <[email protected]> */
{
txtResources: 'Recursos',
txtNote: 'Nota',
errUnableSync: 'Error: \'imposible sincronizar con el recurso\': inténtelo más tarde!',
loadingResources: 'Cargando recursos (%act% de %total%) ...',
loadingCollectionList: 'Cargando la lista de recursos',
txtCacheText: 'Hay una actualización disponible en el servidor, por favor, recarga la página!',
txtCacheButton: 'Recargar'
};
localization['fr_FR']= /* thanks John Fischer and Jean-Christophe Bach */
{
txtResources: 'Ressources',
txtNote: 'Note',
errUnableSync: 'Erreur : \'impossible de synchroniser la ressource\' : réessayez plus tard !',
loadingResources: 'Chargement des ressources (%act% sur %total%)...',
loadingCollectionList: 'Chargement de la liste des ressources',
txtCacheText: 'Il y a une mise à jour disponible sur le serveur, veuillez recharger la page s\'il vous plaît !',
txtCacheButton: 'Recharger'
};
localization['hu_HU']= /* Jan Mate <[email protected]> */
{
txtResources: 'Források',
txtNote: 'Jegyzetek',
errUnableSync: 'Hiba: \'nem sikerült a forrás szinkronizálása\': próbálkozzon később!',
loadingResources: 'Források betöltése (%act%/%total%) ...',
loadingCollectionList: 'Forrás lista betöltése',
txtCacheText: 'Frissítés elérhető a szerveren, kérjük töltse be újra az oldalt!',
txtCacheButton: 'Újratöltés'
};
localization['it_IT']= /* thanks Luca Ferrario */
{
txtResources: 'Risorse',
txtNote: 'Note',
errUnableSync: 'Errore: \'impossibile sincronizzare la risorsa\': riprovare!',
loadingResources: 'Caricamento risorse (%act% di %total%) ...',
loadingCollectionList: 'Caricamento della lista delle risorse',
txtCacheText: 'La voce è stata aggiornata sul server, per favore ricarica la pagina!',
txtCacheButton: 'Reload'
};
localization['ja_JP']= /* Muimu Nakayama */
{
txtResources: 'リソース',
txtNote: 'メモ',
errUnableSync: 'エラー: \'リソースと同期できません\': 後で再度試してみてください!',
loadingResources: 'リソースを読み込み中 (%total% 個中 %act% 個) ...',
loadingCollectionList: 'リソースリストを読み込み中',
txtCacheText: 'サーバ上で更新があります。ページを再読み込みしてください!',
txtCacheButton: '再読み込み'
};
localization['nl_NL']= /* thanks Johan Vromans */
{
txtResources: 'Bronnen',
txtNote: 'Opmerking',
errUnableSync: 'Fout: Synchronisatie mislukt, probeer later nog eens!',
loadingResources: 'Laden (%act% van %total%) ...',
loadingCollectionList: 'Laden (Bronnenlijst) ...',
txtCacheText: 'Er zijn updates beschikbaar op de server. Gelieve deze pagina te verversen.',
txtCacheButton: 'Verversen'
};
localization['sk_SK']= /* Jan Mate <[email protected]> */
{
txtResources: 'Prostriedky',
txtNote: 'Poznámky',
errUnableSync: 'Chyba: \'nepodarilo sa synchronizovať prostriedok\': skúste to neskôr!',
loadingResources: 'Načítavanie prostriedkov (%act% z %total%) ...',
loadingCollectionList: 'Načítavanie prostriedkov',
txtCacheText: 'Na servery bola nájdená aktualizácia, prosím znova načítajte stránku!',
txtCacheButton: 'Znovu načítať'
};
localization['tr_TR']= /* thanks Selcuk Pultar */
{
txtResources: 'Kaynaklar',
txtNote: 'Not',
errUnableSync: 'Hata: \'kaynak eşlenememiştir\': sonra yeniden deneyin!',
loadingResources: 'Kaynaklar yükleniyor (%total% taneden %act%) ...',
loadingCollectionList: 'Kaynak listesi yükleniyor',
txtCacheText: 'Sunucuda bir güncelleme mevcut, lütfen sayfayı yeniden yükleyin!',
txtCacheButton: 'Yeniden yükle'
};
localization['ru_RU']= /* thanks Александр Симонов */
{
txtResources: 'Ресурсы',
txtNote: 'Примечание',
errUnableSync: 'Ошибка: \'невозможно синхронизировать ресурс\': попробуйте позже!',
loadingResources: 'Загрузка ресурсов (%act% из %total%)...',
loadingCollectionList: 'Загрузка списка ресурсов',
txtCacheText: 'На сервере доступно обновление. Перезагрузите страницу!',
txtCacheButton: 'Перезагрузить'
};
localization['uk_UA']= /* Serge Yakimchuck <[email protected]> */
{
txtResources: 'Ресурси',
txtNote: 'Примітки',
errUnableSync: 'Помилка: \'неможливо синхронізувати ресурс\': спробуйте пізніше!',
loadingResources: 'завантаження ресурсів (%act% з %total%) ...',
loadingCollectionList: 'Завантаження списку ресурсів',
txtCacheText: 'на сервері доступне оновлення, перезавантажте, будь ласка, сторінку!',
txtCacheButton: 'Перезавантаження'
};
localization['zh_CN']= /* thanks Fandy */
{
txtResources: '资源',
txtNote: '备注',
errUnableSync: '错误: \'不能同步信息\': 请稍后重试!',
loadingResources: '加载中,请稍等 (%act% of %total%) ...',
loadingCollectionList: '加载中',
txtCacheText: '服务器有更新, 请重新加载页面!',
txtCacheButton: '刷新'
};
var localizationShared = new Object();
localizationShared['cs_CZ']= /* Jan Mate <[email protected]> */
{
_name_: 'Čeština',
_default_datepicker_format_: 'dd.mm.yy',
_default_AMPM_format_: false,
altLogo: 'Logo',
altLogout: 'Odhlásit',
buttonLogin: 'Přihlásit',
pholderUsername: 'Přihlašovací jméno',
pholderPassword: 'Heslo',
txtSearch: 'Hledat',
txtError: 'Chyba',
txtRefresh: 'Obnovit',
buttonEdit: 'Editovat',
buttonSave: 'Uložit',
buttonReset: 'Reset',
buttonCancel: 'Storno',
buttonDelete: 'Vymazat',
errCollectionLoad: 'Nepodařilo se uložit nastavení!',
errHttpCommon: 'chybový kód %%',
errHttp401: 'neautorizovaný',
errHttp403: 'přístup zamítnut',
errHttp405: 'nepovolená metoda',
errHttp408: 'vypršení doby požadavku',
errHttp412: 'někdo jiný ho právě změnil na serveru',
errHttp500: 'vnitřní chyba serveru',
errHttp501: 'neimplementováno',
unsupportedBrowser: 'Upozornění: Váš prohlížeč je nepodporovaný!',
updateNotification: '%name% %new_ver% dostupný (používáte %curr_ver%) - %url%'
};
localizationShared['da_DK']= /* thanks Niels Bo Andersen and Michael Rasmussen */
{
_name_: 'Dansk',
_default_datepicker_format_: 'dd-mm-yy',
_default_AMPM_format_: false,
altLogo: 'Logo',
altLogout: 'Log ud',
buttonLogin: 'Log ind',
pholderUsername: 'Brugernavn',
pholderPassword: 'Kodeord',
txtSearch: 'Søg',
txtError: 'Fejl',
txtRefresh: 'Opdater',
buttonEdit: 'Rediger',
buttonSave: 'Gem',
buttonReset: 'Fortryd',
buttonCancel: 'Annuller',
buttonDelete: 'Slet',
errCollectionLoad: 'Fejl: \'Kunne ikke gemme konfiguration\'!',
errHttpCommon: 'fejlkode %%',
errHttp401: 'uautoriseret',
errHttp403: 'forbudt',
errHttp405: 'metode ikke tilladt',
errHttp408: 'forespørgsels-timeout',
errHttp412: 'emnet er ændret af en anden på serveren',
errHttp500: 'intern serverfejl',
errHttp501: 'ikke implementeret',
unsupportedBrowser: 'Bemærk: Din browser er ikke understøttet!',
updateNotification: '%name% %new_ver% er frigivet (du har %curr_ver%) - %url%'
};
localizationShared['de_DE']= /* thanks Marten Gajda and Thomas Scheel */
{
_name_: 'Deutsch',
_default_datepicker_format_: 'dd.mm.yy',
_default_AMPM_format_: false,
altLogo: 'Logo',
altLogout: 'Abmelden',
buttonLogin: 'Anmelden',
pholderUsername: 'Benutzername',
pholderPassword: 'Passwort',
txtSearch: 'Suchen',
txtError: 'Fehler',
txtRefresh: 'Aktualisieren',
buttonEdit: 'Bearbeiten',
buttonSave: 'Speichern',
buttonReset: 'Verwerfen',
buttonCancel: 'Abbrechen',
buttonDelete: 'Löschen',
errCollectionLoad: 'Fehler: \'Einstellungen konnten nicht gespeichert werden\'!',
errHttpCommon: 'Fehler Code %%',
errHttp401: 'nicht berechtigt',
errHttp403: 'verboten',
errHttp405: 'Befehl nicht erlaubt',
errHttp408: 'Anfrage-Timeout',
errHttp412: 'Kontakt wurde zwischenzeitlich auf der Server geändert',
errHttp500: 'Interner Server Fehler',
errHttp501: 'Nicht unterstützt',
unsupportedBrowser: 'Hinweis: Der verwendete Browser wird nicht unterstützt!',
updateNotification: '%name% %new_ver% verfügbar (Sie haben %curr_ver%) - %url%'
};
localizationShared['en_US']= /* Jan Mate <[email protected]> */
{
_name_: 'English',
_default_datepicker_format_: 'yy-mm-dd',
_default_AMPM_format_: true,
altLogo: 'Logo',
altLogout: 'Logout',
buttonLogin: 'Login',
pholderUsername: 'Username',
pholderPassword: 'Password',
txtSearch: 'Search',
txtError: 'Error',
txtRefresh: 'Refresh',
buttonEdit: 'Edit',
buttonSave: 'Save',
buttonReset: 'Revert',
buttonCancel: 'Cancel',
buttonDelete: 'Delete',
errCollectionLoad: 'Error: \'unable to save settings\'!',
errHttpCommon: 'error code %%',
errHttp401: 'unauthorized',
errHttp403: 'forbidden',
errHttp405: 'method not allowed',
errHttp408: 'request timeout',
errHttp412: 'somebody else has already changed it on the server',
errHttp500: 'internal server error',
errHttp501: 'not implemented',
unsupportedBrowser: 'Note: your browser is unsupported!',
updateNotification: '%name% %new_ver% available (you have %curr_ver%) - %url%'
};
localizationShared['es_ES']= /* Damian Vila <[email protected]> */
{
_name_: 'Español',
_default_datepicker_format_: 'dd/mm/yy',
_default_AMPM_format_: false,
altLogo: 'Logo',
altLogout: 'Desconectar',
buttonLogin: 'Iniciar sesión',
pholderUsername: 'Usuario',
pholderPassword: 'Contraseña',
txtSearch: 'Buscar',
txtError: 'Error',
txtRefresh: 'Refrescar',
buttonEdit: 'Editar',
buttonSave: 'Guardar',
buttonReset: 'Revertir',
buttonCancel: 'Cancelar',
buttonDelete: 'Borrar',
errCollectionLoad: 'Error: \'imposible guardar las configuraciones\'!',
errHttpCommon: 'código de error %%',
errHttp401: 'no autorizado',
errHttp403: 'prohibido',
errHttp405: 'método no permitido',
errHttp408: 'petición caducada',
errHttp412: 'alguien lo ha cambiado ya en el servidor',
errHttp500: 'error interno de servidor',
errHttp501: 'no implementado',
unsupportedBrowser: 'Nota: ¡tu navegador no está soportado!',
updateNotification: '%name% %new_ver% disponible (tu versión es %curr_ver%) - %url%'
};
localizationShared['fr_FR']= /* thanks John Fischer and Jean-Christophe Bach */
{
_name_: 'Français',
_default_datepicker_format_: 'dd/mm/yy',
_default_AMPM_format_: false,
altLogo: 'Logo',
altLogout: 'Déconnexion',
buttonLogin: 'Connexion',
pholderUsername: 'Identifiant',
pholderPassword: 'Mot de Passe',
txtSearch: 'Rechercher',
txtError: 'Erreur',
txtRefresh: 'Rafraîchir',
buttonEdit: 'Éditer',
buttonSave: 'Sauvegarder',
buttonReset: 'Revenir',
buttonCancel: 'Annuler',
buttonDelete: 'Supprimer',
errCollectionLoad: 'Impossible de sauvegarder les paramètres !',
errHttpCommon: 'code d\'erreur %%',
errHttp401: 'non autorisé',
errHttp403: 'interdit',
errHttp405: 'méthode non autorisée',
errHttp408: 'expiration du délai de la requête',
errHttp412: 'quelqu\'un d\'autre l\'a déjà modifié sur le serveur',
errHttp500: 'erreur interne du serveur',
errHttp501: 'non implémenté',
unsupportedBrowser: 'Note : votre navigateur n\'est pas supporté !',
updateNotification: '%name% %new_ver% est disponible (vous êtes actuellement en version %curr_ver%) - %url%'
};
localizationShared['hu_HU']= /* Jan Mate <[email protected]> */
{
_name_: 'Magyar',
_default_datepicker_format_: 'yy.mm.dd',
_default_AMPM_format_: false,
altLogo: 'Logó',
altLogout: 'Kijelentkezés',
buttonLogin: 'Bejelentkezés',
pholderUsername: 'Felhasználónév',
pholderPassword: 'Jelszó',
txtSearch: 'Keresés',
txtError: 'Hiba',
txtRefresh: 'Frissítés',
buttonEdit: 'Szerkesztés',
buttonSave: 'Mentés',
buttonReset: 'Visszaállítás',
buttonCancel: 'Mégse',
buttonDelete: 'Törlés',
errCollectionLoad: 'Hiba: \'nem sikerült elmenteni a beállításokat\'!',
errHttpCommon: 'hiba kód %%',
errHttp401: 'nincs hitelesítve',
errHttp403: 'tiltva',
errHttp405: 'nem engedélyezett módszer',
errHttp408: 'kérelem időtúllépése',
errHttp412: 'valaki más már megváltoztatta a szerveren',
errHttp500: 'belső szerverhiba',
errHttp501: 'nincs megvalósítva',
unsupportedBrowser: 'Figyelmeztetés: A böngészője nem támogatott!',
updateNotification: '%name% %new_ver% elérhető (jelenlegi verzió: %curr_ver%) - %url%'
};
localizationShared['it_IT']= /* thanks Luca Ferrario */
{
_name_: 'Italiano',
_default_datepicker_format_: 'dd/mm/yy',
_default_AMPM_format_: false,
altLogo: 'Logo',
altLogout: 'Logout',
buttonLogin: 'Login',
pholderUsername: 'Nome Utente',
pholderPassword: 'Password',
txtSearch: 'Cerca',
txtError: 'Errore',
txtRefresh: 'Aggiorna',
buttonEdit: 'Modifica',
buttonSave: 'Salva',
buttonReset: 'Annulla',
buttonCancel: 'Annulla',
buttonDelete: 'Elimina',
errCollectionLoad: 'Errore: \'impossibile salvare le impostazioni\'!',
errHttpCommon: 'codice errore %%',
errHttp401: 'non autorizzato',
errHttp403: 'proibito',
errHttp405: 'metodo non consentito',
errHttp408: 'timeout della richiesta',
errHttp412: 'qualcun altro l\'ha già modificato sul server',
errHttp500: 'errore interno del server',
errHttp501: 'non implementato',
unsupportedBrowser: 'Attenzione: browser non supportato!',
updateNotification: '%name% %new_ver% disponibile (versione attuale: %curr_ver%) - %url%'
};
localizationShared['ja_JP']= /* Muimu Nakayama */
{
_name_: '日本語',
_default_datepicker_format_: 'yy-mm-dd',
_default_AMPM_format_: true,
altLogo: 'Logo',
altLogout: 'ログアウト',
buttonLogin: 'ログイン',
pholderUsername: 'ユーザ名',
pholderPassword: 'パスワード',
txtSearch: '検索',
txtError: 'エラー',
txtRefresh: 'リフレッシュ',
buttonEdit: '編集',
buttonSave: '保存',
buttonReset: '戻す',
buttonCancel: 'キャンセル',
buttonDelete: '削除',
errCollectionLoad: 'エラー: \'設定を保存できません\'!',
errHttpCommon: 'エラーコード %%',
errHttp401: '認証失敗',
errHttp403: 'アクセス不可',
errHttp405: '許可されないメソッド',
errHttp408: 'タイムアウト',
errHttp412: 'サーバ上で他の人によりすでに変更済み',
errHttp500: 'サーバ内部エラー',
errHttp501: '実装されていません',
unsupportedBrowser: '注意: あなたのブラウザはサポートされていません!',
updateNotification: '%name% %new_ver% が利用できます (現在は %curr_ver%) - %url%'
};
localizationShared['nl_NL']= /* thanks Johan Vromans */
{
_name_: 'Nederlands',
_default_datepicker_format_: 'dd-mm-yy',
_default_AMPM_format_: false,
altLogo: 'Logo',
altLogout: 'Uitloggen',
buttonLogin: 'Inloggen',
pholderUsername: 'Gebruikersnaam',
pholderPassword: 'Wachtwoord',
txtSearch: 'Zoeken',
txtError: 'Fout',
txtRefresh: 'Herladen',
buttonEdit: 'Wijzigen',
buttonSave: 'Opslaan',
buttonReset: 'Herstellen',
buttonCancel: 'Annuleren',
buttonDelete: 'Verwijderen',
errCollectionLoad: 'Fout: Opslaan van de instellingen is niet gelukt!',
errHttpCommon: 'Foutcode %%',
errHttp401: 'geen toegang',
errHttp403: 'verboden',
errHttp405: 'bewerking niet toegestaan',
errHttp408: 'verwerking afgebroken wegens timeout',
errHttp412: 'iemand anders heeft dit reeds gewijzigd op de server',
errHttp500: 'interne serverfout',
errHttp501: 'niet geïmplementeerd',
unsupportedBrowser: 'Attentie: uw browser wordt niet ondersteund!',
updateNotification: 'Er is een nieuwe versie van %name% beschikbaar: %new_ver% (u heeft nu %curr_ver%) - %url%'
};
localizationShared['sk_SK']= /* Jan Mate <[email protected]> */
{
_name_: 'Slovenčina',
_default_datepicker_format_: 'dd.mm.yy',
_default_AMPM_format_: false,
altLogo: 'Logo',
altLogout: 'Odhlásiť',
buttonLogin: 'Prihlásiť',
pholderUsername: 'Prihlasovacie meno',
pholderPassword: 'Heslo',
txtSearch: 'Vyhľadať',
txtError: 'Chyba',
txtRefresh: 'Obnoviť',
buttonEdit: 'Editovať',
buttonSave: 'Uložiť',
buttonReset: 'Reset',
buttonCancel: 'Storno',
buttonDelete: 'Vymazať',
errCollectionLoad: 'Nepodarilo sa uložiť nastavenia!',
errHttpCommon: 'chybový kód %%',
errHttp401: 'neautorizovaný',
errHttp403: 'prístup zamietnutý',
errHttp405: 'nepovolená metóda',
errHttp408: 'časový limit vypršal',
errHttp412: 'niekto iný ho práve zmenil na serveri',
errHttp500: 'vnútorná chyba servera',
errHttp501: 'neimplementované',
unsupportedBrowser: 'Upozornenie: Váš prehliadač je nepodporovaný!',
updateNotification: '%name% %new_ver% dostupný (používate %curr_ver%) - %url%'
};
localizationShared['tr_TR']= /* thanks Selcuk Pultar */
{
_name_: 'Türkçe',
_default_datepicker_format_: 'dd.mm.yy',
_default_AMPM_format_: false,
altLogo: 'Logo',
altLogout: 'Çıkış',
buttonLogin: 'Giriş',
pholderUsername: 'Kullanıcı Adı',
pholderPassword: 'Parola',
txtSearch: 'Ara',
txtError: 'Hata',
txtRefresh: 'Yenile',
buttonEdit: 'Düzenle',
buttonSave: 'Kaydet',
buttonReset: 'Geri döndür',
buttonCancel: 'Vazgeç',
buttonDelete: 'Sil',
errCollectionLoad: 'Hata: \'ayarlar kaydedilemedi\'!',
errHttpCommon: 'hata kodu %%',
errHttp401: 'yetkisiz',
errHttp403: 'yasak',
errHttp405: 'metoda izin verilmemiştir',
errHttp408: 'istek zaman aşımı',
errHttp412: 'başkası sunucuda zaten değiştirmiş',
errHttp500: 'dahili sunucu hatası',
errHttp501: 'henüz uygulamaya geçirilmemiştir',
unsupportedBrowser: 'Not: tarayıcınız desteklenmemektedir!',
updateNotification: '%name% %new_ver% hazır (sizde %curr_ver% var) - %url%'
};
localizationShared['ru_RU']= /* thanks Александр Симонов */
{
_name_: 'Русский',
_default_datepicker_format_: 'dd.mm.yy',
_default_AMPM_format_: false,
altLogo: 'Лого',
altLogout: 'Выход',
buttonLogin: 'Вход',
pholderUsername: 'Имя',
pholderPassword: 'Пароль',
txtSearch: 'Поиск',
txtError: 'Ошибка',
txtRefresh: 'Обновить',
buttonEdit: 'Изменить',
buttonSave: 'Сохранить',
buttonReset: 'Отменить',
buttonCancel: 'Отмена',
buttonDelete: 'Удалить',
errCollectionLoad: 'Ошибка: \'невозможно сохранить настройки\'!',
errHttpCommon: 'код ошибки %%',
errHttp401: 'не авторизован',
errHttp403: 'запрещен',
errHttp405: 'метод не разрешен',
errHttp408: 'таймаут запроса',
errHttp412: 'кто-то другой уже произвел изменения на сервере',
errHttp500: 'внутренняя ошибка сервера',
errHttp501: 'не реализовано',
unsupportedBrowser: 'Ваш браузер не поддерживается!',
updateNotification: '%name% версии %new_ver% доступен (сейчас у вас версия %curr_ver%) - %url%'
};
localizationShared['uk_UA']= /* Serge Yakimchuck <[email protected]> */
{
_name_: 'Українська',
_default_datepicker_format_: 'dd.mm.yy',
_default_AMPM_format_: false,
altLogo: 'Лого',
altLogout: 'Вийти',
buttonLogin: 'Увійти',
pholderUsername: 'Користувач',
pholderPassword: 'Пароль',
txtSearch: 'Пошук',
txtError: 'Помилка',
txtRefresh: 'Оновити',
buttonEdit: 'Правити',
buttonSave: 'Зберегти',
buttonReset: 'Скасувати',
buttonCancel: 'Скасувати',
buttonDelete: 'Видалити',
errCollectionLoad: 'Помилка: \'неможливо зберегти настройки\'!',
errHttpCommon: 'код помилки %%',
errHttp401: 'не авторизовано',
errHttp403: 'заборонено',
errHttp405: 'метод не дозволений',
errHttp408: 'перевищено час запиту',
errHttp412: 'хтось ще якраз це змінює на сервері',
errHttp500: 'внутрішня помилка сервера',
errHttp501: 'не реалізовано',
unsupportedBrowser: 'Увага: Ваш браузер не підтримується!',
updateNotification: '%name% %new_ver% доступна (у вас %curr_ver%) - %url%'
};
localizationShared['zh_CN']= /* thanks Fandy */
{
_name_: '中国',
_default_datepicker_format_: 'yy-mm-dd',
_default_AMPM_format_: false,
altLogo: '图标',
altLogout: '退出',
buttonLogin: '登录',
pholderUsername: '用户名',
pholderPassword: '密码',
txtSearch: '检索',
txtError: '错误',
txtRefresh: '刷新',
buttonEdit: '编辑',
buttonSave: '保存',
buttonReset: '恢复',
buttonCancel: '取消',
buttonDelete: '删除',
errCollectionLoad: '错误: \'不能保持设置\'!',
errHttpCommon: '错误代码 %%',
errHttp401: '未认证的',
errHttp403: '禁止',
errHttp405: '方法不被允许',
errHttp408: '请求超时',
errHttp412: '服务器已更新',
errHttp500: '内部服务器错误',
errHttp501: '未实施',
unsupportedBrowser: '注意:您的浏览器不支持!',
updateNotification: '%name% %new_ver% 最新版本 (你的系统当前版本 %curr_ver%) - %url%'
};
$.extend(true, localization, localizationShared);
var localizationSharedCalDAV = new Object();
localizationSharedCalDAV['cs_CZ']= /* Jan Mate <[email protected]> */
{
txtCalendars: 'Kalendáře',
txtTodos: 'Připomínky',
localTime: 'Lokální čas',
fullCalendarMonth: 'měsíc',
fullCalendarMultiWeek: 'mtýden',
fullCalendarAgendaWeek: 'týden',
fullCalendarAgendaDay: 'den',
monthNames: ['Leden','Únor','Březen','Duben','Květen','Červen',
'Červenec','Srpen','Září','Říjen','Listopad','Prosinec'],
monthNamesShort: ['Led','Úno','Bře','Dub','Kvě','Čer',
'Čvc','Srp','Zář','Říj','Lis','Pro'],
dayNames: ['Neděle', 'Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek', 'Sobota'],
dayNamesShort: ['Ne', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So'],
dayNamesMin: ['Ne','Po','Út','St','Čt','Pá','So']
};
localizationSharedCalDAV['da_DK']= /* thanks Niels Bo Andersen and Michael Rasmussen */
{
txtCalendars: 'Kalendere',
txtTodos: 'Opgaver',
localTime: 'Lokal tid',
fullCalendarMonth: 'måned',
fullCalendarMultiWeek: 'uger',
fullCalendarAgendaWeek: 'uge',
fullCalendarAgendaDay: 'dag',
monthNames: ['Januar','Februar','Marts','April','Maj','Juni',
'Juli','August','September','Oktober','November','December'],
monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun',
'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'],
dayNames: ['Søndag', 'Mandag', 'Tirsdag', 'Onsdag', 'Torsdag', 'Fredag', 'Lørdag'],
dayNamesShort: ['Søn', 'Man', 'Tir', 'Ons', 'Tor', 'Fre', 'Lør'],
dayNamesMin: ['Sø','Ma','Ti','On','To','Fr','Lø']
};
localizationSharedCalDAV['de_DE']= /* thanks Marten Gajda and Thomas Scheel */
{
txtCalendars: 'Kalender',
txtTodos: 'Aufgaben',
localTime: 'Lokale Zeit',
fullCalendarMonth: 'Monat',
fullCalendarMultiWeek: 'Wochen',
fullCalendarAgendaWeek: 'Woche',
fullCalendarAgendaDay: 'Tag',
monthNames: ['Januar','Februar','März','April','Mai','Juni',
'Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun',
'Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa']
};
localizationSharedCalDAV['en_US']= /* Jan Mate <[email protected]> */
{
txtCalendars: 'Calendars',
txtTodos: 'Todos',
localTime: 'Local Time',
fullCalendarMonth: 'month',
fullCalendarMultiWeek: 'mweek',
fullCalendarAgendaWeek: 'week',
fullCalendarAgendaDay: 'day',
monthNames: ['January','February','March','April','May','June',
'July','August','September','October','November','December'],
monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa']
};
localizationSharedCalDAV['es_ES']= /* Damian Vila <[email protected]> */
{
txtCalendars: 'Calendarios',
txtTodos: 'Tareas',
localTime: 'Tiempo local',
fullCalendarMonth: 'mes',
fullCalendarMultiWeek: 'msemana',
fullCalendarAgendaWeek: 'semana',
fullCalendarAgendaDay: 'día',
monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio',
'Julio','Agosto','Septiembre','Octubre','Noviembre','Deciembre'],
monthNamesShort: ['Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun',
'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'],
dayNames: ['Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado'],
dayNamesShort: ['Dom', 'Lun', 'Mar', 'Mie', 'Jue', 'Vie', 'Sáb'],
dayNamesMin: ['D','L','M','X','J','V','S']
};
localizationSharedCalDAV['fr_FR']= /* thanks John Fischer and Jean-Christophe Bach */
{
txtCalendars: 'Calendriers',
txtTodos: 'Tâches',
localTime: 'Heure locale',
fullCalendarMonth: 'mois',
fullCalendarMultiWeek: 'multisem.',
fullCalendarAgendaWeek: 'semaine',
fullCalendarAgendaDay: 'jour',
monthNames: ['janvier','février','mars','avril','mai','juin',
'juillet','août','septembre','octobre','novembre','décembre'],
monthNamesShort: ['jan', 'fév', 'mar', 'avr', 'mai', 'jun',
'jul', 'aoû', 'sep', 'oct', 'nov', 'déc'],
dayNames: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'],
dayNamesShort: ['dim', 'lun', 'mar', 'mer', 'jeu', 'ven', 'sam'],
dayNamesMin: ['di','lu','ma','me','je','ve','sa']
};
localizationSharedCalDAV['hu_HU']= /* Jan Mate <[email protected]> */
{
txtCalendars: 'Naptárak',
txtTodos: 'Feladatok',
localTime: 'Helyi idő',
fullCalendarMonth: 'hónap',
fullCalendarMultiWeek: 'több hét',
fullCalendarAgendaWeek: 'hét',
fullCalendarAgendaDay: 'nap',
monthNames: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június',
'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'],
monthNamesShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún',
'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'],
dayNames: ['Vasárnap', 'Hétfő', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'],
dayNamesShort: ['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'],
dayNamesMin: ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo']
};
localizationSharedCalDAV['it_IT']= /* thanks Luca Ferrario */
{
txtCalendars: 'Calendari',
txtTodos: 'Attività',
localTime: 'Ora Locale',
fullCalendarMonth: 'mese',
fullCalendarMultiWeek: 'msett.',
fullCalendarAgendaWeek: 'sett.',
fullCalendarAgendaDay: 'giorno',
monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno',
'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'],
monthNamesShort: ['Gen', 'Feb', 'Mar', 'Apr', 'Mag', 'Giu',
'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic'],
dayNames: ['Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato'],
dayNamesShort: ['Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab'],
dayNamesMin: ['Do','Lu','Ma','Me','Gi','Ve','Sa']
};
localizationSharedCalDAV['ja_JP']= /* Muimu Nakayama */
{
txtCalendars: 'カレンダー',
txtTodos: 'ToDo',
localTime: 'ローカルタイム',
fullCalendarMonth: '月',
fullCalendarMultiWeek: '複数週',
fullCalendarAgendaWeek: '週',
fullCalendarAgendaDay: '日',
monthNames: ['1月','2月','3月','4月','5月','6月',
'7月','8月','9月','10月','11月','12月'],
monthNamesShort: ['1月','2月','3月','4月','5月','6月',
'7月','8月','9月','10月','11月','12月'],
dayNames: ['日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日'],
dayNamesShort: ['日', '月', '火', '水', '木', '金', '土'],
dayNamesMin: ['日','月','火','水','木','金','土']
};
localizationSharedCalDAV['nl_NL']= /* thanks Johan Vromans */
{
txtCalendars: 'Agenda’s',
txtTodos: 'Taken',
localTime: 'Plaatselijke tijd',
fullCalendarMonth: 'maand',
fullCalendarMultiWeek: 'weken',
fullCalendarAgendaWeek: 'week',
fullCalendarAgendaDay: 'dag',
monthNames: ['Januari','Februari','Maart','April','Mei','Juni',
'Juli','Augustus','September','Oktober','November','December'],
monthNamesShort: ['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun',
'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'],
dayNames: ['Zondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrijdag', 'Zaterdag'],
dayNamesShort: ['Zon', 'Maa', 'Din', 'Woe', 'Don', 'Vrij', 'Zat'],
dayNamesMin: ['Zo', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Za']
};
localizationSharedCalDAV['sk_SK']= /* Jan Mate <[email protected]> */
{
txtCalendars: 'Kalendáre',
txtTodos: 'Pripomienky',
localTime: 'Lokálny čas',
fullCalendarMonth: 'mesiac',
fullCalendarMultiWeek: 'mtýždeň',
fullCalendarAgendaWeek: 'týždeň',
fullCalendarAgendaDay: 'deň',
monthNames: ['Január','Február','Marec','Apríl','Máj','Jún',
'Júl','August','September','Október','November','December'],
monthNamesShort: ['Jan','Feb','Mar','Apr','Máj','Jún',
'Júl','Aug','Sep','Okt','Nov','Dec'],
dayNames: ['Nedeľa','Pondelok','Utorok','Streda','Štvrtok','Piatok','Sobota'],
dayNamesShort: ['Ned','Pon','Uto','Str','Štv','Pia','Sob'],
dayNamesMin: ['Ne','Po','Ut','St','Št','Pia','So']
};
localizationSharedCalDAV['tr_TR']= /* thanks Selcuk Pultar */
{
txtCalendars: 'Takvimler',
txtTodos: 'Yapılacaklar',
localTime: 'Yerel Saat',
fullCalendarMonth: 'ay',
fullCalendarMultiWeek: 'çokluhafta',
fullCalendarAgendaWeek: 'hafta',
fullCalendarAgendaDay: 'gün',
monthNames: ['Ocak','Şubat','Mart','Nisan','Mayıs','Haziran',
'Temmuz','Ağustos','Eylül','Ekim','Kasım','Aralık'],
monthNamesShort: ['Oca', 'Şub', 'Mar', 'Nis', 'May', 'Haz',
'Tem', 'Ağu', 'Eyl', 'Eki', 'Kas', 'Ara'],
dayNames: ['Pazar', 'Pazartesi', 'Salı', 'Çarşamba', 'Perşembe', 'Cuma', 'Cumartesi'],
dayNamesShort: ['Paz', 'Pts', 'Sal', 'Çar', 'Per', 'Cum', 'Cts'],
dayNamesMin: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct']
};
localizationSharedCalDAV['ru_RU']= /* thanks Александр Симонов */
{
txtCalendars: 'Календари',
txtTodos: 'Задачи',
localTime: 'Местное время',
fullCalendarMonth: 'Шесть недель',
fullCalendarMultiWeek: 'Три недели',
fullCalendarAgendaWeek: 'Неделя',
fullCalendarAgendaDay: 'День',