Actions
Backport(バックポート) #2779
closedコミュニティ詳細画面の「Community Top」リンク文言が翻訳されていない
Start date:
2011-11-18
Due date:
% Done:
100%
Estimated time:
Description
Overview (現象)¶
コミュニティ詳細画面(/community/detail/id/xxx) の画面下部にある「Community Top」というリンクの文言が翻訳されていない
現象確認バージョン¶
OpenPNE 3.7.0-dev
OpenPNE 3.6.0
OpenPNE 3.4.19
Causes (原因)¶
翻訳カタログが存在しない
Way to fix (修正内容)¶
翻訳カタログを追加する
diff --git a/apps/mobile_frontend/i18n/messages.ja.xml b/apps/mobile_frontend/i18n/messages.ja.xml index b29ff74..02e4d5e 100644 --- a/apps/mobile_frontend/i18n/messages.ja.xml +++ b/apps/mobile_frontend/i18n/messages.ja.xml @@ -515,6 +515,10 @@ <target>コミュニティ検索</target> </trans-unit> <trans-unit id=""> + <source>%Community% Top</source> + <target>%Community% トップ</target> + </trans-unit> + <trans-unit id=""> <source>Categories</source> <target>カテゴリ</target> </trans-unit> diff --git a/apps/mobile_frontend/modules/community/templates/detailSuccess.php b/apps/mobile_frontend/modules/community/templates/detailSuccess.php index 257d7f6..d5492a7 100644 --- a/apps/mobile_frontend/modules/community/templates/detailSuccess.php +++ b/apps/mobile_frontend/modules/community/templates/detailSuccess.php @@ -37,4 +37,4 @@ $list[__('%community% Description', array(), 'form_community')] = op_auto_link_t <hr color="<?php echo $op_color['core_color_11'] ?>"> -<?php echo link_to(__('Community Top'), '@community_home?id='.$community->getId()) ?> +<?php echo link_to(__('%Community% Top'), '@community_home?id='.$community->getId()) ?>
Updated by Yuya Watanabe almost 13 years ago
- Status changed from Accepted(着手) to Pending Review(レビュー待ち)
- % Done changed from 0 to 50
更新履歴 4da0b42a1a2e12aacb864503b36b31f913ccb8e8 で適用されました。
Updated by Kousuke Ebihara almost 13 years ago
- Status changed from Pending Review(レビュー待ち) to Pending Testing(テスト待ち)
- % Done changed from 50 to 70
Updated by Yuma Sakata almost 13 years ago
- Status changed from Pending Testing(テスト待ち) to Fixed(完了)
- % Done changed from 70 to 100
テストOKです。
Actions