diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
index 86380e86..4242ac25 100755
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
@@ -4559,9 +4559,9 @@ namespace Microsoft.SqlTools.ServiceLayer
return Keys.GetString(Keys.EditDataIncorrectTable, tableName);
}
- public static string StopSessionFailed(String error)
+ public static string CreateSessionFailed(String error)
{
- return Keys.GetString(Keys.StopSessionFailed, error);
+ return Keys.GetString(Keys.CreateSessionFailed, error);
}
public static string StartSessionFailed(String error)
@@ -4569,6 +4569,21 @@ namespace Microsoft.SqlTools.ServiceLayer
return Keys.GetString(Keys.StartSessionFailed, error);
}
+ public static string PauseSessionFailed(String error)
+ {
+ return Keys.GetString(Keys.PauseSessionFailed, error);
+ }
+
+ public static string StopSessionFailed(String error)
+ {
+ return Keys.GetString(Keys.StopSessionFailed, error);
+ }
+
+ public static string SessionAlreadyExists(String sessionName)
+ {
+ return Keys.GetString(Keys.SessionAlreadyExists, sessionName);
+ }
+
public static string EnableAlertsTitle(String serverName)
{
return Keys.GetString(Keys.EnableAlertsTitle, serverName);
@@ -6176,15 +6191,24 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string AzureSystemDbProfilingError = "AzureSystemDbProfilingError";
- public const string StopSessionFailed = "StopSessionFailed";
+ public const string CreateSessionFailed = "CreateSessionFailed";
public const string StartSessionFailed = "StartSessionFailed";
+ public const string PauseSessionFailed = "PauseSessionFailed";
+
+
+ public const string StopSessionFailed = "StopSessionFailed";
+
+
public const string SessionNotFound = "SessionNotFound";
+ public const string SessionAlreadyExists = "SessionAlreadyExists";
+
+
public const string EnableAlertsTitle = "EnableAlertsTitle";
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
index 67b36ecd..a8e68a33 100755
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
@@ -2027,20 +2027,35 @@
Cannot profile Azure system databases
-
- Failed to stop session: {0}
+
+ Failed to create session: {0}
.
Parameters: 0 - error (String)
Failed to start session: {0}
.
+ Parameters: 0 - error (String)
+
+
+ Failed to pause session: {0}
+ .
+ Parameters: 0 - error (String)
+
+
+ Failed to stop session: {0}
+ .
Parameters: 0 - error (String)
Cannot find requested XEvent session
+
+ An XEvent session named {0} already exists
+ .
+ Parameters: 0 - sessionName (String)
+
Enable Alerts - {0}
.
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
index deb95e41..a3c49b8c 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
@@ -888,9 +888,12 @@ InvalidPathError = Cannot access the specified path on the server: {0}
# Profiler
ProfilerConnectionNotFound = Connection not found
AzureSystemDbProfilingError = Cannot profile Azure system databases
-StopSessionFailed(String error) = Failed to stop session: {0}
+CreateSessionFailed(String error) = Failed to create session: {0}
StartSessionFailed(String error) = Failed to start session: {0}
+PauseSessionFailed(String error) = Failed to pause session: {0}
+StopSessionFailed(String error) = Failed to stop session: {0}
SessionNotFound = Cannot find requested XEvent session
+SessionAlreadyExists(String sessionName) = An XEvent session named {0} already exists
#############################################################################
# SQL Agent
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
index 576b7b98..b531bc1e 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
@@ -3112,6 +3112,24 @@
.
Parameters: 0 - error (String)
+
+ Failed to create session: {0}
+ Failed to create session: {0}
+ .
+ Parameters: 0 - error (String)
+
+
+ Failed to pause session: {0}
+ Failed to pause session: {0}
+ .
+ Parameters: 0 - error (String)
+
+
+ An XEvent session named {0} already exists
+ An XEvent session named {0} already exists
+ .
+ Parameters: 0 - sessionName (String)
+