fix(i18n): ICU placeholders are replaced by their translations (#10586)

They were replaced by the original message.
This commit is contained in:
Victor Berchet
2016-08-09 21:05:04 -07:00
committed by vikerman
parent c7f3aa71fb
commit 43512aa5eb
11 changed files with 220 additions and 102 deletions

View File

@ -97,7 +97,7 @@ export function sha1(str: string): string {
hex += (b >>> 4 & 0x0f).toString(16) + (b & 0x0f).toString(16);
}
return hex;
return hex.toLowerCase();
}
function utf8Encode(str: string): string {