Commit 3d1343d1 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 736031 - [PATCH] Cleanup redundant if/else branch in src/translator_kr.h

parent 192aa659
......@@ -677,10 +677,10 @@ class TranslatorKorean : public Translator
if (i!=numEntries-1) // not the last entry, so we need a separator
{
if (i<numEntries-2) // not the fore last entry
result+=", ";
else // the fore last entry
//if (i<numEntries-2) // not the fore last entry
result+=", ";
//else // the fore last entry
// result+=", "; // TODO: does the 'and' need to be translated here?
}
}
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