プロジェクト

全般

プロフィール

Backport(バックポート) #4145

完了

Bug(バグ) #4143: 「%my_friend%」の翻訳が「%my_friend%まで公開」になっている

「%my_friend%」の翻訳が「%my_friend%まで公開」になっている

kaoru n さんがほぼ8年前に追加. ほぼ7年前に更新.

ステータス:
Fixed(完了)
優先度:
Normal(通常)
担当者:
対象バージョン:
開始日:
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>

他の形式にエクスポート: Atom PDF