calendar-lt-utf8.js
上传用户:yantgcom
上传日期:2013-07-19
资源大小:478k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

PHP

  1. // ** I18N
  2. // Calendar LT language
  3. // Author: Martynas Majeris, <martynas@solmetra.lt>
  4. // Encoding: UTF-8
  5. // Distributed under the same terms as the calendar itself.
  6. // For translators: please use UTF-8 if possible.  We strongly believe that
  7. // Unicode is the answer to a real internationalized world.  Also please
  8. // include your contact information in the header, as can be seen above.
  9. // full day names
  10. Calendar._DN = new Array
  11. ("Sekmadienis",
  12.  "Pirmadienis",
  13.  "Antradienis",
  14.  "Trečiadienis",
  15.  "Ketvirtadienis",
  16.  "Pentadienis",
  17.  "Šeštadienis",
  18.  "Sekmadienis");
  19. // Please note that the following array of short day names (and the same goes
  20. // for short month names, _SMN) isn't absolutely necessary.  We give it here
  21. // for exemplification on how one can customize the short day names, but if
  22. // they are simply the first N letters of the full name you can simply say:
  23. //
  24. //   Calendar._SDN_len = N; // short day name length
  25. //   Calendar._SMN_len = N; // short month name length
  26. //
  27. // If N = 3 then this is not needed either since we assume a value of 3 if not
  28. // present, to be compatible with translation files that were written before
  29. // this feature.
  30. // short day names
  31. Calendar._SDN = new Array
  32. ("Sek",
  33.  "Pir",
  34.  "Ant",
  35.  "Tre",
  36.  "Ket",
  37.  "Pen",
  38.  "Šeš",
  39.  "Sek");
  40. // full month names
  41. Calendar._MN = new Array
  42. ("Sausis",
  43.  "Vasaris",
  44.  "Kovas",
  45.  "Balandis",
  46.  "Gegužė",
  47.  "Birželis",
  48.  "Liepa",
  49.  "Rugpjūtis",
  50.  "Rugsėjis",
  51.  "Spalis",
  52.  "Lapkritis",
  53.  "Gruodis");
  54. // short month names
  55. Calendar._SMN = new Array
  56. ("Sau",
  57.  "Vas",
  58.  "Kov",
  59.  "Bal",
  60.  "Geg",
  61.  "Bir",
  62.  "Lie",
  63.  "Rgp",
  64.  "Rgs",
  65.  "Spa",
  66.  "Lap",
  67.  "Gru");
  68. // tooltips
  69. Calendar._TT = {};
  70. Calendar._TT["INFO"] = "Apie kalendorių";
  71. Calendar._TT["ABOUT"] =
  72. "DHTML Date/Time Selectorn" +
  73. "(c) dynarch.com 2002-2005 / Author: Mihai Bazonn" + // don't translate this this ;-)
  74. "Naujausią versiją rasite: http://www.dynarch.com/projects/calendar/n" +
  75. "Platinamas pagal GNU LGPL licenciją. Aplankykite http://gnu.org/licenses/lgpl.html" +
  76. "nn" +
  77. "Datos pasirinkimas:n" +
  78. "- Metų pasirinkimas: xab, xbbn" +
  79. "- Mėnesio pasirinkimas: " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + "n" +
  80. "- Nuspauskite ir laikykite pelės klavišą greitesniam pasirinkimui.";
  81. Calendar._TT["ABOUT_TIME"] = "nn" +
  82. "Laiko pasirinkimas:n" +
  83. "- Spustelkite ant valandų arba minučių - skaičius padidės vienetu.n" +
  84. "- Jei spausite kartu su Shift, skaičius sumažės.n" +
  85. "- Greitam pasirinkimui spustelkite ir pajudinkite pelę.";
  86. Calendar._TT["PREV_YEAR"] = "Ankstesni metai (laikykite, jei norite meniu)";
  87. Calendar._TT["PREV_MONTH"] = "Ankstesnis mėnuo (laikykite, jei norite meniu)";
  88. Calendar._TT["GO_TODAY"] = "Pasirinkti šiandieną";
  89. Calendar._TT["NEXT_MONTH"] = "Kitas mėnuo (laikykite, jei norite meniu)";
  90. Calendar._TT["NEXT_YEAR"] = "Kiti metai (laikykite, jei norite meniu)";
  91. Calendar._TT["SEL_DATE"] = "Pasirinkite datą";
  92. Calendar._TT["DRAG_TO_MOVE"] = "Tempkite";
  93. Calendar._TT["PART_TODAY"] = " (šiandien)";
  94. Calendar._TT["MON_FIRST"] = "Pirma savaitės diena - pirmadienis";
  95. Calendar._TT["SUN_FIRST"] = "Pirma savaitės diena - sekmadienis";
  96. Calendar._TT["CLOSE"] = "Uždaryti";
  97. Calendar._TT["TODAY"] = "Šiandien";
  98. Calendar._TT["TIME_PART"] = "Spustelkite arba tempkite jei norite pakeisti";
  99. // date formats
  100. Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
  101. Calendar._TT["TT_DATE_FORMAT"] = "%A, %Y-%m-%d";
  102. Calendar._TT["WK"] = "sav";