ja: number: # Used in number_with_delimiter() # These are also the defaults for 'currency', 'percentage', 'precision', and 'human' format: # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5) separator: "." # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three) delimiter: "," # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00) precision: 3 # Used in number_to_currency() currency: format: # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00) format: "%n%u" unit: "円" # These three are to override number.format and are optional separator: "." delimiter: "," precision: 0 # Used in number_to_percentage() percentage: format: # These three are to override number.format and are optional # separator: delimiter: "" # precision: # Used in number_to_precision() precision: format: # These three are to override number.format and are optional # separator: delimiter: "" # precision: # Used in number_to_human_size() human: format: # These three are to override number.format and are optional # separator: delimiter: "" precision: 1 storage_units: # Storage units output formatting. # %u is the storage unit, %n is the number (default: 2 MB) format: "%n%u" units: byte: "バイト" kb: "キロバイト" mb: "メガバイト" gb: "ギガバイト" tb: "テラバイト" # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words() datetime: distance_in_words: half_a_minute: "30秒前後" less_than_x_seconds: one: "1秒以内" other: "{{count}}秒以内" x_seconds: one: "1秒" other: "{{count}}秒" less_than_x_minutes: one: "1分以内" other: "{{count}}分以内" x_minutes: one: "1分" other: "{{count}}分" about_x_hours: one: "約1時間" other: "約{{count}}時間" x_days: one: "1日" other: "{{count}}日" about_x_months: one: "約1ヶ月" other: "約{{count}}ヶ月" x_months: one: "1ヶ月" other: "{{count}}ヶ月" about_x_years: one: "約{{count}}年" other: "約{{count}}年" over_x_years: one: "{{count}}年以上" other: "{{count}}年以上" prompts: year: "年" month: "月" day: "日" hour: "時" minute: "分" second: "秒" activerecord: errors: format: separator: "" template: header: one: "{{model}}にエラーが発生しました。" other: "{{model}}に{{count}}つのエラーが発生しました。" # The variable :count is also available body: "次の項目を確認してください。" support: select: # default value for :prompt => true in FormOptionsHelper prompt: "選択してください。"