summaryrefslogtreecommitdiffstats
path: root/src/translator_jp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translator_jp.h')
-rw-r--r--src/translator_jp.h7
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;
}