mirror of
https://github.com/doublespeakgames/adarkroom.git
synced 2026-05-28 08:11:54 +08:00
Added some new translator comments about whitespaces
This commit is contained in:
@@ -584,11 +584,13 @@ var Outside = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/// TRANSLATORS : Mind the whitespace at the end.
|
||||||
var s = _('the traps contain ');
|
var s = _('the traps contain ');
|
||||||
for(var i = 0, len = msg.length; i < len; i++) {
|
for(var i = 0, len = msg.length; i < len; i++) {
|
||||||
if(len > 1 && i > 0 && i < len - 1) {
|
if(len > 1 && i > 0 && i < len - 1) {
|
||||||
s += ", ";
|
s += ", ";
|
||||||
} else if(len > 1 && i == len - 1) {
|
} else if(len > 1 && i == len - 1) {
|
||||||
|
/// TRANSLATORS : Mind the whitespaces at the beginning and end.
|
||||||
s += _(" and ");
|
s += _(" and ");
|
||||||
}
|
}
|
||||||
s += msg[i];
|
s += msg[i];
|
||||||
|
|||||||
Reference in New Issue
Block a user