プロジェクト

全般

プロフィール

Bug(バグ) #2136

Yuya Watanabe約12年前に更新

h3. 概要

コメント削除時に表示されるメッセージ "Do you really delete this comment?" のPC版の翻訳が opDiaryPlugin に依存しているため、
opDiaryPlugin がない環境だと翻訳されない。
opCommunityTopicPlugin 以外のバンドルプラグインを省いた状態でも、このような翻訳漏れが発生しないような実装であるべき。

h3. 原因

他のプラグインに依存した文言の翻訳カタログが存在しない。
調査したところ以下の2つが他のプラグインに依存しているようである.
本チケットでは以下の2つについて修正を行う.
<pre>
Do you really delete this comment?
The comment was deleted successfully.
</pre>

発生箇所
* PC版イベントコメント削除確認画面
* PC版イベントコメント削除後メッセージ
* PC版トピックコメント削除確認画面
* PC版トピックコメント削除後メッセージ

h3. 修正内容

翻訳カタログを追加する.
<pre>
diff --git a/apps/pc_frontend/i18n/messages.ja.xml b/apps/pc_frontend/i18n/messages.ja.xml
index 2903d35..d3723b5 100644
--- a/apps/pc_frontend/i18n/messages.ja.xml
+++ b/apps/pc_frontend/i18n/messages.ja.xml
@@ -206,6 +206,14 @@
<source>More</source>
<target>もっと見る</target>
</trans-unit>
+ <trans-unit id="">
+ <source>Do you really delete this comment?</source>
+ <target>本当にこのコメントを削除しますか?</target>
+ </trans-unit>
+ <trans-unit id="">
+ <source>The comment was deleted successfully.</source>
+ <target>コメントを削除しました。</target>
+ </trans-unit>
</body>
</file>
</xliff>
</pre>


h3. 関連情報

戻る