Actions
Backport(バックポート) #2867
closed管理画面コミュニティ削除画面で「削除」が英語に翻訳されない
Start date:
2011-10-20
Due date:
% Done:
100%
Estimated time:
Description
概要¶
管理画面コミュニティ削除画面(pc_backend.php/community/delete/id/○○)で「削除」が英語に翻訳されない.
原因¶
下記コード部分で「削除」という文言がハードコーディングされている.
apps/pc_backend/modules/community/templates/deleteSuccess.php
14 <form action="<?php url_for('community/delete?id='.$community->getId()) ?>" method="post"> 15 <?php include_partial('community/communityInfo', array( 16 'community' => $community, 17 'moreInfo' => array($csrfToken.'<input type="submit" value="削除" />') 18 )); ?> 19 </form> 20
修正案¶
diff --git a/apps/pc_backend/modules/community/templates/deleteSuccess.php b/apps/pc_backend/modules/community/templates/deleteSuccess.php index 00a4f5c..3f4ecfe 100644 --- a/apps/pc_backend/modules/community/templates/deleteSuccess.php +++ b/apps/pc_backend/modules/community/templates/deleteSuccess.php @@ -14,7 +14,7 @@ $csrfToken = '<input type="hidden" name="'.$form->getCSRFFieldName().'" value="' <form action="<?php url_for('community/delete?id='.$community->getId()) ?>" method="post"> <?php include_partial('community/communityInfo', array( 'community' => $community, - 'moreInfo' => array($csrfToken.'<input type="submit" value="削除" />') + 'moreInfo' => array($csrfToken.'<input type="submit" value="'.__('Delete').'" />') )); ?> </form>
参考画像¶
!http://redmine.openpne.jp/attachments/353/スクリーンショット.png!
Updated by Yuya Watanabe almost 13 years ago
- Status changed from New(新規) to Pending Review(レビュー待ち)
- % Done changed from 0 to 50
更新履歴 7b0b7d1934ff88fce7ffd77b3effd449fa7358b7 で適用されました。
Updated by Kousuke Ebihara almost 13 years ago
- Status changed from Pending Review(レビュー待ち) to Pending Testing(テスト待ち)
- % Done changed from 50 to 70
Updated by Mutsumi Imamura almost 13 years ago
- Status changed from Pending Testing(テスト待ち) to Fixed(完了)
- % Done changed from 70 to 100
テストOKです。
Actions