Project

General

Profile

Patch #4747 » redmine-ja.patch

Takuto Matsuu, 2010-02-05 18:46

View differences:

config/locales/ja.yml (作業コピー)
64 64
        one:   "1年以上"
65 65
        other: "{{count}}年以上"
66 66
      almost_x_years:
67
        one:   "almost 1 year"
68
        other: "almost {{count}} years"
67
        one:   "ほぼ1年"
68
        other: "ほぼ{{count}}年"
69 69

  
70 70
  number:
71 71
    format:
......
534 534
  label_version_new: 新しいバージョン
535 535
  label_version_plural: バージョン
536 536
  label_confirmation: 確認
537
  label_close_versions: 完了したバージョンを終了にする
537 538
  label_export_to: '他の形式に出力:'
538 539
  label_read: 読む...
539 540
  label_public_projects: 公開プロジェクト
......
587 588
  label_query_new: 新しいクエリ
588 589
  label_filter_add: フィルタ追加
589 590
  label_filter_plural: フィルタ
590
  label_equals: 含む
591
  label_not_equals: 含まない
591
  label_equals: 等しい
592
  label_not_equals: 等しくない
592 593
  label_in_less_than: が今日から○日後以前
593 594
  label_in_more_than: が今日から○日後以降
594 595
  label_greater_or_equal: 以上
......
767 768
  label_version_sharing_hierarchy: プロジェクト階層単位
768 769
  label_version_sharing_tree: プロジェクトツリー単位
769 770
  label_version_sharing_system: すべてのプロジェクト
770
  label_close_versions: 完了したバージョンを終了にする
771 771
  label_update_issue_done_ratios: 進捗の更新
772 772
  label_copy_source: コピー元
773 773
  label_copy_target: コピー先
public/javascripts/calendar/lang/calendar-ja.js (作業コピー)
10 10
// include your contact information in the header, as can be seen above.
11 11

  
12 12
// full day names
13
Calendar._DN = new Array ("日曜日", "月曜日", "火曜日", "水曜日", "木曜日", "金曜日", "土曜日");
13
Calendar._DN = new Array
14
("日曜日",
15
 "月曜日",
16
 "火曜日",
17
 "水曜日",
18
 "木曜日",
19
 "金曜日",
20
 "土曜日",
21
 "日曜日");
14 22

  
15 23
// Please note that the following array of short day names (and the same goes
16 24
// for short month names, _SMN) isn't absolutely necessary.  We give it here
......
25 33
// this feature.
26 34

  
27 35
// short day names
28
Calendar._SDN = new Array ("日", "月", "火", "水", "木", "金", "土");
36
Calendar._SDN = new Array
37
("日",
38
 "月",
39
 "火",
40
 "水",
41
 "木",
42
 "金",
43
 "土",
44
 "日");
29 45

  
30 46
// First day of the week. "0" means display Sunday first, "1" means display
31 47
// Monday first, etc.
32 48
Calendar._FD = 0;
33 49

  
34 50
// full month names
35
Calendar._MN = new Array ("1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月");
51
Calendar._MN = new Array
52
("1月",
53
 "2月",
54
 "3月",
55
 "4月",
56
 "5月",
57
 "6月",
58
 "7月",
59
 "8月",
60
 "9月",
61
 "10月",
62
 "11月",
63
 "12月");
36 64

  
37 65
// short month names
38
Calendar._SMN = new Array ("1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月");
66
Calendar._SMN = new Array
67
("1月",
68
 "2月",
69
 "3月",
70
 "4月",
71
 "5月",
72
 "6月",
73
 "7月",
74
 "8月",
75
 "9月",
76
 "10月",
77
 "11月",
78
 "12月");
39 79

  
40 80
// tooltips
41 81
Calendar._TT = {};
    (1-1/1)