rails-i18n 8.0.2 → 8.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e0bb9ed81d26586c80a6b11f73387b1596cbdc3a93c64045f7fe2f088cfd15e1
4
- data.tar.gz: a4a5914f500ff7b1d6273b979cff5741cdcf378a48cd2889b5503ad252a14fe4
3
+ metadata.gz: 34c8f52b31e8bbae397fad2fd597dea5f06cefbb296d0dd717cbad0272935892
4
+ data.tar.gz: 349e517755c82f8c8df3e49986d6e265ef6041110e5612346338019038908a5f
5
5
  SHA512:
6
- metadata.gz: 3819a8d1d0184c9c6797d375a6c4e1ee0891eaab1c24542f3f18ddabfb00163512104d84f238bf61bd258581e8153b6cf671ed7619f4e77a6a4f8bd0d59d933f
7
- data.tar.gz: 4bc7a77f4159a4a72c995526d6984c310d45c7166dbe7f1dfcbdaad8f281883fbeea5ea4a912a2648daca19ec78b4010506911a50f11b379351c6a745c79b60a
6
+ metadata.gz: cbca241fefb2cb64ad7f7e9b74dac3c60312b10e978bffd516a8c34559c5d9a2ef50645095ba899bca5d31aa9c83979594365c2cced7d0704aea32adaf34ce74
7
+ data.tar.gz: 37e9af3026d499cd15237d954aeb48ae116adf5049005d51540d649dcc259e627104779a572fa0ec21ad48f444585a928f6fe7431029d3287cd0961b3360d791
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
- ## unreleased
1
+ ## Unreleased
2
2
 
3
+ ## 8.1.0 (2025-11-24)
4
+
5
+ - Update following locales:
6
+ - Korean (ko): Remove `%{attribute}` placeholder from error messages
7
+ - German (de): Add missing key (`errors.messages.in`)
8
+ - Italian (it): Add missing key (`errors.messages`, `errors.messages.password_too_long`, `number.currency.format.negative_format`, `number.format.round_mode`, `number.human.storage_units.units.zb`)
9
+ - Ukrainian (uk): Add missing key (`errors.messages.in`)
10
+ - Update to Rails 8.1.x
3
11
 
4
12
  ## 8.0.2 (2025-08-16)
5
13
 
data/rails/locale/de.yml CHANGED
@@ -119,6 +119,7 @@ de:
119
119
  exclusion: ist nicht verfügbar
120
120
  greater_than: muss größer als %{count} sein
121
121
  greater_than_or_equal_to: muss größer oder gleich %{count} sein
122
+ in: muss in %{count} enthalten sein
122
123
  inclusion: ist kein gültiger Wert
123
124
  invalid: ist nicht gültig
124
125
  less_than: muss kleiner als %{count} sein
data/rails/locale/it.yml CHANGED
@@ -118,6 +118,7 @@ it:
118
118
  exclusion: è riservato
119
119
  greater_than: deve essere maggiore di %{count}
120
120
  greater_than_or_equal_to: deve essere maggiore o uguale a %{count}
121
+ in: deve essere uno tra %{count}
121
122
  inclusion: non è compreso tra le opzioni disponibili
122
123
  invalid: non è valido
123
124
  less_than: deve essere minore di %{count}
@@ -127,6 +128,7 @@ it:
127
128
  not_an_integer: non è un numero intero
128
129
  odd: deve essere dispari
129
130
  other_than: devono essere di numero diverso da %{count}
131
+ password_too_long: è troppo lunga
130
132
  present: deve essere lasciato in bianco
131
133
  required: deve esistere
132
134
  taken: è già presente
@@ -156,6 +158,7 @@ it:
156
158
  format:
157
159
  delimiter: "."
158
160
  format: "%n %u"
161
+ negative_format: "-%n %u"
159
162
  precision: 2
160
163
  separator: ","
161
164
  significant: false
@@ -164,6 +167,7 @@ it:
164
167
  format:
165
168
  delimiter: "."
166
169
  precision: 2
170
+ round_mode: default
167
171
  separator: ","
168
172
  significant: false
169
173
  strip_insignificant_zeros: false
@@ -194,6 +198,7 @@ it:
194
198
  mb: MB
195
199
  pb: PB
196
200
  tb: TB
201
+ zb: ZB
197
202
  percentage:
198
203
  format:
199
204
  delimiter: ''
data/rails/locale/ko.yml CHANGED
@@ -85,31 +85,31 @@ ko:
85
85
  errors:
86
86
  format: "%{message}"
87
87
  messages:
