質問編集履歴
2
a
test
CHANGED
File without changes
|
test
CHANGED
@@ -567,3 +567,11 @@
|
|
567
567
|
|
568
568
|
|
569
569
|
```
|
570
|
+
|
571
|
+
|
572
|
+
|
573
|
+
追記2022.01.08
|
574
|
+
|
575
|
+
---
|
576
|
+
|
577
|
+
![イメージ説明](012a256b161788a5b850fd232c6a4221.png)
|
1
あ
test
CHANGED
File without changes
|
test
CHANGED
@@ -113,3 +113,457 @@
|
|
113
113
|
できればeachで実装できたら良いのですが、`[""]`を取り除く方法はないでしょうか?
|
114
114
|
|
115
115
|
よろしくお願いします。
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
追記2022.01.07 19:05
|
120
|
+
|
121
|
+
---
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
以下`ja.yml`です。
|
126
|
+
|
127
|
+
```
|
128
|
+
|
129
|
+
---
|
130
|
+
|
131
|
+
ja:
|
132
|
+
|
133
|
+
activerecord:
|
134
|
+
|
135
|
+
attributes:
|
136
|
+
|
137
|
+
user:
|
138
|
+
|
139
|
+
name: 名前
|
140
|
+
|
141
|
+
email: メールアドレス
|
142
|
+
|
143
|
+
password: パスワード
|
144
|
+
|
145
|
+
password_confirmation: パスワード確認
|
146
|
+
|
147
|
+
activated: アクティブフラグ
|
148
|
+
|
149
|
+
admin: 管理者フラグ
|
150
|
+
|
151
|
+
errors:
|
152
|
+
|
153
|
+
format: "%{attribute}%{message}"
|
154
|
+
|
155
|
+
messages:
|
156
|
+
|
157
|
+
empty: "%{attribute}を入力してください"
|
158
|
+
|
159
|
+
required: "%{attribute}を入力してください"
|
160
|
+
|
161
|
+
blank: "「%{attribute}」を入力してください"
|
162
|
+
|
163
|
+
record_invalid: "バリデーションに失敗しました: %{errors}"
|
164
|
+
|
165
|
+
restrict_dependent_destroy:
|
166
|
+
|
167
|
+
has_one: "%{record}が存在しているので削除できません"
|
168
|
+
|
169
|
+
has_many: "%{record}が存在しているので削除できません"
|
170
|
+
|
171
|
+
date:
|
172
|
+
|
173
|
+
abbr_day_names:
|
174
|
+
|
175
|
+
- 日
|
176
|
+
|
177
|
+
- 月
|
178
|
+
|
179
|
+
- 火
|
180
|
+
|
181
|
+
- 水
|
182
|
+
|
183
|
+
- 木
|
184
|
+
|
185
|
+
- 金
|
186
|
+
|
187
|
+
- 土
|
188
|
+
|
189
|
+
abbr_month_names:
|
190
|
+
|
191
|
+
-
|
192
|
+
|
193
|
+
- 1月
|
194
|
+
|
195
|
+
- 2月
|
196
|
+
|
197
|
+
- 3月
|
198
|
+
|
199
|
+
- 4月
|
200
|
+
|
201
|
+
- 5月
|
202
|
+
|
203
|
+
- 6月
|
204
|
+
|
205
|
+
- 7月
|
206
|
+
|
207
|
+
- 8月
|
208
|
+
|
209
|
+
- 9月
|
210
|
+
|
211
|
+
- 10月
|
212
|
+
|
213
|
+
- 11月
|
214
|
+
|
215
|
+
- 12月
|
216
|
+
|
217
|
+
day_names:
|
218
|
+
|
219
|
+
- 日曜日
|
220
|
+
|
221
|
+
- 月曜日
|
222
|
+
|
223
|
+
- 火曜日
|
224
|
+
|
225
|
+
- 水曜日
|
226
|
+
|
227
|
+
- 木曜日
|
228
|
+
|
229
|
+
- 金曜日
|
230
|
+
|
231
|
+
- 土曜日
|
232
|
+
|
233
|
+
formats:
|
234
|
+
|
235
|
+
default: "%Y/%m/%d"
|
236
|
+
|
237
|
+
long: "%Y年%m月%d日(%a)"
|
238
|
+
|
239
|
+
short: "%m/%d"
|
240
|
+
|
241
|
+
month_names:
|
242
|
+
|
243
|
+
-
|
244
|
+
|
245
|
+
- 1月
|
246
|
+
|
247
|
+
- 2月
|
248
|
+
|
249
|
+
- 3月
|
250
|
+
|
251
|
+
- 4月
|
252
|
+
|
253
|
+
- 5月
|
254
|
+
|
255
|
+
- 6月
|
256
|
+
|
257
|
+
- 7月
|
258
|
+
|
259
|
+
- 8月
|
260
|
+
|
261
|
+
- 9月
|
262
|
+
|
263
|
+
- 10月
|
264
|
+
|
265
|
+
- 11月
|
266
|
+
|
267
|
+
- 12月
|
268
|
+
|
269
|
+
order:
|
270
|
+
|
271
|
+
- :year
|
272
|
+
|
273
|
+
- :month
|
274
|
+
|
275
|
+
- :day
|
276
|
+
|
277
|
+
datetime:
|
278
|
+
|
279
|
+
distance_in_words:
|
280
|
+
|
281
|
+
about_x_hours:
|
282
|
+
|
283
|
+
one: 約1時間
|
284
|
+
|
285
|
+
other: 約%{count}時間
|
286
|
+
|
287
|
+
about_x_months:
|
288
|
+
|
289
|
+
one: 約1ヶ月
|
290
|
+
|
291
|
+
other: 約%{count}ヶ月
|
292
|
+
|
293
|
+
about_x_years:
|
294
|
+
|
295
|
+
one: 約1年
|
296
|
+
|
297
|
+
other: 約%{count}年
|
298
|
+
|
299
|
+
almost_x_years:
|
300
|
+
|
301
|
+
one: 1年弱
|
302
|
+
|
303
|
+
other: "%{count}年弱"
|
304
|
+
|
305
|
+
half_a_minute: 30秒前後
|
306
|
+
|
307
|
+
less_than_x_seconds:
|
308
|
+
|
309
|
+
one: 1秒以内
|
310
|
+
|
311
|
+
other: "%{count}秒未満"
|
312
|
+
|
313
|
+
less_than_x_minutes:
|
314
|
+
|
315
|
+
one: 1分以内
|
316
|
+
|
317
|
+
other: "%{count}分未満"
|
318
|
+
|
319
|
+
over_x_years:
|
320
|
+
|
321
|
+
one: 1年以上
|
322
|
+
|
323
|
+
other: "%{count}年以上"
|
324
|
+
|
325
|
+
x_seconds:
|
326
|
+
|
327
|
+
one: 1秒
|
328
|
+
|
329
|
+
other: "%{count}秒"
|
330
|
+
|
331
|
+
x_minutes:
|
332
|
+
|
333
|
+
one: 1分
|
334
|
+
|
335
|
+
other: "%{count}分"
|
336
|
+
|
337
|
+
x_days:
|
338
|
+
|
339
|
+
one: 1日
|
340
|
+
|
341
|
+
other: "%{count}日"
|
342
|
+
|
343
|
+
x_months:
|
344
|
+
|
345
|
+
one: 1ヶ月
|
346
|
+
|
347
|
+
other: "%{count}ヶ月"
|
348
|
+
|
349
|
+
x_years:
|
350
|
+
|
351
|
+
one: 1年
|
352
|
+
|
353
|
+
other: "%{count}年"
|
354
|
+
|
355
|
+
prompts:
|
356
|
+
|
357
|
+
second: 秒
|
358
|
+
|
359
|
+
minute: 分
|
360
|
+
|
361
|
+
hour: 時
|
362
|
+
|
363
|
+
day: 日
|
364
|
+
|
365
|
+
month: 月
|
366
|
+
|
367
|
+
year: 年
|
368
|
+
|
369
|
+
errors:
|
370
|
+
|
371
|
+
format: "%{attribute}%{message}"
|
372
|
+
|
373
|
+
messages:
|
374
|
+
|
375
|
+
accepted: を受諾してください
|
376
|
+
|
377
|
+
blank: を入力してください
|
378
|
+
|
379
|
+
confirmation: "「%{attribute}」との入力が一致しません"
|
380
|
+
|
381
|
+
empty: を入力してください
|
382
|
+
|
383
|
+
equal_to: は%{count}にしてください
|
384
|
+
|
385
|
+
even: は偶数にしてください
|
386
|
+
|
387
|
+
exclusion: は予約されています
|
388
|
+
|
389
|
+
greater_than: は%{count}より大きい値にしてください
|
390
|
+
|
391
|
+
greater_than_or_equal_to: は%{count}以上の値にしてください
|
392
|
+
|
393
|
+
inclusion: は一覧にありません
|
394
|
+
|
395
|
+
invalid: は不正な値です
|
396
|
+
|
397
|
+
less_than: は%{count}より小さい値にしてください
|
398
|
+
|
399
|
+
less_than_or_equal_to: は%{count}以下の値にしてください
|
400
|
+
|
401
|
+
model_invalid: "バリデーションに失敗しました: %{errors}"
|
402
|
+
|
403
|
+
not_a_number: は数値で入力してください
|
404
|
+
|
405
|
+
not_an_integer: は整数で入力してください
|
406
|
+
|
407
|
+
odd: は奇数にしてください
|
408
|
+
|
409
|
+
other_than: は%{count}以外の値にしてください
|
410
|
+
|
411
|
+
present: は入力しないでください
|
412
|
+
|
413
|
+
required: を入力してください
|
414
|
+
|
415
|
+
taken: はすでに存在します
|
416
|
+
|
417
|
+
too_long: は%{count}文字以内で入力してください
|
418
|
+
|
419
|
+
too_short: は%{count}文字以上で入力してください
|
420
|
+
|
421
|
+
wrong_length: は%{count}文字で入力してください
|
422
|
+
|
423
|
+
template:
|
424
|
+
|
425
|
+
body: 次の項目を確認してください
|
426
|
+
|
427
|
+
header:
|
428
|
+
|
429
|
+
one: "%{model}にエラーが発生しました"
|
430
|
+
|
431
|
+
other: "%{model}に%{count}個のエラーが発生しました"
|
432
|
+
|
433
|
+
helpers:
|
434
|
+
|
435
|
+
select:
|
436
|
+
|
437
|
+
prompt: 選択してください
|
438
|
+
|
439
|
+
submit:
|
440
|
+
|
441
|
+
create: 登録する
|
442
|
+
|
443
|
+
submit: 保存する
|
444
|
+
|
445
|
+
update: 更新する
|
446
|
+
|
447
|
+
number:
|
448
|
+
|
449
|
+
currency:
|
450
|
+
|
451
|
+
format:
|
452
|
+
|
453
|
+
delimiter: ","
|
454
|
+
|
455
|
+
format: "%n%u"
|
456
|
+
|
457
|
+
precision: 0
|
458
|
+
|
459
|
+
separator: "."
|
460
|
+
|
461
|
+
significant: false
|
462
|
+
|
463
|
+
strip_insignificant_zeros: false
|
464
|
+
|
465
|
+
unit: 円
|
466
|
+
|
467
|
+
format:
|
468
|
+
|
469
|
+
delimiter: ","
|
470
|
+
|
471
|
+
precision: 3
|
472
|
+
|
473
|
+
separator: "."
|
474
|
+
|
475
|
+
significant: false
|
476
|
+
|
477
|
+
strip_insignificant_zeros: false
|
478
|
+
|
479
|
+
human:
|
480
|
+
|
481
|
+
decimal_units:
|
482
|
+
|
483
|
+
format: "%n %u"
|
484
|
+
|
485
|
+
units:
|
486
|
+
|
487
|
+
billion: 十億
|
488
|
+
|
489
|
+
million: 百万
|
490
|
+
|
491
|
+
quadrillion: 千兆
|
492
|
+
|
493
|
+
thousand: 千
|
494
|
+
|
495
|
+
trillion: 兆
|
496
|
+
|
497
|
+
unit: ""
|
498
|
+
|
499
|
+
format:
|
500
|
+
|
501
|
+
delimiter: ""
|
502
|
+
|
503
|
+
precision: 3
|
504
|
+
|
505
|
+
significant: true
|
506
|
+
|
507
|
+
strip_insignificant_zeros: true
|
508
|
+
|
509
|
+
storage_units:
|
510
|
+
|
511
|
+
format: "%n%u"
|
512
|
+
|
513
|
+
units:
|
514
|
+
|
515
|
+
byte: バイト
|
516
|
+
|
517
|
+
eb: EB
|
518
|
+
|
519
|
+
gb: GB
|
520
|
+
|
521
|
+
kb: KB
|
522
|
+
|
523
|
+
mb: MB
|
524
|
+
|
525
|
+
pb: PB
|
526
|
+
|
527
|
+
tb: TB
|
528
|
+
|
529
|
+
percentage:
|
530
|
+
|
531
|
+
format:
|
532
|
+
|
533
|
+
delimiter: ""
|
534
|
+
|
535
|
+
format: "%n%"
|
536
|
+
|
537
|
+
precision:
|
538
|
+
|
539
|
+
format:
|
540
|
+
|
541
|
+
delimiter: ""
|
542
|
+
|
543
|
+
support:
|
544
|
+
|
545
|
+
array:
|
546
|
+
|
547
|
+
last_word_connector: "、"
|
548
|
+
|
549
|
+
two_words_connector: "、"
|
550
|
+
|
551
|
+
words_connector: "、"
|
552
|
+
|
553
|
+
time:
|
554
|
+
|
555
|
+
am: 午前
|
556
|
+
|
557
|
+
formats:
|
558
|
+
|
559
|
+
default: "%Y年%m月%d日(%a) %H時%M分%S秒 %z"
|
560
|
+
|
561
|
+
long: "%Y/%m/%d %H:%M"
|
562
|
+
|
563
|
+
short: "%m/%d %H:%M"
|
564
|
+
|
565
|
+
pm: 午後
|
566
|
+
|
567
|
+
|
568
|
+
|
569
|
+
```
|