diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2007-01-07 21:17:16 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2007-01-07 21:17:16 (GMT) |
commit | 66401e657546264df0ffa49765f68dc651b7be48 (patch) | |
tree | e21d038e7bc244d411ee71ee440f3b527bb9402f /src/translator_jp.h | |
parent | cb16d91fd453486b9e42a2e12295b96ad183dd92 (diff) | |
download | Doxygen-66401e657546264df0ffa49765f68dc651b7be48.zip Doxygen-66401e657546264df0ffa49765f68dc651b7be48.tar.gz Doxygen-66401e657546264df0ffa49765f68dc651b7be48.tar.bz2 |
Release-1.5.1-20070107
Diffstat (limited to 'src/translator_jp.h')
-rw-r--r-- | src/translator_jp.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/translator_jp.h b/src/translator_jp.h index 01aec89..8e84750 100644 --- a/src/translator_jp.h +++ b/src/translator_jp.h @@ -655,7 +655,12 @@ class TranslatorJapanese : public Translator // (order is left to right) if (i!=numEntries-1) // not the last entry, so we need a separator - result+=decode("¡¦"); + { + if (i<numEntries-2) // not the fore last entry + result+=decode(", "); + else // the fore last entry + result+=decode(", ¤È "); + } } return result; } |