Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ChapterIndex#display_stringのi18n展開で番号と見出しの関係をカスタマイズしたい #886

Closed
kmuto opened this issue Dec 15, 2017 · 5 comments

Comments

@kmuto
Copy link
Owner

kmuto commented Dec 15, 2017

今はlib/review/book/index.rbのChapterIndexは

def display_string(id)
  "#{number(id)}#{I18n.t('chapter_quote', title(id))}"
end

となっているのだが、これだとどうやっても 第n章「見出し」といった作り方しかできず、「第n章 見出し」というlocale.ymlによる調整ができない。

def display_string(id)
  I18n.t('chapter_quote', number(id), title(id))
end

にしてchapter_quoteで2つの%sを取るようにすればカスタマイズはしやすくなるが、後方互換性を破壊してしまう…。

@kdmsnr
Copy link
Collaborator

kdmsnr commented Dec 15, 2017

chapter_title_prefix/postfix みたいなのを作るとかですかねえ

@kmuto
Copy link
Owner Author

kmuto commented Dec 18, 2017

泥縄になりそうだなぁ…
chapter_quoteに代わる別名を定義してそっちへの移行を促す、というあたりでどうだろう。

@kmuto
Copy link
Owner Author

kmuto commented Dec 18, 2017

%sが2つなかったらレガシー扱い、というロジックで考えてみます。

@kmuto
Copy link
Owner Author

kmuto commented Dec 18, 2017

inline_hdでも使ってた…うーん

@kmuto
Copy link
Owner Author

kmuto commented Aug 30, 2018

#890 対処

@kmuto kmuto closed this as completed Aug 30, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants