diff options
Diffstat (limited to 'src/translator_kr.h')
-rw-r--r-- | src/translator_kr.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/translator_kr.h b/src/translator_kr.h index acaf8ee..3158405 100644 --- a/src/translator_kr.h +++ b/src/translator_kr.h @@ -1883,6 +1883,59 @@ class TranslatorKorean : public TranslatorAdapter_1_7_5 return sdate; } +////////////////////////////////////////////////////////////////////////// +// new since 1.7.5 +////////////////////////////////////////////////////////////////////////// + + /*! Header for the page with bibliographic citations */ + virtual QCString trCiteReferences() + { return "Âü°í ¹®Çå"; } + + /*! Text for copyright paragraph */ + virtual QCString trCopyright() + { return "Copyright"; } + + /*! Header for the graph showing the directory dependencies */ + virtual QCString trDirDepGraph(const char *name) + { return QCString(name) + QCString("¿¡ ´ëÇÑ µð·ºÅ丮 ÀÇÁ¸¼º ±×·¡ÇÁ:"); } + +////////////////////////////////////////////////////////////////////////// +// new since 1.8.0 +////////////////////////////////////////////////////////////////////////// + + /*! Detail level selector shown for hierarchical indices */ + virtual QCString trDetailLevel() + { return "»ó¼¼ ´Ü°è"; } + + /*! Section header for list of template parameters */ + virtual QCString trTemplateParameters() + { return "ÅÛÇø´ ÆĶó¸ÞÅÍ"; } + + /*! Used in dot graph when UML_LOOK is enabled and there are many fields */ + virtual QCString trAndMore(const QCString &number) + { return QCString("±×¸®°í ")+number+"°³ ´õ..."; } + + /*! Used file list for a Java enum */ + virtual QCString trEnumGeneratedFromFiles(bool /*single*/) + { QCString result = "ÀÌ ¿°ÅÇü¿¡ ´ëÇÑ ¹®¼°¡ ´ÙÀ½ ÆÄÀÏ(µé)·ÎºÎÅÍ »ý¼ºµÇ¾ú½À´Ï´Ù.:"; + return result; + } + + /*! Header of a Java enum page (Java enums are represented as classes). */ + virtual QCString trEnumReference(const char *name) + { return QCString(name)+" Enum Reference"; } + + /*! Used for a section containing inherited members */ + virtual QCString trInheritedFrom(const char *members,const char *what) + { return QCString(what) + QCString("(À¸)·ÎºÎÅÍ »ó¼ÓµÈ ") + QCString(members); } + + /*! Header of the sections with inherited members specific for the + * base class(es) + */ + virtual QCString trAdditionalInheritedMembers() + { return "Ãß°¡·Î »ó¼ÓµÈ ¸â¹öµé"; } + +////////////////////////////////////////////////////////////////////////// }; |