プロジェクト

全般

プロフィール

Bug(バグ) #2558

完了

管理画面コミュニティ一覧で削除ボタンが翻訳されない

Yuya Watanabe さんが約13年前に追加. 約7年前に更新.

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

ファイル

スクリーンショット.png (30 KB) スクリーンショット.png Yuya Watanabe, 2011-10-25 14:37

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