Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
32aa9f2a
Commit
32aa9f2a
authored
Aug 30, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 735475 - Same Expression in translator_kr.h
parent
98a9b24c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
24 deletions
+24
-24
translator_kr.h
src/translator_kr.h
+24
-24
No files found.
src/translator_kr.h
View file @
32aa9f2a
...
...
@@ -1203,9 +1203,9 @@ class TranslatorKorean : public Translator
* be followed by a single name or by a list of names
* of the category.
*/
virtual
QCString
trClass
(
bool
first_capital
,
bool
singular
)
virtual
QCString
trClass
(
bool
,
bool
singular
)
{
QCString
result
(
(
first_capital
?
"클래스"
:
"클래스"
)
);
QCString
result
(
"클래스"
);
if
(
!
singular
)
result
+=
"들"
;
return
result
;
}
...
...
@@ -1214,9 +1214,9 @@ class TranslatorKorean : public Translator
* be followed by a single name or by a list of names
* of the category.
*/
virtual
QCString
trFile
(
bool
first_capital
,
bool
singular
)
virtual
QCString
trFile
(
bool
,
bool
singular
)
{
QCString
result
(
(
first_capital
?
"파일"
:
"파일"
)
);
QCString
result
(
"파일"
);
if
(
!
singular
)
result
+=
"들"
;
return
result
;
}
...
...
@@ -1225,9 +1225,9 @@ class TranslatorKorean : public Translator
* be followed by a single name or by a list of names
* of the category.
*/
virtual
QCString
trNamespace
(
bool
first_capital
,
bool
singular
)
virtual
QCString
trNamespace
(
bool
,
bool
singular
)
{
QCString
result
(
(
first_capital
?
"네임스페이스"
:
"네임스페이스"
)
);
QCString
result
(
"네임스페이스"
);
if
(
!
singular
)
result
+=
"들"
;
return
result
;
}
...
...
@@ -1236,9 +1236,9 @@ class TranslatorKorean : public Translator
* be followed by a single name or by a list of names
* of the category.
*/
virtual
QCString
trGroup
(
bool
first_capital
,
bool
singular
)
virtual
QCString
trGroup
(
bool
,
bool
singular
)
{
QCString
result
(
(
first_capital
?
"그룹"
:
"그룹"
)
);
QCString
result
(
"그룹"
);
if
(
!
singular
)
result
+=
"들"
;
return
result
;
}
...
...
@@ -1247,9 +1247,9 @@ class TranslatorKorean : public Translator
* be followed by a single name or by a list of names
* of the category.
*/
virtual
QCString
trPage
(
bool
first_capital
,
bool
singular
)
virtual
QCString
trPage
(
bool
,
bool
singular
)
{
QCString
result
(
(
first_capital
?
"페이지"
:
"페이지"
)
);
QCString
result
(
"페이지"
);
if
(
!
singular
)
result
+=
"들"
;
return
result
;
}
...
...
@@ -1258,9 +1258,9 @@ class TranslatorKorean : public Translator
* be followed by a single name or by a list of names
* of the category.
*/
virtual
QCString
trMember
(
bool
first_capital
,
bool
singular
)
virtual
QCString
trMember
(
bool
,
bool
singular
)
{
QCString
result
(
(
first_capital
?
"멤버"
:
"멤버"
)
);
QCString
result
(
"멤버"
);
if
(
!
singular
)
result
+=
"들"
;
return
result
;
}
...
...
@@ -1269,9 +1269,9 @@ class TranslatorKorean : public Translator
* be followed by a single name or by a list of names
* of the category.
*/
virtual
QCString
trGlobal
(
bool
first_capital
,
bool
singular
)
virtual
QCString
trGlobal
(
bool
,
bool
singular
)
{
QCString
result
(
(
first_capital
?
"전역"
:
"전역"
)
);
QCString
result
(
"전역"
);
if
(
!
singular
)
result
+=
""
;
return
result
;
}
...
...
@@ -1282,9 +1282,9 @@ class TranslatorKorean : public Translator
/*! This text is generated when the \\author command is used and
* for the author section in man pages. */
virtual
QCString
trAuthor
(
bool
first_capital
,
bool
singular
)
virtual
QCString
trAuthor
(
bool
,
bool
singular
)
{
QCString
result
(
(
first_capital
?
"작성자"
:
"작성자"
)
);
QCString
result
(
"작성자"
);
if
(
!
singular
)
result
+=
"들"
;
return
result
;
}
...
...
@@ -1509,9 +1509,9 @@ class TranslatorKorean : public Translator
/*! This returns the word directory with or without starting capital
* (\a first_capital) and in sigular or plural form (\a singular).
*/
virtual
QCString
trDir
(
bool
first_capital
,
bool
singular
)
virtual
QCString
trDir
(
bool
,
bool
singular
)
{
QCString
result
(
(
first_capital
?
"디렉토리"
:
"디렉토리"
)
);
QCString
result
(
"디렉토리"
);
if
(
singular
)
result
+=
""
;
else
result
+=
"들"
;
return
result
;
}
...
...
@@ -1690,9 +1690,9 @@ class TranslatorKorean : public Translator
* be followed by a single name or by a list of names
* of the category.
*/
virtual
QCString
trModule
(
bool
first_capital
,
bool
singular
)
virtual
QCString
trModule
(
bool
,
bool
singular
)
{
QCString
result
(
(
first_capital
?
"모듈"
:
"모듈"
)
);
QCString
result
(
"모듈"
);
if
(
!
singular
)
result
+=
"들"
;
return
result
;
}
...
...
@@ -1725,9 +1725,9 @@ class TranslatorKorean : public Translator
* be followed by a single name or by a list of names
* of the category.
*/
virtual
QCString
trType
(
bool
first_capital
,
bool
singular
)
virtual
QCString
trType
(
bool
,
bool
singular
)
{
QCString
result
(
(
first_capital
?
"타입"
:
"타입"
)
);
QCString
result
(
"타입"
);
if
(
!
singular
)
result
+=
"들"
;
return
result
;
}
...
...
@@ -1735,9 +1735,9 @@ class TranslatorKorean : public Translator
* be followed by a single name or by a list of names
* of the category.
*/
virtual
QCString
trSubprogram
(
bool
first_capital
,
bool
singular
)
virtual
QCString
trSubprogram
(
bool
,
bool
singular
)
{
QCString
result
(
(
first_capital
?
"서브프로그램"
:
"서브프로그램"
)
);
QCString
result
(
"서브프로그램"
);
if
(
!
singular
)
result
+=
"들"
;
return
result
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment