From ba5bb193aae70bba44088d3ee0308937eb6c3594 Mon Sep 17 00:00:00 2001 From: ThiloVoigt555 Date: Thu, 6 Nov 2014 16:07:59 +0100 Subject: [PATCH] Added some new translator comments about whitespaces --- script/outside.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/script/outside.js b/script/outside.js index 0febb72..9fca58e 100644 --- a/script/outside.js +++ b/script/outside.js @@ -584,11 +584,13 @@ var Outside = { } } } + /// TRANSLATORS : Mind the whitespace at the end. var s = _('the traps contain '); for(var i = 0, len = msg.length; i < len; i++) { if(len > 1 && i > 0 && i < len - 1) { s += ", "; } else if(len > 1 && i == len - 1) { + /// TRANSLATORS : Mind the whitespaces at the beginning and end. s += _(" and "); } s += msg[i];