fix loc strings
This commit is contained in:
Родитель
75045aa4c6
Коммит
2a23ac74c9
21
src/make.ts
21
src/make.ts
|
@ -1052,7 +1052,7 @@ export async function postConfigure(triggeredBy: TriggeredBy): Promise<number> {
|
||||||
{
|
{
|
||||||
configuringScript: localize(
|
configuringScript: localize(
|
||||||
"make.postconfigure.title",
|
"make.postconfigure.title",
|
||||||
"Post-configuring: ${0}",
|
"Post-configuring: {0}",
|
||||||
scriptFile
|
scriptFile
|
||||||
),
|
),
|
||||||
cancelling: localize(
|
cancelling: localize(
|
||||||
|
@ -1256,13 +1256,18 @@ export async function runPostConfigureScript(
|
||||||
? currentConfigPostConfigureArgs
|
? currentConfigPostConfigureArgs
|
||||||
: configuration.getPostConfigureArgs(),
|
: configuration.getPostConfigureArgs(),
|
||||||
{
|
{
|
||||||
success: "The post-configure succeeded.",
|
success: localize(
|
||||||
successWithSomeError:
|
"postconfigure.succeeded",
|
||||||
"The post-configure script returned success code " +
|
"The post-configure succeeded."
|
||||||
"but somewhere during the postconfigure process there were errors reported. " +
|
),
|
||||||
"Double check the postconfigure output in the Makefile Tools channel.",
|
successWithSomeError: localize(
|
||||||
failure:
|
"postconfigure.succeeded.with.some.error",
|
||||||
"The post-configure script failed. This project may not configure successfully.",
|
"The post-configure script returned success code but somewhere during the postconfigure process there were errors reported. Double check the postconfigure output in the Makefile Tools channel."
|
||||||
|
),
|
||||||
|
failure: localize(
|
||||||
|
"postconfigure.script.failed",
|
||||||
|
"The post-configure script failed. This project may not configure successfully."
|
||||||
|
),
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче