]> git.openstreetmap.org Git - rails.git/blob - vendor/plugins/rails-i18n/locale/ja.yml
Correct top level key for Lower Sorbian.
[rails.git] / vendor / plugins / rails-i18n / locale / ja.yml
1 # Japanese translations for Ruby on Rails
2 # by Akira Matsuda (ronnie@dio.jp)
3 # AR error messages are basically taken from Ruby-GetText-Package. Thanks to Masao Mutoh.
4 # updated for Rails 2.3.4 by Tsutomu Kuroda <t-kuroda@oiax.jp>
5
6 ja:
7   date:
8     formats:
9       default: "%Y/%m/%d"
10       short: "%m/%d"
11       long: "%Y年%m月%d日(%a)"
12
13     day_names: [日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日]
14     abbr_day_names: [日, 月, 火, 水, 木, 金, 土]
15
16     month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
17     abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
18
19     order: [:year, :month, :day]
20
21   time:
22     formats:
23       default: "%Y/%m/%d %H:%M:%S"
24       short: "%y/%m/%d %H:%M"
25       long: "%Y年%m月%d日(%a) %H時%M分%S秒 %Z"
26     am: "午前"
27     pm: "午後"
28
29   support:
30     array:
31       sentence_connector: "と"
32       skip_last_comma: true
33       words_connector: "と"
34       two_words_connector: "と"
35       last_word_connector: "と"
36
37     select:
38       prompt: "選択してください。"
39
40   number:
41     format:
42       separator: "."
43       delimiter: ","
44       precision: 3
45
46     currency:
47       format:
48         format: "%n%u"
49         unit: "円"
50         separator: "."
51         delimiter: ","
52         precision: 0
53
54     percentage:
55       format:
56         delimiter: ""
57
58     precision:
59       format:
60         delimiter: ""
61
62     human:
63       format:
64         delimiter: ""
65         precision: 1
66       storage_units:
67         format: "%n%u"
68         units:
69           byte: "バイト"
70           kb: "キロバイト"
71           mb: "メガバイト"
72           gb: "ギガバイト"
73           tb: "テラバイト"
74
75   datetime:
76     distance_in_words:
77       half_a_minute: "30秒前後"
78       less_than_x_seconds:
79         one:   "1秒以内"
80         other: "{{count}}秒以内"
81       x_seconds:
82         one:   "1秒"
83         other: "{{count}}秒"
84       less_than_x_minutes:
85         one:   "1分以内"
86         other: "{{count}}分以内"
87       x_minutes:
88         one:   "1分"
89         other: "{{count}}分"
90       about_x_hours:
91         one:   "約1時間"
92         other: "約{{count}}時間"
93       x_days:
94         one:   "1日"
95         other: "{{count}}日"
96       about_x_months:
97         one:   "約1ヶ月"
98         other: "約{{count}}ヶ月"
99       x_months:
100         one:   "1ヶ月"
101         other: "{{count}}ヶ月"
102       about_x_years:
103         one:   "約{{count}}年"
104         other: "約{{count}}年"
105       over_x_years:
106         one:   "{{count}}年以上"
107         other: "{{count}}年以上"
108
109   activerecord:
110     errors:
111       template:
112         header:
113           one:   "{{model}}にエラーが発生しました。"
114           other: "{{model}}に{{count}}つのエラーが発生しました。"
115         body: "次の項目を確認してください。"
116
117       messages:
118         inclusion: "は一覧にありません。"
119         exclusion: "は予約されています。"
120         invalid: "は不正な値です。"
121         confirmation: "が一致しません。"
122         accepted: "を受諾してください。"
123         empty: "を入力してください。"
124         blank: "を入力してください。"
125         too_long: "は{{count}}文字以内で入力してください。"
126         too_short: "は{{count}}文字以上で入力してください。"
127         wrong_length: "は{{count}}文字で入力してください。"
128         taken: "はすでに存在します。"
129         not_a_number: "は数値で入力してください。"
130         greater_than: "は{{count}}より大きい値にしてください。"
131         greater_than_or_equal_to: "は{{count}}以上の値にしてください。"
132         equal_to: "は{{count}}にしてください。"
133         less_than: "は{{count}}より小さい値にしてください。"
134         less_than_or_equal_to: "は{{count}}以下の値にしてください。"
135         odd: "は奇数にしてください。"
136         even: "は偶数にしてください。"
137
138       full_messages:
139         format: "{{attribute}}{{message}}"
140