chore: pull more strings from the product.json (#166769)

Fixes the bulk of https://github.com/microsoft/vscode-cli/issues/560
This commit is contained in:
Connor Peet
2022-11-18 18:52:52 -08:00
committed by GitHub
parent 384ba2454f
commit 796ee2bf3c
25 changed files with 229 additions and 116 deletions

View File

@@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/
use crate::{
constants::get_default_user_agent,
constants::{get_default_user_agent, PRODUCT_NAME_LONG},
info, log,
state::{LauncherPaths, PersistedState},
trace,
@@ -500,7 +500,7 @@ impl Auth {
}
let provider = prompt_options(
"How would you like to log in to VS Code?",
format!("How would you like to log in to {}?", PRODUCT_NAME_LONG),
&[AuthProvider::Microsoft, AuthProvider::Github],
)?;