【Ruby on Rails】오류의 일본어 표기
목표
개발 환경
루비 2.5.7
Rails 5.2.4.3
OS: macOS Catalina
전제
※ ▶◯◯를 선택하면 설명 등이 나오므로,
잘 모르는 경우의 참고로 해 주시면 좋겠습니다.
【Ruby on Rails】 에러 메시지의 개별 표시
이쪽의 기사와 대비시키면서 보면 알기 쉽습니다.
흐름
1 gem 도입
2 config/application.rb 편집
3 config/locales/ko.yml 작성, 편집
gem 도입
Gemfilegem 'rails-i18n'
터미널$ bundle install
config/application.rb 편집
하기 2행을 추가.
config/application.rb class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 5.2
config.i18n.default_locale = :ja # ←追加
config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] # ←追加
# Settings in config/environments/* take precedence over those specified here.
# Application configuration can go into files in config/initializers
# -- all .rb files in that directory are automatically loaded after loading
# the framework and any gems in your application.
end
config/locales/ko.yml
config/locales/ko.ymlja:
activerecord:
attributes:
user:
email: 'メールアドレス'
password: 'パスワード'
password_confirmation: 'パスワード(確認用)'
name: '名前'
보충 【user:】
모델명입니다. 같은 들여 쓰기로 작성하면,
다른 모델의 일본어 표기도 가능합니다.
Reference
이 문제에 관하여(【Ruby on Rails】오류의 일본어 표기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/japwork/items/aba5a5883d0588ce926f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
루비 2.5.7
Rails 5.2.4.3
OS: macOS Catalina
전제
※ ▶◯◯를 선택하면 설명 등이 나오므로,
잘 모르는 경우의 참고로 해 주시면 좋겠습니다.
【Ruby on Rails】 에러 메시지의 개별 표시
이쪽의 기사와 대비시키면서 보면 알기 쉽습니다.
흐름
1 gem 도입
2 config/application.rb 편집
3 config/locales/ko.yml 작성, 편집
gem 도입
Gemfilegem 'rails-i18n'
터미널$ bundle install
config/application.rb 편집
하기 2행을 추가.
config/application.rb class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 5.2
config.i18n.default_locale = :ja # ←追加
config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] # ←追加
# Settings in config/environments/* take precedence over those specified here.
# Application configuration can go into files in config/initializers
# -- all .rb files in that directory are automatically loaded after loading
# the framework and any gems in your application.
end
config/locales/ko.yml
config/locales/ko.ymlja:
activerecord:
attributes:
user:
email: 'メールアドレス'
password: 'パスワード'
password_confirmation: 'パスワード(確認用)'
name: '名前'
보충 【user:】
모델명입니다. 같은 들여 쓰기로 작성하면,
다른 모델의 일본어 표기도 가능합니다.
Reference
이 문제에 관하여(【Ruby on Rails】오류의 일본어 표기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/japwork/items/aba5a5883d0588ce926f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
1 gem 도입
2 config/application.rb 편집
3 config/locales/ko.yml 작성, 편집
gem 도입
Gemfilegem 'rails-i18n'
터미널$ bundle install
config/application.rb 편집
하기 2행을 추가.
config/application.rb class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 5.2
config.i18n.default_locale = :ja # ←追加
config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] # ←追加
# Settings in config/environments/* take precedence over those specified here.
# Application configuration can go into files in config/initializers
# -- all .rb files in that directory are automatically loaded after loading
# the framework and any gems in your application.
end
config/locales/ko.yml
config/locales/ko.ymlja:
activerecord:
attributes:
user:
email: 'メールアドレス'
password: 'パスワード'
password_confirmation: 'パスワード(確認用)'
name: '名前'
보충 【user:】
모델명입니다. 같은 들여 쓰기로 작성하면,
다른 모델의 일본어 표기도 가능합니다.
Reference
이 문제에 관하여(【Ruby on Rails】오류의 일본어 표기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/japwork/items/aba5a5883d0588ce926f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
gem 'rails-i18n'
$ bundle install
하기 2행을 추가.
config/application.rb
class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 5.2
config.i18n.default_locale = :ja # ←追加
config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] # ←追加
# Settings in config/environments/* take precedence over those specified here.
# Application configuration can go into files in config/initializers
# -- all .rb files in that directory are automatically loaded after loading
# the framework and any gems in your application.
end
config/locales/ko.yml
config/locales/ko.ymlja:
activerecord:
attributes:
user:
email: 'メールアドレス'
password: 'パスワード'
password_confirmation: 'パスワード(確認用)'
name: '名前'
보충 【user:】
모델명입니다. 같은 들여 쓰기로 작성하면,
다른 모델의 일본어 표기도 가능합니다.
Reference
이 문제에 관하여(【Ruby on Rails】오류의 일본어 표기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/japwork/items/aba5a5883d0588ce926f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
ja:
activerecord:
attributes:
user:
email: 'メールアドレス'
password: 'パスワード'
password_confirmation: 'パスワード(確認用)'
name: '名前'
Reference
이 문제에 관하여(【Ruby on Rails】오류의 일본어 표기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/japwork/items/aba5a5883d0588ce926f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)