88
- accepted: "%{attribute}을(를) 반드시 확인해야 합니다"
89
- blank: "%{attribute}에 내용을 입력해 주세요"
90
- confirmation: "%{attribute}은(는) 서로 일치해야 합니다"
91
- empty: "%{attribute}에 내용을 입력해 주세요"
92
- equal_to: "%{attribute}은(는) %{count}와(과) 같아야 합니다"
93
- even: "%{attribute}에 짝수를 입력해 주세요"
94
- exclusion: "%{attribute}은(는) 이미 예약되어 있는 값입니다"
95
- greater_than: "%{attribute}은(는) %{count}보다 커야 합니다"
96
- greater_than_or_equal_to: "%{attribute}은(는) %{count}보다 크거나 같아야 합니다"
97
- in: "%{attribute}은(는) %{count}범위 안에 있어야 합니다"
98
- inclusion: "%{attribute}은(는) 목록에 포함되어 있는 값이 아닙니다"
99
- invalid: "%{attribute}은(는) 올바르지 않은 값입니다"
100
- less_than: "%{attribute}은(는) %{count}보다 작아야 합니다"
101
- less_than_or_equal_to: "%{attribute}은(는) %{count}와(과) 작거나 같아야 합니다"
102
- model_invalid: "%{attribute}에 대한 데이터 검증에 실패하였습니다: %{errors}"
103
- not_a_number: "%{attribute}에 숫자를 입력해 주세요"
104
- not_an_integer: "%{attribute}에 정수를 입력해 주세요"
105
- odd: "%{attribute}에 홀수를 입력해 주세요"
106
- other_than: "%{attribute}은(는) %{count}와(과) 달라야 합니다"
107
- present: "%{attribute}은(는) 비어있어야 합니다"
108
- required: "%{attribute}은(는) 반드시 있어야 합니다"
109
- taken: "%{attribute}은(는) 이미 존재합니다"
110
- too_long: "%{attribute}은(는) %{count}자를 넘을 수 없습니다"
111
- too_short: "%{attribute}은(는) 적어도 %{count}자를 넘어야 합니다"
112
- wrong_length: "%{attribute}은(는) %{count}자여야 합니다"
88
+ accepted: 항목을 반드시 확인해 주세요
89
+ blank: 내용을 입력해 주세요
90
+ confirmation: 값이 서로 일치해야 합니다
91
+ empty: 값을 입력해 주세요
92
+ equal_to: 값은 %{count}와(과) 같아야 합니다
93
+ even: 짝수를 입력해 주세요
94
+ exclusion: 이미 예약된 값입니다
95
+ greater_than: 값은 %{count}보다 커야 합니다
96
+ greater_than_or_equal_to: 값은 %{count}보다 크거나 같아야 합니다
97
+ in: 값은 %{count} 범위 안에 있어야 합니다
98
+ inclusion: 목록에 포함된 값이 아닙니다
99
+ invalid: 올바르지 않은 값입니다
100
+ less_than: 값은 %{count}보다 작아야 합니다
101
+ less_than_or_equal_to: 값은 %{count}보다 작거나 같아야 합니다
102
+ model_invalid: '데이터 검증에 실패하였습니다: %{errors}'
103
+ not_a_number: 숫자를 입력해 주세요
104
+ not_an_integer: 정수를 입력해 주세요
105
+ odd: 홀수를 입력해 주세요
106
+ other_than: 값은 %{count}와(과) 달라야 합니다
107
+ present: 값은 비어 있어야 합니다
108
+ required: 값이 반드시 필요합니다
109
+ taken: 이미 존재하는 값입니다
110
+ too_long: 값은 %{count}자를 넘을 수 없습니다
111
+ too_short: 값은 최소 %{count}자여야 합니다
112
+ wrong_length: 값은 %{count}자여야 합니다
113
113
  template:
114
114
  body: 아래 문제를 확인해 주세요.
115
115
  header: "%{count}개의 오류로 인해 %{model}을(를) 저장할 수 없습니다"
@@ -172,7 +172,7 @@ ko:
172
172
  support:
173
173
  array:
174
174
  last_word_connector: ", "
175
- two_words_connector: ', '
175
+ two_words_connector: ", "
176
176
  words_connector: ", "
177
177
  time:
178
178
  am: 오전
data/rails/locale/uk.yml CHANGED
@@ -142,6 +142,7 @@ uk:
142
142
  exclusion: зарезервовано
143
143
  greater_than: має бути більше ніж %{count}
144
144
  greater_than_or_equal_to: має бути більше ніж або дорівнювати %{count}
145
+ in: має входити до %{count}
145
146
  inclusion: не включено до переліку
146
147
  invalid: недійсний
147
148
  less_than: має бути менше ніж %{count}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.0.2
4
+ version: 8.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rails I18n Group