fixup! fixup! Globalize strings to end user
This commit is contained in:
parent
7763f3c22e
commit
e209b0b671
|
@ -12,8 +12,8 @@
|
||||||
"fdc23df1bd0fe55fe3faabcc89ff60f3": "Middleware \"{0}\" not found: {1}",
|
"fdc23df1bd0fe55fe3faabcc89ff60f3": "Middleware \"{0}\" not found: {1}",
|
||||||
"34319676975b1abf107da7a056abb434": "Invalid normalization format - \"{0}\"",
|
"34319676975b1abf107da7a056abb434": "Invalid normalization format - \"{0}\"",
|
||||||
"4d052d84c8620730afd4a30832f11724": "Cannot configure unknown model {0}",
|
"4d052d84c8620730afd4a30832f11724": "Cannot configure unknown model {0}",
|
||||||
"5b0d7d21c4b507336a96242c7f29b788": "The data in model-config.json is in the unsupported 1.x format.",
|
|
||||||
"6037512314fac9d12af6c654a3804823": "Built-in model {0} should have been defined",
|
"6037512314fac9d12af6c654a3804823": "Built-in model {0} should have been defined",
|
||||||
|
"79e93b2a95e969788590c14e26bb2c1b": "The data in {{model-config.json}} is in the unsupported 1.x format.",
|
||||||
"1e5fea50eef843cbffd1d438494912c8": "Cannot resolve path \"{0}\"",
|
"1e5fea50eef843cbffd1d438494912c8": "Cannot resolve path \"{0}\"",
|
||||||
"6447e6b342a2c51ab0bc53b3cbdf3742": "Ordering conflict: cannot add \"{0}\" after \"{1}\", because the opposite order was already specified",
|
"6447e6b342a2c51ab0bc53b3cbdf3742": "Ordering conflict: cannot add \"{0}\" after \"{1}\", because the opposite order was already specified",
|
||||||
"978a25819e71602cad691dbe7ba17592": "{0} config must be a valid JSON object",
|
"978a25819e71602cad691dbe7ba17592": "{0} config must be a valid JSON object",
|
||||||
|
|
|
@ -236,7 +236,8 @@ function assertIsValidModelConfig(config) {
|
||||||
|
|
||||||
if (unsupported) {
|
if (unsupported) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
g.f('The data in model-config.json is in the unsupported 1.x format.'));
|
g.f('The data in {{model-config.json}} is ' +
|
||||||
|
'in the unsupported 1.x format.'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue