[User Management] Fix login handlers (#1896)

* fix default language

* fix update

* fix server role error with azure
This commit is contained in:
Hai Cao
2023-03-02 17:51:31 -08:00
committed by GitHub
parent bb838269ac
commit bec0877e32
6 changed files with 83 additions and 13 deletions

View File

@@ -9709,6 +9709,14 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
public static string DefaultLanguagePlaceholder
{
get
{
return Keys.GetString(Keys.DefaultLanguagePlaceholder);
}
}
public static string ConnectionServiceListDbErrorNotConnected(string uri)
{
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
@@ -14027,6 +14035,9 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string ErrorConnectionNotFound = "ErrorConnectionNotFound";
public const string DefaultLanguagePlaceholder = "DefaultLanguagePlaceholder";
private Keys()
{ }