したがって、en.yml のエラー メッセージを次のように変更できます。
en:
activerecord:
errors:
models:
foo:
attributes:
amount:
greater_than_or_equal_to: "Custom GTOE error message."
ただし、これは次のようになります。
Amount Custom GTOE error message.
私はそれをグローバルに削除できることを知っています:
en:
activerecord:
errors:
format: "%{message}"
しかし、%{attribute}
この検証のみを削除できますか?
ありがとう!