操作
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; ?>
ファイル
操作