home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / groupoffice-com-2.01 / controls / jscalendar / lang / calendar-pt.js < prev    next >
Text File  |  2004-03-08  |  4KB  |  128 lines

  1. // ** I18N
  2.  
  3. // Calendar PT language
  4. // Author: Elcio Ferreira, <elciof@icqmail.com>
  5. // Encoding: utf-8
  6. // Distributed under the same terms as the calendar itself.
  7.  
  8.  
  9. // full day names
  10. Calendar._DN = new Array
  11. ("Domingo",
  12.  "Segunda-feria",
  13.  "Tera-feira",
  14.  "Quarta-feira",
  15.  "Quinta-feira",
  16.  "Sexta-feira",
  17.  "Sbado",
  18.  "Domingo");
  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.  
  32. // short day names
  33. Calendar._SDN_len = 3
  34.  
  35. // full month names
  36. Calendar._MN = new Array
  37. ("Janeiro",
  38.  "Fevereiro",
  39.  "Maro",
  40.  "Abril",
  41.  "Maio",
  42.  "Junho",
  43.  "Julho",
  44.  "Agosto",
  45.  "Setembro",
  46.  "Outubro",
  47.  "Novembro",
  48.  "Dezembro");
  49.  
  50.  
  51. // short month names
  52. Calendar._SMN_len =3
  53.  
  54. // tooltips
  55. Calendar._TT = {};
  56. Calendar._TT["INFO"] = "Sobre o calendrio";
  57.  
  58. Calendar._TT["ABOUT"] =
  59. "DHTML Date/Time Selector\n" +
  60. "(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
  61. "Para a ltima verso, visite: http://dynarch.com/mishoo/calendar.epl\n" +
  62. "Distribudo sob a GNU LGPL.  Veja http://gnu.org/licenses/lgpl.html para mais detalhes." +
  63. "\n\n" +
  64. "Seleo de data:\n" +
  65. "- Use os botes \xab, \xbb para selecionar o ano\n" +
  66. "- Use os botes " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " para selcionar o ms\n" +
  67. "- Segure o boto do mouse em qualquer dos botes acima para selecionar de uma lista.";
  68. Calendar._TT["ABOUT_TIME"] = "\n\n" +
  69. "Seleo de hora:\n" +
  70. "- Clique em qualquer uma das partes da hora para aumentar\n" +
  71. "- Clique segurando SHIFT para diminuir\n" +
  72. "- Clique e arraste para selecionar rapidamente.";
  73.  
  74. Calendar._TT["PREV_YEAR"] = "Ano anterior (segure para lista)";
  75. Calendar._TT["PREV_MONTH"] = "Ms anterior (segure para lista)";
  76. Calendar._TT["GO_TODAY"] = "Ir para hoje";
  77. Calendar._TT["NEXT_MONTH"] = "Prximo ms (segure para lista)";
  78. Calendar._TT["NEXT_YEAR"] = "Prximo ano (segure para lista)";
  79. Calendar._TT["SEL_DATE"] = "Selecionar data";
  80. Calendar._TT["DRAG_TO_MOVE"] = "Segure para mover";
  81. Calendar._TT["PART_TODAY"] = " (hoje)";
  82.  
  83. // the following is to inform that "%s" is to be the first day of week
  84. // %s will be replaced with the day name.
  85. Calendar._TT["DAY_FIRST"] = "Mostrar %s primeiro";
  86.  
  87. // This may be locale-dependent.  It specifies the week-end days, as an array
  88. // of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
  89. // means Monday, etc.
  90. Calendar._TT["WEEKEND"] = "0,6";
  91.  
  92. Calendar._TT["CLOSE"] = "Fechar";
  93. Calendar._TT["TODAY"] = "Hoje";
  94. Calendar._TT["TIME_PART"] = "(Shift-)Clique ou arraste para mudar";
  95.  
  96. // date formats
  97. Calendar._TT["DEF_DATE_FORMAT"] = "%d/%m/%Y";
  98. Calendar._TT["TT_DATE_FORMAT"] = "%a, %e de %b";
  99.  
  100. Calendar._TT["WK"] = "sem";
  101. Calendar._TT["TIME"] = "Hora:";
  102.  
  103. /*
  104. // ** I18N
  105.  
  106.  
  107. // tooltips
  108. Calendar._TT = {};
  109. Calendar._TT["TOGGLE"] = "Trocar o primeiro dia da semana";
  110. Calendar._TT["PREV_YEAR"] = "Ano Anterior (mantenha para menu)";
  111. Calendar._TT["PREV_MONTH"] = "Ms Anterior (mantenha para menu)";
  112. Calendar._TT["GO_TODAY"] = "Ir para hoje";
  113. Calendar._TT["NEXT_MONTH"] = "Prximo Ms (mantenha para menu)";
  114. Calendar._TT["NEXT_YEAR"] = "Prximo Ano (mantenha para menu)";
  115. Calendar._TT["SEL_DATE"] = "Escolha Data";
  116. Calendar._TT["DRAG_TO_MOVE"] = "Arraste para mover";
  117. Calendar._TT["PART_TODAY"] = " (hoje)";
  118. Calendar._TT["MON_FIRST"] = "Mostrar Segunda primeiro";
  119. Calendar._TT["SUN_FIRST"] = "Mostrar Domingo primeiro";
  120. Calendar._TT["CLOSE"] = "Fechar";
  121. Calendar._TT["TODAY"] = "Hoje";
  122.  
  123. // date formats
  124. Calendar._TT["DEF_DATE_FORMAT"] = "a-mm-dd";
  125. Calendar._TT["TT_DATE_FORMAT"] = "D, M d";
  126.  
  127. Calendar._TT["WK"] = "sm";
  128. */