[ Index ] |
|
Code source de Symfony 1.0.0 |
1 // ** I18N 2 3 // Calendar pt-BR language 4 // Author: Fernando Dourado, <fernando.dourado@ig.com.br> 5 // Encoding: any 6 // Distributed under the same terms as the calendar itself. 7 8 // For translators: please use UTF-8 if possible. We strongly believe that 9 // Unicode is the answer to a real internationalized world. Also please 10 // include your contact information in the header, as can be seen above. 11 12 // full day names 13 Calendar._DN = new Array 14 ("Domingo", 15 "Segunda", 16 "Terça", 17 "Quarta", 18 "Quinta", 19 "Sexta", 20 "Sabádo", 21 "Domingo"); 22 23 // Please note that the following array of short day names (and the same goes 24 // for short month names, _SMN) isn't absolutely necessary. We give it here 25 // for exemplification on how one can customize the short day names, but if 26 // they are simply the first N letters of the full name you can simply say: 27 // 28 // Calendar._SDN_len = N; // short day name length 29 // Calendar._SMN_len = N; // short month name length 30 // 31 // If N = 3 then this is not needed either since we assume a value of 3 if not 32 // present, to be compatible with translation files that were written before 33 // this feature. 34 35 // short day names 36 // [No changes using default values] 37 38 // First day of the week. "0" means display Sunday first, "1" means display 39 // Monday first, etc. 40 Calendar._FD = 0; 41 42 // full month names 43 Calendar._MN = new Array 44 ("Janeiro", 45 "Fevereiro", 46 "Março", 47 "Abril", 48 "Maio", 49 "Junho", 50 "Julho", 51 "Agosto", 52 "Setembro", 53 "Outubro", 54 "Novembro", 55 "Dezembro"); 56 57 // short month names 58 // [No changes using default values] 59 60 // tooltips 61 Calendar._TT = {}; 62 Calendar._TT["INFO"] = "Sobre o calendário"; 63 64 Calendar._TT["ABOUT"] = 65 "DHTML Date/Time Selector\n" + 66 "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-) 67 "For latest version visit: http://www.dynarch.com/projects/calendar/\n" + 68 "Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." + 69 "\n\n" + 70 "Translate to portuguese Brazil (pt-BR) by Fernando Dourado (fernando.dourado@ig.com.br)\n" + 71 "Tradução para o português Brasil (pt-BR) por Fernando Dourado (fernando.dourado@ig.com.br)" + 72 "\n\n" + 73 "Selecionar data:\n" + 74 "- Use as teclas \xab, \xbb para selecionar o ano\n" + 75 "- Use as teclas " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " para selecionar o mês\n" + 76 "- Clique e segure com o mouse em qualquer botão para selecionar rapidamente."; 77 78 Calendar._TT["ABOUT_TIME"] = "\n\n" + 79 "Selecionar hora:\n" + 80 "- Clique em qualquer uma das partes da hora para aumentar\n" + 81 "- ou Shift-clique para diminuir\n" + 82 "- ou clique e arraste para selecionar rapidamente."; 83 84 Calendar._TT["PREV_YEAR"] = "Ano anterior (clique e segure para menu)"; 85 Calendar._TT["PREV_MONTH"] = "Mês anterior (clique e segure para menu)"; 86 Calendar._TT["GO_TODAY"] = "Ir para a data atual"; 87 Calendar._TT["NEXT_MONTH"] = "Próximo mês (clique e segure para menu)"; 88 Calendar._TT["NEXT_YEAR"] = "Próximo ano (clique e segure para menu)"; 89 Calendar._TT["SEL_DATE"] = "Selecione uma data"; 90 Calendar._TT["DRAG_TO_MOVE"] = "Clique e segure para mover"; 91 Calendar._TT["PART_TODAY"] = " (hoje)"; 92 93 // the following is to inform that "%s" is to be the first day of week 94 // %s will be replaced with the day name. 95 Calendar._TT["DAY_FIRST"] = "Exibir %s primeiro"; 96 97 // This may be locale-dependent. It specifies the week-end days, as an array 98 // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1 99 // means Monday, etc. 100 Calendar._TT["WEEKEND"] = "0,6"; 101 102 Calendar._TT["CLOSE"] = "Fechar"; 103 Calendar._TT["TODAY"] = "Hoje"; 104 Calendar._TT["TIME_PART"] = "(Shift-)Clique ou arraste para mudar o valor"; 105 106 // date formats 107 Calendar._TT["DEF_DATE_FORMAT"] = "%d/%m/%Y"; 108 Calendar._TT["TT_DATE_FORMAT"] = "%d de %B de %Y"; 109 110 Calendar._TT["WK"] = "sem"; 111 Calendar._TT["TIME"] = "Hora:"; 112
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Fri Mar 16 22:42:14 2007 | par Balluche grâce à PHPXref 0.7 |