summaryrefslogtreecommitdiffstats
path: root/src/translator_jp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translator_jp.h')
-rw-r--r--src/translator_jp.h25
1 files changed, 22 insertions, 3 deletions
diff --git a/src/translator_jp.h b/src/translator_jp.h
index 0dbfc90..1c17be8 100644
--- a/src/translator_jp.h
+++ b/src/translator_jp.h
@@ -29,7 +29,7 @@
#ifndef TRANSLATOR_JP_H
#define TRANSLATOR_JP_H
-class TranslatorJapanese : public TranslatorAdapter_1_2_13
+class TranslatorJapanese : public Translator
{
private:
/*! The decode() can change euc into sjis */
@@ -484,7 +484,7 @@ class TranslatorJapanese : public TranslatorAdapter_1_2_13
*/
virtual QCString trWrittenBy()
{
- return decode("担当");
+ return decode("作者");
}
/*! this text is put before a class diagram */
@@ -1317,6 +1317,25 @@ class TranslatorJapanese : public TranslatorAdapter_1_2_13
return decode("参照");
}
-};
+//////////////////////////////////////////////////////////////////////////
+// new since 1.2.13
+//////////////////////////////////////////////////////////////////////////
+
+ /*! used in member documentation blocks to produce a list of
+ * members that are implemented by this one.
+ */
+ virtual QCString trImplementedFromList(int numEntries)
+ {
+ return trWriteList(numEntries)+decode("を実装しています")+".";
+ }
+ /*! used in member documentation blocks to produce a list of
+ * all members that implement this abstract member.
+ */
+ virtual QCString trImplementedInList(int numEntries)
+ {
+ return trWriteList(numEntries)+decode("に実装されています")+".";
+ }
+
+};
#endif