操作
Backport(バックポート) #4145
完了Bug(バグ) #4143: 「%my_friend%」の翻訳が「%my_friend%まで公開」になっている
「%my_friend%」の翻訳が「%my_friend%まで公開」になっている
開始日:
2017-02-13
期日:
進捗率:
100%
予定工数:
説明
Overview (現象)¶
翻訳カタログに、下記のような設定があるため、ナビゲーションに my_friend を設定すると %my_friend%まで公開 と表示されてしまう。
https://github.com/openpne/OpenPNE3/blob/master/apps/pc_frontend/i18n/messages.ja.xml#L289-L296
<trans-unit id=""> <source>%my_friend%</source> <target>%my_friend%まで公開</target> </trans-unit> <trans-unit id=""> <source>Only Open to %my_friend%</source> <target>%my_friend%まで公開</target> </trans-unit>
https://github.com/openpne/OpenPNE3/blob/master/apps/mobile_frontend/i18n/messages.ja.xml#L117-L124
<trans-unit id=""> <source>%my_friend%</source> <target>%my_friend%まで公開</target> </trans-unit> <trans-unit id=""> <source>Only Open to %my_friend%</source> <target>%my_friend%まで公開</target> </trans-unit>
https://github.com/openpne/OpenPNE3/blob/master/apps/pc_backend/i18n/messages.ja.xml#L51-L54
<trans-unit id=""> <source>%my_friend%</source> <target>%my_friend%まで公開</target> </trans-unit>
Causes (原因)¶
翻訳カタログに設定されている
Way to fix (修正内容)¶
翻訳カタログに下記のように設定する
<trans-unit id=""> <source>%my_friend%</source> <target>%my_friend%</target> </trans-unit> <trans-unit id=""> <source>Only Open to %my_friend%</source> <target>%my_friend%まで公開</target> </trans-unit>
操作