Skip to content

Commit

Permalink
update output diectory string
Browse files Browse the repository at this point in the history
  • Loading branch information
ElinorW committed May 21, 2024
1 parent 8f4a32f commit 284e59d
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion vscode/microsoft-kiota/l10n/bundle.l10n.ar.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"Select an option": "",
"class": "",
"namespace": "",
"output path": "",
"output directory": "",
"language": "",
"Create a new API client": "",
"Create a new plugin": "",
Expand Down
2 changes: 1 addition & 1 deletion vscode/microsoft-kiota/l10n/bundle.l10n.cs.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"Select an option": "Vyberte možnost",
"class": "třída",
"namespace": "jmenný prostor",
"output path": "výstupní cesta",
"output directory": "výstupní adresář",
"language": "jazyk",
"Create a new API client": "Vytvořit nového API klienta",
"Create a new plugin": "Vytvořit nový plugin",
Expand Down
2 changes: 1 addition & 1 deletion vscode/microsoft-kiota/l10n/bundle.l10n.es.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"Select an option": "",
"class": "",
"namespace": "",
"output path": "",
"output directory": "",
"language": "",
"Create a new API client": "Crear un nuevo cliente de API",
"Create a new plugin": "Crear un nuevo plugin",
Expand Down
2 changes: 1 addition & 1 deletion vscode/microsoft-kiota/l10n/bundle.l10n.it.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"Select an option": "",
"class": "",
"namespace": "",
"output path": "",
"output directory": "",
"language": "",
"Create a new API client": "Crea un nuovo client API",
"Create a new plugin": "Crea un nuovo plugin",
Expand Down
2 changes: 1 addition & 1 deletion vscode/microsoft-kiota/l10n/bundle.l10n.ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"Select an option": "",
"class": "",
"namespace": "",
"output path": "",
"output directory": "",
"language": "",
"Create a new API client": "",
"Create a new plugin": "",
Expand Down
2 changes: 1 addition & 1 deletion vscode/microsoft-kiota/l10n/bundle.l10n.pl.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"Select an option": "",
"class": "",
"namespace": "",
"output path": "",
"output directory": "",
"language": "",
"Create a new API client": "Utwórz nowego klienta API ",
"Create a new plugin": "Utwórz nową wtyczkę",
Expand Down
2 changes: 1 addition & 1 deletion vscode/microsoft-kiota/l10n/bundle.l10n.ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"Select an option": "",
"class": "",
"namespace": "",
"output path": "",
"output directory": "",
"language": "",
"Create a new API client": "",
"Create a new plugin": "",
Expand Down
2 changes: 1 addition & 1 deletion vscode/microsoft-kiota/l10n/bundle.l10n.sw.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"Select an option": "",
"class": "",
"namespace": "",
"output path": "",
"output directory": "",
"language": "",
"Create a new API client": "Tengeneza mteja mpya wa API",
"Create a new plugin": "Tengeneza programu-jalizi mpya",
Expand Down
2 changes: 1 addition & 1 deletion vscode/microsoft-kiota/l10n/bundle.l10n.tr.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"Select an option": "",
"class": "",
"namespace": "",
"output path": "",
"output directory": "",
"language": "",
"Create a new API client": "",
"Create a new plugin": "",
Expand Down
2 changes: 1 addition & 1 deletion vscode/microsoft-kiota/l10n/bundle.l10n.zh-cn.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"Select an option": "",
"class": "",
"namespace": "",
"output path": "",
"output directory": "",
"language": "",
"Create a new API client": "创建新的 API 客户端",
"Create a new plugin": "创建一个新插件",
Expand Down
6 changes: 3 additions & 3 deletions vscode/microsoft-kiota/src/steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export async function generateSteps(existingConfiguration: Partial<GenerateState
}
async function inputOutputPath(input: MultiStepInput, state: Partial<GenerateState>) {
state.outputPath = await input.showInputBox({
title: `${l10n.t('Create a new API client')} - ${l10n.t('output path')}`,
title: `${l10n.t('Create a new API client')} - ${l10n.t('output directory')}`,
step: step++,
totalSteps: totalSteps,
value: typeof state.outputPath === 'string' ? state.outputPath : '',
Expand Down Expand Up @@ -285,7 +285,7 @@ export async function generateSteps(existingConfiguration: Partial<GenerateState
}
async function inputPluginOutputPath(input: MultiStepInput, state: Partial<GenerateState>) {
state.outputPath = await input.showInputBox({
title: `${l10n.t('Create a new plugin')} - ${('output path')}}`,
title: `${l10n.t('Create a new plugin')} - ${('output directory')}}`,
step: step++,
totalSteps: 3,
value: typeof state.outputPath === 'string' ? state.outputPath : '',
Expand All @@ -310,7 +310,7 @@ export async function generateSteps(existingConfiguration: Partial<GenerateState
}
async function inputManifestOutputPath(input: MultiStepInput, state: Partial<GenerateState>) {
state.outputPath = await input.showInputBox({
title: `${l10n.t('Create a new manifest')} - ${('output path')}`,
title: `${l10n.t('Create a new manifest')} - ${('output directory')}`,
step: step++,
totalSteps: 3,
value: typeof state.outputPath === 'string' ? state.outputPath : '',
Expand Down

0 comments on commit 284e59d

Please sign in to comment.