We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84d21d9 commit a63e0a0Copy full SHA for a63e0a0
test/smoke/src/areas/workbench/localization.test.ts
@@ -36,9 +36,11 @@ export function setup(opts: minimist.ParsedArgs) {
36
throw new Error(`Received wrong localized strings: ${JSON.stringify(result, undefined, 0)}`);
37
}
38
return;
39
+ } else {
40
+ if (result.open.toLowerCase() !== 'öffnen' || result.close.toLowerCase() !== 'schließen' || result.find.toLowerCase() !== 'finden') {
41
+ throw new Error(`Received wrong German localized strings: ${JSON.stringify(result, undefined, 0)}`);
42
+ }
43
-
- // As soon as strings are translated in the next round we can check for german as well.
44
});
45
46
0 commit comments