]> git.openstreetmap.org Git - rails.git/blob - vendor/rails-locales/ja.yml
Update rails translations
[rails.git] / vendor / rails-locales / 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 # contributors:
5 #  - Tsutomu Kuroda (t-kuroda@oiax.jp)
6
7 ja:
8   date:
9     formats:
10       default: "%Y/%m/%d"
11       short: "%m/%d"
12       long: "%Y年%m月%d日(%a)"
13
14     day_names:
15       - 日曜日
16       - 月曜日
17       - 火曜日
18       - 水曜日
19       - 木曜日
20       - 金曜日
21       - 土曜日
22     abbr_day_names:
23       - 日
24       - 月
25       - 火
26       - 水
27       - 木
28       - 金
29       - 土
30
31     month_names:
32       - ~
33       - 1月
34       - 2月
35       - 3月
36       - 4月
37       - 5月
38       - 6月
39       - 7月
40       - 8月
41       - 9月
42       - 10月
43       - 11月
44       - 12月
45     abbr_month_names:
46       - ~
47       - 1月
48       - 2月
49       - 3月
50       - 4月
51       - 5月
52       - 6月
53       - 7月
54       - 8月
55       - 9月
56       - 10月
57       - 11月
58       - 12月
59
60     order:
61       - :year
62       - :month
63       - :day
64
65   time:
66     formats:
67       default: "%Y/%m/%d %H:%M:%S"
68       short: "%y/%m/%d %H:%M"
69       long: "%Y年%m月%d日(%a) %H時%M分%S秒 %z"
70     am: "午前"
71     pm: "午後"
72
73   support:
74     array:
75       words_connector: "と"
76       two_words_connector: "と"
77       last_word_connector: "と"
78
79     select:
80       prompt: "選択してください。"
81
82   number:
83     format:
84       separator: "."
85       delimiter: ","
86       precision: 3
87       significant: false
88       strip_insignificant_zeros: false
89
90     currency:
91       format:
92         format: "%n%u"
93         unit: "円"
94         separator: "."
95         delimiter: ","
96         precision: 3
97         significant: false
98         strip_insignificant_zeros: false
99
100     percentage:
101       format:
102         delimiter: ""
103
104     precision:
105       format:
106         delimiter: ""
107
108     human:
109       format:
110         delimiter: ""
111         precision: 3
112         significant: true
113         strip_insignificant_zeros: true
114
115       storage_units:
116         format: "%n%u"
117         units:
118           byte: "バイト"
119           kb: "キロバイト"
120           mb: "メガバイト"
121           gb: "ギガバイト"
122           tb: "テラバイト"
123
124       decimal_units:
125         format: "%n %u"
126         units:
127           unit: ""
128           thousand: "千"
129           million: "百万"
130           billion: "十億"
131           trillion: "兆"
132           quadrillion: "千兆"
133
134   datetime:
135     distance_in_words:
136       half_a_minute: "30秒前後"
137       less_than_x_seconds:
138         one:   "1秒以内"
139         other: "%{count}秒以内"
140       x_seconds:
141         one:   "1秒"
142         other: "%{count}秒"
143       less_than_x_minutes:
144         one:   "1分以内"
145         other: "%{count}分以内"
146       x_minutes:
147         one:   "1分"
148         other: "%{count}分"
149       about_x_hours:
150         one:   "約1時間"
151         other: "約%{count}時間"
152       x_days:
153         one:   "1日"
154         other: "%{count}日"
155       about_x_months:
156         one:   "約1ヶ月"
157         other: "約%{count}ヶ月"
158       x_months:
159         one:   "1ヶ月"
160         other: "%{count}ヶ月"
161       about_x_years:
162         one:   "約1年"
163         other: "約%{count}年"
164       over_x_years:
165         one:   "1年以上"
166         other: "%{count}年以上"
167       almost_x_years:
168         one:   "1年弱"
169         other: "%{count}年弱"
170
171     prompts:
172       year:   "年"
173       month:  "月"
174       day:    "日"
175       hour:   "時"
176       minute: "分"
177       second: "秒"
178
179   helpers:
180     select:
181       prompt: "選択してください。"
182
183     submit:
184       create: "登録する"
185       update: "更新する"
186       submit: "保存する"
187
188   errors:
189     format: "%{attribute}%{message}"
190
191     messages: &errors_messages
192       inclusion: "は一覧にありません。"
193       exclusion: "は予約されています。"
194       invalid: "は不正な値です。"
195       confirmation: "が一致しません。"
196       accepted: "を受諾してください。"
197       empty: "を入力してください。"
198       blank: "を入力してください。"
199       too_long: "は%{count}文字以内で入力してください。"
200       too_short: "は%{count}文字以上で入力してください。"
201       wrong_length: "は%{count}文字で入力してください。"
202       not_a_number: "は数値で入力してください。"
203       not_an_integer: "は整数で入力してください。"
204       greater_than: "は%{count}より大きい値にしてください。"
205       greater_than_or_equal_to: "は%{count}以上の値にしてください。"
206       equal_to: "は%{count}にしてください。"
207       less_than: "は%{count}より小さい値にしてください。"
208       less_than_or_equal_to: "は%{count}以下の値にしてください。"
209       odd: "は奇数にしてください。"
210       even: "は偶数にしてください。"
211       taken: "はすでに存在します。"
212       record_invalid: "バリデーションに失敗しました。 %{errors}"
213     template: &errors_template
214       header:
215         one:   "%{model}にエラーが発生しました。"
216         other: "%{model}に%{count}つのエラーが発生しました。"
217       body: "次の項目を確認してください。"
218
219   activerecord:
220     errors:
221       messages:
222         <<: *errors_messages
223       template:
224         <<: *errors_template
225       full_messages:
226         format: "%{attribute}%{message}"