##前提・実現したいこと
kaminariを使用してページネーション機能を実装しましたが、日本語化が出来ません。
以下の様にファイル作成、コードの記述をしましたが日本語化されません。
ネットで検索しても以下の方法しか出て来ません。
ご教授いただけますでしょうか。
よろしくお願い致します。
##該当のソースコード
config/application.rb
ruby
1require_relative 'boot' 2 3require 'rails/all' 4 5# Require the gems listed in Gemfile, including any gems 6# you've limited to :test, :development, or :production. 7Bundler.require(*Rails.groups) 8 9module TrainingPost 10 class Application < Rails::Application 11 # Initialize configuration defaults for originally generated Rails version. 12 config.load_defaults 5.2 13 config.time_zone = 'Asia/Tokyo' 14 config.i18n.default_locale = :ja 15 16 # Settings in config/environments/* take precedence over those specified here. 17 # Application configuration can go into files in config/initializers 18 # -- all .rb files in that directory are automatically loaded after loading 19 # the framework and any gems in your application. 20 end 21end
config/locales/kaminari_ja.yaml
ruby
1ja: 2 views: 3 pagination: 4 first: "« 最初" 5 last: "最後 »" 6 previous: "‹ 前" 7 next: "次 ›" 8 truncate: "..." 9 helpers: 10 page_entries_info: 11 one_page: 12 display_entries: 13 zero: "" 14 one: "<strong>1-1</strong>/1件中" 15 other: "<strong>1-%{count}</strong>/%{count}件中" 16 more_pages: 17 display_entries: "<strong>%{first}-%{last}</strong>/%{total}件中"
##補足情報(FW/ツールのバージョンなど)
MacBook Pro 13
macOs 10.15.4
rails 5.2.3
PostgreSQL. Versions 9.1
あなたの回答
tips
プレビュー