1 # Korean (한글) translations for Ruby on Rails 
 
   2 # by John Hwang (jhwang@tavon.org)
 
   3 # http://github.com/tavon
 
  10       long: "%Y년 %m월 %d일 (%a)"
 
  12     day_names: [일요일, 월요일, 화요일, 수요일, 목요일, 금요일, 토요일]
 
  13     abbr_day_names: [일, 월, 화, 수, 목, 금, 토]
 
  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월]
 
  18     order: [ :year, :month, :day ]
 
  22       default: "%Y/%m/%d %H:%M:%S"
 
  23       short: "%y/%m/%d %H:%M"
 
  24       long: "%Y년 %B월 %d일, %H시 %M분 %S초 %Z"
 
  28   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
 
  34         other: "{{count}}초 이하"
 
  40         other: "{{count}}분 이하"
 
  46         other: "약 {{count}}시간"
 
  61         other: "{{count}}년 이상"
 
  71     # Used in number_with_delimiter()
 
  72     # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
 
  74       # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
 
  76       # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
 
  78       # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
 
  81     # Used in number_to_currency()
 
  84         # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
 
  87         # These three are to override number.format and are optional
 
  92     # Used in number_to_percentage()
 
  95         # These three are to override number.format and are optional
 
 100     # Used in number_to_precision()
 
 103         # These three are to override number.format and are optional
 
 108     # Used in number_to_human_size()
 
 111         # These three are to override number.format and are optional
 
 115       storage_units: [Bytes, KB, MB, GB, TB]
 
 117 # Used in array.to_sentence.
 
 120       words_connector: ", "
 
 121       two_words_connector: "과 "
 
 122       last_word_connector: ", "
 
 128           one:    "한개의 오류가 발생해 {{model}}를 저장 할 수 없습니다"
 
 129           other:  "{{count}}개의 오류가 발생해 {{model}}를 저장 할 수 없습니다"
 
 130         # The variable :count is also available
 
 131         body: "다음 항목에 문제가 발견되었습니다:"
 
 134         inclusion: "은 목록에 포함되어 있습니다"
 
 135         exclusion: "은 목록에 포함되어 있지 않습니다"
 
 137         confirmation: "은 확인되었습니다"
 
 138         accepted: "은 확인되었습니다"
 
 139         empty: "은 비어두면 안 됩니다"
 
 140         blank: "은 비어두면 안 됩니다"
 
 141         too_long: "은 너무 깁니다 (최대 {{count}}자 까지)"
 
 142         too_short: "은 너무 짧습니다 (최소 {{count}}자 까지)"
 
 143         wrong_length: "은 길이가 틀렸습니다 ({{count}}자를 필요합니다)"
 
 144         taken: "은 이미 선택되었습니다"
 
 145         not_a_number: "은 숫자가 아닙니다"
 
 146         greater_than: "은 {{count}}이상을 요구합니다"
 
 147         greater_than_or_equal_to: "은 {{count}}과 같거나 이상을 요구합니다"
 
 148         equal_to: "은 {{count}}과 같아야 합니다"
 
 149         less_than: "은 {{count}}이하를 요구합니다"
 
 150         less_than_or_equal_to: "은 {{count}}과 같거나 이하을 요구합니다"
 
 153         # Append your own errors here or at the model/attributes scope.