RubyOnRails 언어 설정
1 2 3 4 5 6 | /config/application.rb ... config.i18n.default_locale = :ko config.time_zone = 'Seoul' ... | cs |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | /config/loacls/time.ko.yml ko: activerecord: errors: messages: record_invalid: 데이터 검증에 실패하였습니다. %{errors} date: abbr_day_names: - 일 - 월 - 화 - 수 - 목 - 금 - 토 abbr_month_names: - - 1월 - 2월 - 3월 - 4월 - 5월 - 6월 - 7월 - 8월 - 9월 - 10월 - 11월 - 12월 day_names: - 일요일 - 월요일 - 화요일 - 수요일 - 목요일 - 금요일 - 토요일 formats: default: "%Y/%m/%d" long: "%Y년 %m월 %d일 (%a)" short: "%m/%d" month_names: - - 1월 - 2월 - 3월 - 4월 - 5월 - 6월 - 7월 - 8월 - 9월 - 10월 - 11월 - 12월 order: - :year - :month - :day datetime: distance_in_words: about_x_hours: one: 약 한 시간 other: 약 %{count}시간 about_x_months: one: 약 한 달 other: 약 %{count}달 about_x_years: one: 약 일 년 other: 약 %{count}년 almost_x_years: one: 일 년 이하 other: "%{count}년 이하" half_a_minute: 30초 less_than_x_minutes: one: 방금 other: "%{count}분 이하" less_than_x_seconds: one: 일 초 이하 other: "%{count}초 이하" over_x_years: one: 일 년 이상 other: "%{count}년 이상" x_days: one: 하루 other: "%{count}일" x_minutes: one: 일 분 other: "%{count}분" x_months: one: 한 달 other: "%{count}달" x_seconds: one: 일 초 other: "%{count}초" prompts: day: 일 hour: 시 minute: 분 month: 월 second: 초 year: 년 errors: format: "%{message}" messages: accepted: "%{attribute}을(를) 반드시 확인해야 합니다" blank: "%{attribute}에 내용을 입력해 주세요" confirmation: "%{attribute}은(는) 서로 일치해야 합니다" empty: "%{attribute}에 내용을 입력해 주세요" equal_to: "%{attribute}은(는) %{count}과 같아야 합니다" even: "%{attribute}에 짝수를 입력해 주세요" exclusion: "%{attribute}은(는) 이미 예약되어 있는 값입니다" greater_than: "%{attribute}은(는) %{count}보다 커야 합니다" greater_than_or_equal_to: "%{attribute}은(는) %{count}보다 크거야 같아야 합니다" inclusion: "%{attribute}은(는) 목록에 포함되어 있는 값이 아닙니다" invalid: "%{attribute}은(는) 올바르지 않은 값입니다" less_than: "%{attribute}은(는) %{count}보다 작아야 합니다" less_than_or_equal_to: "%{attribute}은(는) %{count}과 작거나 같아야 합니다" not_a_number: "%{attribute}에 숫자를 입력해 주세요" not_an_integer: "%{attribute}에 정수를 입력해 주세요" odd: "%{attribute}에 홀수를 입력해 주세요" taken: "%{attribute}은(는) 이미 존재합니다" too_long: "%{attribute}은(는) %{count}자를 넘을 수 없습니다" too_short: "%{attribute}은(는) 적어도 %{count}자를 넘어야 합니다" wrong_length: "%{attribute}은(는) %{count}자여야 합니다" template: body: '아래 문제를 확인해 주세요.' header: one: 한 개의 오류로 인해 %{model}을(를) 저장할 수 없습니다 other: "%{count}개의 오류로 인해 %{model}을(를) 저장할 수 없습니다" helpers: select: prompt: 선택해주세요 submit: create: 등록 submit: 제출 update: 수정 number: currency: format: delimiter: "," format: "%n%u" precision: 0 separator: "." significant: false strip_insignificant_zeros: false unit: 원 format: delimiter: "," precision: 3 separator: "." significant: false strip_insignificant_zeros: false human: decimal_units: format: "%n%u" units: billion: 십억 million: 백만 quadrillion: 경 thousand: 천 trillion: 조 unit: '' format: delimiter: '' precision: 3 significant: true strip_insignificant_zeros: true storage_units: format: "%n%u" units: byte: 바이트 gb: 기가바이트 kb: 킬로바이트 mb: 메가바이트 tb: 테라바이트 percentage: format: delimiter: '' precision: format: delimiter: '' support: array: last_word_connector: ", " two_words_connector: '와(과) ' words_connector: ", " time: am: 오전 formats: default: "%Y/%m/%d %H:%M:%S" long: "%Y년 %m월 %d일, %H시 %M분 %S초 %Z" short: "%y/%m/%d %H:%M" pm: 오후 | cs |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | \config\locales\kaminari.ko.yml 파일 ko: views: pagination: first: "« 처음" last: "마지막 »" previous: "‹ 이전" next: "다음 ›" truncate: "…" helpers: page_entries_info: one_page: display_entries: zero: "%{entry_name} 를 찾지 못했습니다." one: "Displaying <b>1</b> %{entry_name}" other: "Displaying <b>all %{count}</b> %{entry_name}" more_pages: display_entries: "Displaying %{entry_name} <b>%{first} - %{last}</b> of <b>%{total}</b> in total" | cs |
'Archived(Programming) > Ruby on Rails(기초)' 카테고리의 다른 글
RubyOnRails 9) Category 나누기 (0) | 2018.12.31 |
---|---|
RubyOnRails 8) Impressionist 조회수 구현 (0) | 2018.12.30 |
RubyOnRails 7) Pagination 페이지 나누기 (0) | 2018.12.29 |
RubyOnRails 6) Carrierwave 이미지 첨부 기능 (0) | 2018.12.28 |
RubyOnRails 5) Like 좋아요 기능 (0) | 2018.12.28 |