Commit 79dedb65 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 736020 - [PATCH] Fix identical code for different branches in src/translator_tw.h

parent 46e83b44
......@@ -1952,7 +1952,7 @@ class TranslatorChinesetraditional : public Translator
// single is true implies a single file
QCString result=(QCString)"本服務的文件由以下的檔案"
"所產生";
if (single) result+=":"; else result+=":";
result+=":";
return result;
}
/** UNO IDL singleton page */
......@@ -1961,7 +1961,7 @@ class TranslatorChinesetraditional : public Translator
// single is true implies a single file
QCString result=(QCString)"本singleton的文件由下面的檔案"
"所產生";
if (single) result+=":"; else result+=":";
result+=":";
return result;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment