diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-05-12 13:04:34 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-05-12 13:04:34 (GMT) |
commit | 8dc4ff6dd22b1603f33537ff03994cc63e658768 (patch) | |
tree | 97f0e23b93d45b7917d965e6d1bb70da6c61831a /src/translator_kr.h | |
parent | ebf4b3641c9149eaf4468aa8df64e1c7517e5f0c (diff) | |
download | Doxygen-8dc4ff6dd22b1603f33537ff03994cc63e658768.zip Doxygen-8dc4ff6dd22b1603f33537ff03994cc63e658768.tar.gz Doxygen-8dc4ff6dd22b1603f33537ff03994cc63e658768.tar.bz2 |
Release-1.8.3.1-20130512
Diffstat (limited to 'src/translator_kr.h')
-rw-r--r-- | src/translator_kr.h | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/src/translator_kr.h b/src/translator_kr.h index 3e411aa..a1ae9ea 100644 --- a/src/translator_kr.h +++ b/src/translator_kr.h @@ -1938,6 +1938,125 @@ class TranslatorKorean : public TranslatorAdapter_1_7_5 { return "Ãß°¡·Î »ó¼ÓµÈ ¸â¹öµé"; } ////////////////////////////////////////////////////////////////////////// +// new since 1.8.2 +////////////////////////////////////////////////////////////////////////// + + /*! Used as a tooltip for the toggle button that appears in the + * navigation tree in the HTML output when GENERATE_TREEVIEW is + * enabled. This tooltip explains the meaning of the button. + */ + virtual QCString trPanelSynchronisationTooltip(bool enable) + { + QCString opt = enable ? "È°¼ºÈ" : "ºñÈ°¼ºÈ"; + return "ÆгΠµ¿±âȸ¦ "+opt+"Çϱâ À§ÇØ Å¬¸¯ÇϽʽÿÀ"; + } + + /*! Used in a method of an Objective-C class that is declared in a + * a category. Note that the @1 marker is required and is replaced + * by a link. + */ + virtual QCString trProvidedByCategory() + { + return "Ä«Å×°í¸® @1¿¡ ÀÇÇØ Á¦°øµÊ."; + } + + /*! Used in a method of an Objective-C category that extends a class. + * Note that the @1 marker is required and is replaced by a link to + * the class method. + */ + virtual QCString trExtendsClass() + { + return "Ŭ·¡½º @1 È®Àå."; + } + + /*! Used as the header of a list of class methods in Objective-C. + * These are similar to static public member functions in C++. + */ + virtual QCString trClassMethods() + { + return "Ŭ·¡½º ¸Þ¼Òµåµé"; + } + + /*! Used as the header of a list of instance methods in Objective-C. + * These are similar to public member functions in C++. + */ + virtual QCString trInstanceMethods() + { + return "ÀνºÅϽº ¸Þ¼Òµåµé"; + } + + /*! Used as the header of the member functions of an Objective-C class. + */ + virtual QCString trMethodDocumentation() + { + return "¸Þ¼Òµå ¹®¼È"; + } + + /*! Used as the title of the design overview picture created for the + * VHDL output. + */ + virtual QCString trDesignOverview() + { + return "µðÀÚÀÎ °³¿ä"; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.8.4 +////////////////////////////////////////////////////////////////////////// + + /** old style UNO IDL services: implemented interfaces */ + virtual QCString trInterfaces() + { return "ÀͽºÆ÷Æ®µÈ ÀÎÅÍÆäÀ̽ºµé"; } + + /** old style UNO IDL services: inherited services */ + virtual QCString trServices() + { return "Æ÷ÇÔµÈ ¼ºñ½ºµé"; } + + /** UNO IDL constant groups */ + virtual QCString trConstantGroups() + { return "»ó¼ö ±×·ìµé"; } + + /** UNO IDL constant groups */ + virtual QCString trConstantGroupReference(const char *namespaceName) + { + QCString result=namespaceName; + result+=" »ó¼ö ±×·ì ·¹ÆÛ·±½º"; + return result; + } + /** UNO IDL service page title */ + virtual QCString trServiceReference(const char *sName) + { + QCString result=(QCString)sName; + result+=" ¼ºñ½º ·¹ÆÛ·±½º"; + return result; + } + /** UNO IDL singleton page title */ + virtual QCString trSingletonReference(const char *sName) + { + QCString result=(QCString)sName; + result+=" ½Ì±ÛÅæ ·¹ÆÛ·±½º"; + return result; + } + /** UNO IDL service page */ + virtual QCString trServiceGeneratedFromFiles(bool single) + { + // single is true implies a single file + QCString result=(QCString)"ÀÌ ¼ºñ½º¿¡ ´ëÇÑ ¹®¼È´Â ´ÙÀ½ÀÇ ÆÄÀÏ"; + if (!single) result+="µé"; + result+="·ÎºÎÅÍ »ý¼ºµÇ¾ú½À´Ï´Ù.:"; + return result; + } + /** UNO IDL singleton page */ + virtual QCString trSingletonGeneratedFromFiles(bool single) + { + // single is true implies a single file + QCString result=(QCString)"ÀÌ ½Ì±ÛÅæ¿¡ ´ëÇÑ ¹®¼È´Â ´ÙÀ½ÀÇ ÆÄÀÏ"; + if (!single) result+="µé"; + result+="·ÎºÎÅÍ »ý¼ºµÇ¾ú½À´Ï´Ù.:"; + return result; + } + +////////////////////////////////////////////////////////////////////////// }; |