[ Index ] |
|
Code source de Seagull 0.6.1 |
1 // ** I18N 2 3 // Calendar EN language 4 // Author: Idan Sofer, <idan@idanso.dyndns.org> 5 // Encoding: UTF-8 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 ("专讗砖讜谉", 15 "砖谞讬", 16 "砖诇讬砖讬", 17 "专讘讬注讬", 18 "讞诪讬砖讬", 19 "砖讬砖讬", 20 "砖讘转", 21 "专讗砖讜谉"); 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 Calendar._SDN = new Array 37 ("讗", 38 "讘", 39 "讙", 40 "讚", 41 "讛", 42 "讜", 43 "砖", 44 "讗"); 45 46 // full month names 47 Calendar._MN = new Array 48 ("讬谞讜讗专", 49 "驻讘专讜讗专", 50 "诪专抓", 51 "讗驻专讬诇", 52 "诪讗讬", 53 "讬讜谞讬", 54 "讬讜诇讬", 55 "讗讜讙讜住讟", 56 "住驻讟诪讘专", 57 "讗讜拽讟讜讘专", 58 "谞讜讘诪讘专", 59 "讚爪诪讘专"); 60 61 // short month names 62 Calendar._SMN = new Array 63 ("讬谞讗", 64 "驻讘专", 65 "诪专抓", 66 "讗驻专", 67 "诪讗讬", 68 "讬讜谞", 69 "讬讜诇", 70 "讗讜讙", 71 "住驻讟", 72 "讗讜拽", 73 "谞讜讘", 74 "讚爪诪"); 75 76 // tooltips 77 Calendar._TT = {}; 78 Calendar._TT["INFO"] = "讗讜讚讜转 讛砖谞转讜谉"; 79 80 Calendar._TT["ABOUT"] = 81 "讘讞专谉 转讗专讬讱/砖注讛 DHTML\n" + 82 "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-) 83 "讛讙讬专住讗 讛讗讞专讜谞讛 讝诪讬谞讛 讘: http://www.dynarch.com/projects/calendar/\n" + 84 "诪讜驻抓 转讞转 讝讬讻讬讜谉 讛 GNU LGPL. 注讬讬谉 讘 http://gnu.org/licenses/lgpl.html 诇驻专讟讬诐 谞讜住驻讬诐." + 85 "\n\n" + 86 讘讞讬专转 转讗专讬讱:\n" + 87 "- 讛砖转诪砖 讘讻驻转讜专讬诐 \xab, \xbb 诇讘讞讬专转 砖谞讛\n" + 88 "- 讛砖转诪砖 讘讻驻转讜专讬诐 " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " 诇讘讞讬专转 讞讜讚砖\n" + 89 "- 讛讞讝拽 讛注讻讘专 诇讞讜抓 诪注诇 讛讻驻转讜专讬诐 讛诪讜讝讻专讬诐 诇注讬诇 诇讘讞讬专讛 诪讛讬专讛 讬讜转专."; 90 Calendar._TT["ABOUT_TIME"] = "\n\n" + 91 "讘讞讬专转 讝诪谉:\n" + 92 "- 诇讞抓 注诇 讻诇 讗讞讚 诪讞诇拽讬 讛讝诪谉 讻讚讬 诇讛讜住讬祝\n" + 93 "- 讗讜 shift 讘砖讬诇讜讘 注诐 诇讞讬爪讛 讻讚讬 诇讛讞住讬专\n" + 94 "- 讗讜 诇讞抓 讜讙专讜专 诇驻注讜诇讛 诪讛讬专讛 讬讜转专."; 95 96 Calendar._TT["PREV_YEAR"] = "砖谞讛 拽讜讚诪转 - 讛讞讝拽 诇拽讘诇转 转驻专讬讟"; 97 Calendar._TT["PREV_MONTH"] = "讞讜讚砖 拽讜讚诐 - 讛讞讝拽 诇拽讘诇转 转驻专讬讟"; 98 Calendar._TT["GO_TODAY"] = "注讘讜专 诇讛讬讜诐"; 99 Calendar._TT["NEXT_MONTH"] = "讞讜讚砖 讛讘讗 - 讛讞讝拽 诇转驻专讬讟"; 100 Calendar._TT["NEXT_YEAR"] = "砖谞讛 讛讘讗讛 - 讛讞讝拽 诇转驻专讬讟"; 101 Calendar._TT["SEL_DATE"] = "讘讞专 转讗专讬讱"; 102 Calendar._TT["DRAG_TO_MOVE"] = "讙专讜专 诇讛讝讝讛"; 103 Calendar._TT["PART_TODAY"] = " )讛讬讜诐("; 104 105 // the following is to inform that "%s" is to be the first day of week 106 // %s will be replaced with the day name. 107 Calendar._TT["DAY_FIRST"] = "讛爪讙 %s 拽讜讚诐"; 108 109 // This may be locale-dependent. It specifies the week-end days, as an array 110 // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1 111 // means Monday, etc. 112 Calendar._TT["WEEKEND"] = "6"; 113 114 Calendar._TT["CLOSE"] = "住讙讜专"; 115 Calendar._TT["TODAY"] = "讛讬讜诐"; 116 Calendar._TT["TIME_PART"] = "(砖讬驻讟-)诇讞抓 讜讙专讜专 讻讚讬 诇砖谞讜转 注专讱"; 117 118 // date formats 119 Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d"; 120 Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e"; 121 122 Calendar._TT["WK"] = "wk"; 123 Calendar._TT["TIME"] = "砖注讛::";
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
G閚閞 le : Fri Mar 30 01:27:52 2007 | par Balluche gr鈉e PHPXref 0.7 |