Skip to content

Commit

Permalink
fix: add localization
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethBWSong committed Jan 17, 2025
1 parent bda0aa2 commit ac2f7ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/vscode-extension/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -600,5 +600,6 @@
"teamstoolkit.m365.needSignIn.message": "You need to sign in your Microsoft 365 account.",
"teamstoolkit.handler.createPluginWithManifest.error.missingParameter": "Invalid parameter in the createPluginWithManifest command. Usage: createPluginWithManifest(API_SPEC_PATH:string, PLUGIN_MANIFEST_PATH: string, { lastCommand: string }, OUTPUT_FOLDER?: string). Valid values for LAST_COMMAND: createPluginWithManifest, createDeclarativeCopilotWithManifest.",
"teamstoolkit.error.KiotaNotInstalled": "You need to install Microsoft Kiota extension with minimum version %s to use this feature.",
"teamstoolkit.handeler.addAuthConfig.notification": "Teams Toolkit has successfully updated your project configuration (teamsapp.yaml and teamsapp.local.yaml) files with added action to support authentication flow. You can proceed to remote provision."
"teamstoolkit.handeler.addAuthConfig.notification": "Teams Toolkit has successfully updated your project configuration (teamsapp.yaml and teamsapp.local.yaml) files with added action to support authentication flow. You can proceed to remote provision.",
"teamstoolkit.handeler.addAuthConfig.notification.provision": "Provision"
}
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export async function addAuthActionHandler(...args: unknown[]) {
void vscode.window
.showInformationMessage(
localize("teamstoolkit.handeler.addAuthConfig.notification"),
"Provision"
localize("teamstoolkit.handeler.addAuthConfig.notification.provision")
)
.then((selection) => {
if (selection === "Provision") {
Expand Down

0 comments on commit ac2f7ed

Please sign in to comment.