File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "Hello world!" : " Hallo Welt!" ,
33 "Lazy term" : " Fauler Begriff" ,
4- "This text contains {0} \\ {} curly braces and \\\\ {\\ {}}\\ {0}." : " Dieser Text enthält {0} \\ {} geschweifte Klammern und \\\\ {\\ {}}\\ {0}." ,
5- "Untranslated text" : " "
4+ "Untranslated text" : " " ,
5+ "Unknown Error" : " " ,
6+ "An unexpected error occurred while processing your request." : " " ,
7+ "This text contains {0} \\ {} curly braces and \\\\\\ {\\ {}}\\ {0}." : " Dieser Text enthält {0} \\ {} geschweifte Klammern und \\\\\\ {\\ {}}\\ {0}."
68}
Original file line number Diff line number Diff line change 11{
22 "Hello world!" : " Hello world!" ,
33 "Lazy term" : " Lazy term" ,
4- "This text contains {0} \\ {} curly braces and \\\\ {\\ {}}\\ {0}." : " This text contains {0} \\ {} curly braces and \\\\ {\\ {}}\\ {0}." ,
5- "Untranslated text" : " Untranslated text"
4+ "Untranslated text" : " Untranslated text" ,
5+ "Unknown Error" : " Unknown Error" ,
6+ "An unexpected error occurred while processing your request." : " An unexpected error occurred while processing your request." ,
7+ "This text contains {0} \\ {} curly braces and \\\\\\ {\\ {}}\\ {0}." : " This text contains {0} \\ {} curly braces and \\\\\\ {\\ {}}\\ {0}."
68}
Original file line number Diff line number Diff line change 11export function unescapeKey ( key : string ) : string {
2- return key . replaceAll ( / \\ { / g, "{" ) ;
2+ return key . replaceAll ( / \\ { / g, "{" ) . replaceAll ( / \\ \\ / g , "\\" ) ;
33}
You can’t perform that action at this time.
0 commit comments