You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

calendar-bg.js 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. // ** I18N
  2. // Calendar BG language
  3. // Author: Mihai Bazon, <mihai_bazon@yahoo.com>
  4. // Translator: Valentin Sheiretsky, <valio@valio.eu.org>
  5. // Encoding: Windows-1251
  6. // Distributed under the same terms as the calendar itself.
  7. // For translators: please use UTF-8 if possible. We strongly believe that
  8. // Unicode is the answer to a real internationalized world. Also please
  9. // include your contact information in the header, as can be seen above.
  10. // full day names
  11. Calendar._DN = new Array
  12. ("Íåäåëÿ",
  13. "Ïîíåäåëíèê",
  14. "Âòîðíèê",
  15. "Ñðÿäà",
  16. "×åòâúðòúê",
  17. "Ïåòúê",
  18. "Ñúáîòà",
  19. "Íåäåëÿ");
  20. // Please note that the following array of short day names (and the same goes
  21. // for short month names, _SMN) isn't absolutely necessary. We give it here
  22. // for exemplification on how one can customize the short day names, but if
  23. // they are simply the first N letters of the full name you can simply say:
  24. //
  25. // Calendar._SDN_len = N; // short day name length
  26. // Calendar._SMN_len = N; // short month name length
  27. //
  28. // If N = 3 then this is not needed either since we assume a value of 3 if not
  29. // present, to be compatible with translation files that were written before
  30. // this feature.
  31. // short day names
  32. Calendar._SDN = new Array
  33. ("Íåä",
  34. "Ïîí",
  35. "Âòî",
  36. "Ñðÿ",
  37. "×åò",
  38. "Ïåò",
  39. "Ñúá",
  40. "Íåä");
  41. // full month names
  42. Calendar._MN = new Array
  43. ("ßíóàðè",
  44. "Ôåâðóàðè",
  45. "Ìàðò",
  46. "Àïðèë",
  47. "Ìàé",
  48. "Þíè",
  49. "Þëè",
  50. "Àâãóñò",
  51. "Ñåïòåìâðè",
  52. "Îêòîìâðè",
  53. "Íîåìâðè",
  54. "Äåêåìâðè");
  55. // short month names
  56. Calendar._SMN = new Array
  57. ("ßíó",
  58. "Ôåâ",
  59. "Ìàð",
  60. "Àïð",
  61. "Ìàé",
  62. "Þíè",
  63. "Þëè",
  64. "Àâã",
  65. "Ñåï",
  66. "Îêò",
  67. "Íîå",
  68. "Äåê");
  69. // tooltips
  70. Calendar._TT = {};
  71. Calendar._TT["INFO"] = "Èíôîðìàöèÿ çà êàëåíäàðà";
  72. Calendar._TT["ABOUT"] =
  73. "DHTML Date/Time Selector\n" +
  74. "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
  75. "For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
  76. "Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
  77. "\n\n" +
  78. "Date selection:\n" +
  79. "- Use the \xab, \xbb buttons to select year\n" +
  80. "- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
  81. "- Hold mouse button on any of the above buttons for faster selection.";
  82. Calendar._TT["ABOUT_TIME"] = "\n\n" +
  83. "Time selection:\n" +
  84. "- Click on any of the time parts to increase it\n" +
  85. "- or Shift-click to decrease it\n" +
  86. "- or click and drag for faster selection.";
  87. Calendar._TT["PREV_YEAR"] = "Ïðåäíà ãîäèíà (çàäðúæòå çà ìåíþ)";
  88. Calendar._TT["PREV_MONTH"] = "Ïðåäåí ìåñåö (çàäðúæòå çà ìåíþ)";
  89. Calendar._TT["GO_TODAY"] = "Èçáåðåòå äíåñ";
  90. Calendar._TT["NEXT_MONTH"] = "Ñëåäâàù ìåñåö (çàäðúæòå çà ìåíþ)";
  91. Calendar._TT["NEXT_YEAR"] = "Ñëåäâàùà ãîäèíà (çàäðúæòå çà ìåíþ)";
  92. Calendar._TT["SEL_DATE"] = "Èçáåðåòå äàòà";
  93. Calendar._TT["DRAG_TO_MOVE"] = "Ïðåìåñòâàíå";
  94. Calendar._TT["PART_TODAY"] = " (äíåñ)";
  95. // the following is to inform that "%s" is to be the first day of week
  96. // %s will be replaced with the day name.
  97. Calendar._TT["DAY_FIRST"] = "%s êàòî ïúðâè äåí";
  98. // This may be locale-dependent. It specifies the week-end days, as an array
  99. // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
  100. // means Monday, etc.
  101. Calendar._TT["WEEKEND"] = "0,6";
  102. Calendar._TT["CLOSE"] = "Çàòâîðåòå";
  103. Calendar._TT["TODAY"] = "Äíåñ";
  104. Calendar._TT["TIME_PART"] = "(Shift-)Click èëè drag çà äà ïðîìåíèòå ñòîéíîñòòà";
  105. // date formats
  106. Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
  107. Calendar._TT["TT_DATE_FORMAT"] = "%A - %e %B %Y";
  108. Calendar._TT["WK"] = "Ñåäì";
  109. Calendar._TT["TIME"] = "×àñ:";