操作
Bug(バグ) #2558
完了管理画面コミュニティ一覧で削除ボタンが翻訳されない
開始日:
2011-10-25
期日:
進捗率:
100%
予定工数:
3.6 で発生するか:
Unknown (未調査)
3.8 で発生するか:
Unknown (未調査)
説明
概要¶
管理画面コミュニティ一覧(pc_backend.php/community/list)で削除ボタンが翻訳されない.
参考: http://redmine.openpne.jp/issues/2520#note-13
確認バージョン¶
OpenPNE 3.4.16 (stable-3.4.x)
原因¶
下記部分において日本語がハードコーディングされている.
apps/pc_backend/modules/community/templates/listSuccess.php
25 <?php include_partial('community/communityInfo', array( 26 'community' => $community, 27 'moreInfo' => array( 28 button_to(__('削除'), 'community/delete?id='.$community->getId()) 29 ) 30 )); ?>
修正案¶
diff --git a/apps/pc_backend/modules/community/templates/listSuccess.php b/apps/pc_backend/modules/community/templates/listSuccess.php index 8806fc8..3f27d03 100644 --- a/apps/pc_backend/modules/community/templates/listSuccess.php +++ b/apps/pc_backend/modules/community/templates/listSuccess.php @@ -25,7 +25,7 @@ <?php include_partial('community/communityInfo', array( 'community' => $community, 'moreInfo' => array( - button_to(__('削除'), 'community/delete?id='.$community->getId()) + button_to(__('Delete'), 'community/delete?id='.$community->getId()) ) )); ?> <?php endforeach; ?>
ファイル
Yuya Watanabe さんが約13年前に更新
#575 の 36602a0289d2da14dc3d5d81ec8b79022bc08da4 の変更により 3.6 および 3.7 では該当部分が修正されている.
#575 は3.4で対応されていないため本チケットで修正を行うことは妥当であると思われる.
wa ta さんが約13年前に更新
- ステータス を Accepted(着手) から Pending Review(レビュー待ち) に変更
- 進捗率 を 0 から 50 に変更
更新履歴 2a6a608c643c35cb2a5541f8c5a710c1c2436227 で適用されました。
Kousuke Ebihara さんが約13年前に更新
- ステータス を Pending Review(レビュー待ち) から Pending Testing(テスト待ち) に変更
- 進捗率 を 50 から 70 に変更
Yuma Sakata さんが約13年前に更新
- ステータス を Pending Testing(テスト待ち) から Fixed(完了) に変更
- 進捗率 を 70 から 100 に変更
テストOKです。
操作