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