[ Index ]
 

Code source de Symfony 1.0.0

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/data/web/sf/calendar/lang/ -> calendar-ja.js (source)

   1  // ** I18N
   2  
   3  // Calendar JA language
   4  // Author: AKIMOTO, Hiroki, <akimoto aaaa---t cybozu.co.jp>
   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  // FYI: Locale identifiers for Japanese/Japan are a bit confusing. Use 'ja'.
  13  //  'ja'   Japanese, Language Code
  14  //  'JP'   Japan, Country Code
  15  //  So, 'ja-JP' locale means Japanese in Japan, however, there are no other
  16  //  countries Japanese primarily used so usually '-JP' is omittable.
  17  //  Not a small amount of internationalized software use 'jp' in mistake,
  18  //  but as you see now that the locale name 'ja' is the right one.
  19  
  20  // full day names
  21  Calendar._DN = new Array
  22  ("æ—¥",
  23   "月",
  24   "ç«",
  25   "æ°´",
  26   "木",
  27   "金",
  28   "土",
  29   "æ—¥");
  30  
  31  // Please note that the following array of short day names (and the same goes
  32  // for short month names, _SMN) isn't absolutely necessary.  We give it here
  33  // for exemplification on how one can customize the short day names, but if
  34  // they are simply the first N letters of the full name you can simply say:
  35  //
  36  //   Calendar._SDN_len = N; // short day name length
  37  //   Calendar._SMN_len = N; // short month name length
  38  //
  39  // If N = 3 then this is not needed either since we assume a value of 3 if not
  40  // present, to be compatible with translation files that were written before
  41  // this feature.
  42  
  43  // short day names
  44  Calendar._SDN = new Array
  45  ("æ—¥",
  46   "月",
  47   "ç«",
  48   "æ°´",
  49   "木",
  50   "金",
  51   "土",
  52   "æ—¥");
  53  
  54  // First day of the week. "0" means display Sunday first, "1" means display
  55  // Monday first, etc.
  56  Calendar._FD = 0;
  57  
  58  // full month names
  59  Calendar._MN = new Array
  60  ("1月",
  61   "2月",
  62   "3月",
  63   "4月",
  64   "5月",
  65   "6月",
  66   "7月",
  67   "8月",
  68   "9月",
  69   "10月",
  70   "11月",
  71   "12月");
  72  
  73  // short month names
  74  Calendar._SMN = new Array
  75  ("1月",
  76   "2月",
  77   "3月",
  78   "4月",
  79   "5月",
  80   "6月",
  81   "7月",
  82   "8月",
  83   "9月",
  84   "10月",
  85   "11月",
  86   "12月");
  87  
  88  // tooltips
  89  Calendar._TT = {};
  90  Calendar._TT["INFO"] = "ã“ã®ã‚«ãƒ¬ãƒ³ãƒ€ãƒ¼ã«ã¤ã„ã¦";
  91  
  92  Calendar._TT["ABOUT"] =
  93  "DHTML Date/Time Selector\n" +
  94  "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
  95  "æœ€æ–°ç‰ˆã®æƒ…å ±: http://www.dynarch.com/projects/calendar/\n" +
  96  "GNU LGPL ã§é…布ã•れã¦ã„ã¾ã™ã€‚ 詳細㯠http://gnu.org/licenses/lgpl.html ã‚’ã”覧ãã ã•ã„。" +
  97  "\n\n" +
  98  "日付ã®é¸æŠž:\n" +
  99  "- ボタン \xab, \xbb ã§å¹´ã‚’é¸æŠžã—ã¾ã™\n" +
 100  "- ボタン " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " ã§æœˆã‚’é¸æŠžã—ã¾ã™\n" +
 101  "- 上記ボタンã§ãƒžã‚¦ã‚¹ã‚’押ã—ãŸã¾ã¾ã«ã™ã‚‹ã¨ã€ã‚ˆã‚Šå¤§ããªç§»å‹•ãŒã§ãã¾ã™";
 102  Calendar._TT["ABOUT_TIME"] = "\n\n" +
 103  "Time selection:\n" +
 104  "- Click on any of the time parts to increase it\n" +
 105  "- or Shift-click to decrease it\n" +
 106  "- or click and drag for faster selection.";
 107  
 108  Calendar._TT["PREV_YEAR"] = "å‰å¹´";
 109  Calendar._TT["PREV_MONTH"] = "剿œˆ";
 110  Calendar._TT["GO_TODAY"] = "今日";
 111  Calendar._TT["NEXT_MONTH"] = "翌月";
 112  Calendar._TT["NEXT_YEAR"] = "翌年";
 113  Calendar._TT["SEL_DATE"] = "æ—¥ä»˜é¸æŠž";
 114  Calendar._TT["DRAG_TO_MOVE"] = "ウィンドウã®ç§»å‹•";
 115  Calendar._TT["PART_TODAY"] = " (今日)";
 116  
 117  // the following is to inform that "%s" is to be the first day of week
 118  // %s will be replaced with the day name.
 119  Calendar._TT["DAY_FIRST"] = "%s曜日を週ã®å…ˆé ­ã«";
 120  
 121  // This may be locale-dependent.  It specifies the week-end days, as an array
 122  // of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
 123  // means Monday, etc.
 124  Calendar._TT["WEEKEND"] = "0,6";
 125  
 126  Calendar._TT["CLOSE"] = "é–‰ã˜ã‚‹";
 127  Calendar._TT["TODAY"] = "今日";
 128  Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value";
 129  
 130  // date formats
 131  Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
 132  Calendar._TT["TT_DATE_FORMAT"] = "%m月 %d日 (%a)";
 133  
 134  Calendar._TT["WK"] = "週";
 135  Calendar._TT["TIME"] = "Time:";


Généré le : Fri Mar 16 22:42:14 2007 par Balluche grâce à PHPXref 0.7