Update book.rb

fix language error translation
This commit is contained in:
chiu 2019-08-14 16:01:55 +08:00
parent 40f9361ea4
commit f9f6108f30
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ class Book
end
value = value.join(" / ")
when "language"
value = I18n.t("personal_book.#{self.language}") if !self.language.nil? rescue ""
value = I18n.t("#{self.language}") if !self.language.nil? rescue ""
when "publish_date", "publication_date"
value = self.send(field).to_date.strftime("%Y-%m-%d") rescue nil
when "file"