ext-lang-hr.js
上传用户:qfccsy
上传日期:2022-03-27
资源大小:716k
文件大小:5k
源码类别:

ListView/ListBox

开发平台:

Java

  1. /*
  2.  * Croatian translation
  3.  * By Ylodi (utf8 encoding)
  4.  * 8 May 2007
  5.  */
  6.  
  7. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Učitavanje...</div>';
  8. if(Ext.View){
  9.    Ext.View.prototype.emptyText = "";
  10. }
  11. if(Ext.grid.Grid){
  12.    Ext.grid.Grid.prototype.ddText = "{0} odabranih redova";
  13. }
  14. if(Ext.TabPanelItem){
  15.    Ext.TabPanelItem.prototype.closeText = "Zatvori ovaj tab";
  16. }
  17. if(Ext.form.Field){
  18.    Ext.form.Field.prototype.invalidText = "Unesena vrijednost u ovom polju je neispravna";
  19. }
  20. if(Ext.LoadMask){
  21.     Ext.LoadMask.prototype.msg = "Učitavanje...";
  22. }
  23. Date.monthNames = [
  24.    "Siječanj",
  25.    "Veljača",
  26.    "Ožujak",
  27.    "Travanj",
  28.    "Svibanj",
  29.    "Lipanj",
  30.    "Srpanj",
  31.    "Kolovoz",
  32.    "Rujan",
  33.    "Listopad",
  34.    "Studeni",
  35.    "Prosinac"
  36. ];
  37. Date.dayNames = [
  38.    "Nedjelja",
  39.    "Ponedjeljak",
  40.    "Utorak",
  41.    "Srijeda",
  42.    "Četvrtak",
  43.    "Petak",
  44.    "Subota"
  45. ];
  46. if(Ext.MessageBox){
  47.    Ext.MessageBox.buttonText = {
  48.       ok     : "U redu",
  49.       cancel : "Odustani",
  50.       yes    : "Da",
  51.       no     : "Ne"
  52.    };
  53. }
  54. if(Ext.util.Format){
  55.    Ext.util.Format.date = function(v, format){
  56.       if(!v) return "";
  57.       if(!(v instanceof Date)) v = new Date(Date.parse(v));
  58.       return v.dateFormat(format || "d.m.Y");
  59.    };
  60. }
  61. if(Ext.DatePicker){
  62.    Ext.apply(Ext.DatePicker.prototype, {
  63.       todayText         : "Danas",
  64.       minText           : "Taj datum je prije najmanjeg datuma",
  65.       maxText           : "Taj datum je poslije najvećeg datuma",
  66.       disabledDaysText  : "",
  67.       disabledDatesText : "",
  68.       monthNames : Date.monthNames,
  69.       dayNames : Date.dayNames,
  70.       nextText          : 'Slijedeći mjesec (Control+Desno)',
  71.       prevText          : 'Prethodni mjesec (Control+Lijevo)',
  72.       monthYearText     : 'Odaberite mjesec (Control+Gore/Dolje za promjenu godine)',
  73.       todayTip          : "{0} (Razmaknica)",
  74.       format            : "d.m.y",
  75.       startDay   : 1
  76.    });
  77. }
  78. if(Ext.PagingToolbar){
  79.    Ext.apply(Ext.PagingToolbar.prototype, {
  80.       beforePageText : "Stranica",
  81.       afterPageText  : "od {0}",
  82.       firstText      : "Prva stranica",
  83.       prevText       : "Prethodna stranica",
  84.       nextText       : "Slijedeća stranica",
  85.       lastText       : "Posljednja stranica",
  86.       refreshText    : "Obnovi",
  87.       displayMsg     : "Prikazujem {0} - {1} od {2}",
  88.       emptyMsg       : 'Nema podataka za prikaz'
  89.    });
  90. }
  91. if(Ext.form.TextField){
  92.    Ext.apply(Ext.form.TextField.prototype, {
  93.       minLengthText : "Minimalna dužina za ovo polje je {0}",
  94.       maxLengthText : "Maksimalna dužina za ovo polje je {0}",
  95.       blankText     : "Ovo polje je obavezno",
  96.       regexText     : "",
  97.       emptyText     : null
  98.    });
  99. }
  100. if(Ext.form.NumberField){
  101.    Ext.apply(Ext.form.NumberField.prototype, {
  102.       minText : "Minimalna vrijednost za ovo polje je {0}",
  103.       maxText : "Maksimalna vrijednost za ovo polje je {0}",
  104.       nanText : "{0} nije ispravan broj"
  105.    });
  106. }
  107. if(Ext.form.DateField){
  108.    Ext.apply(Ext.form.DateField.prototype, {
  109.       disabledDaysText  : "Neaktivno",
  110.       disabledDatesText : "Neaktivno",
  111.       minText           : "Datum u ovom polje mora biti poslije {0}",
  112.       maxText           : "Datum u ovom polju mora biti prije {0}",
  113.       invalidText       : "{0} nije ispravan datum - mora biti u obliku {1}",
  114.       format            : "d.m.y"
  115.    });
  116. }
  117. if(Ext.form.ComboBox){
  118.    Ext.apply(Ext.form.ComboBox.prototype, {
  119.       loadingText       : "Učitavanje...",
  120.       valueNotFoundText : undefined
  121.    });
  122. }
  123. if(Ext.form.VTypes){
  124.    Ext.apply(Ext.form.VTypes, {
  125.       emailText    : 'Ovdje možete unijeti samo e-mail adresu u obliku "korisnik@domena.com"',
  126.       urlText      : 'Ovdje možete unijeti samo URL u obliku "http:/'+'/www.domena.com"',
  127.       alphaText    : 'Ovo polje može sadržavati samo slova i znak _',
  128.       alphanumText : 'Ovo polje može sadržavati samo slova, brojeve i znak _'
  129.    });
  130. }
  131. if(Ext.grid.GridView){
  132.    Ext.apply(Ext.grid.GridView.prototype, {
  133.       sortAscText  : "Sortiraj rastućim redoslijedom",
  134.       sortDescText : "Sortiraj padajućim redoslijedom",
  135.       lockText     : "Zaključaj stupac",
  136.       unlockText   : "Otključaj stupac",
  137.       columnsText  : "Stupci"
  138.    });
  139. }
  140. if(Ext.grid.PropertyColumnModel){
  141.    Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  142.       nameText   : "Naziv",
  143.       valueText  : "Vrijednost",
  144.       dateFormat : "d.m.Y"
  145.    });
  146. }
  147. if(Ext.layout.BorderLayout.SplitRegion){
  148.    Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  149.       splitTip            : "Povuci za promjenu veličine.",
  150.       collapsibleSplitTip : "Povuci za promjenu veličine. Dvostruki klik za skrivanje."
  151.    });
  152. }