diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
index 9a1930d8..3e75b055 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
@@ -8925,6 +8925,16 @@ namespace Microsoft.SqlTools.ServiceLayer
return Keys.GetString(Keys.ActualOfEstimated, actual, estimated, percent);
}
+ public static string MissingIndexFormat(string impact, string queryText)
+ {
+ return Keys.GetString(Keys.MissingIndexFormat, impact, queryText);
+ }
+
+ public static string MissingIndexDetailsTitle(string fileName, string impact)
+ {
+ return Keys.GetString(Keys.MissingIndexDetailsTitle, fileName, impact);
+ }
+
public static string TableNotInitializedException(string tableId)
{
return Keys.GetString(Keys.TableNotInitializedException, tableId);
@@ -12272,6 +12282,12 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string ActualOfEstimated = "ActualOfEstimated";
+ public const string MissingIndexFormat = "MissingIndexFormat";
+
+
+ public const string MissingIndexDetailsTitle = "MissingIndexDetailsTitle";
+
+
public const string TableNotInitializedException = "TableNotInitializedException";
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
index 2fd413c8..b6300966 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
@@ -4605,6 +4605,19 @@
{1} ({2}%)
.
Parameters: 0 - actual (string), 1 - estimated (string), 2 - percent (decimal)
+
+
+ Missing Index (Impact {0}): {1}
+ "Missing Index (Impact {0}): {1}" format string for showplan.
+ Parameters: 0 - impact (string), 1 - queryText (string)
+
+
+ /*
+Missing Index Details from {0}
+The Query Processor estimates that implementing the following index could improve the query cost by {1}%.
+*/
+ title of missing index details.
+ Parameters: 0 - fileName (string), 1 - impact (string)
Initialization is not properly done for table with id '{0}'
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
index 26bd5b34..2b654574 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
@@ -2219,6 +2219,11 @@ SizeInTeraBytesFormat = {0} TB
OperatorDisplayCost(double cost, int percentage) = {0:0.#######} ({1}%)
#Would like to display actual rows and estimated rows in two lines: of\n (xx%)
ActualOfEstimated(string actual, string estimated, decimal percent) = {0} of\n{1} ({2}%)
+;"Missing Index (Impact {0}): {1}" format string for showplan
+MissingIndexFormat(string impact, string queryText) = Missing Index (Impact {0}): {1}
+;title of missing index details
+MissingIndexDetailsTitle(string fileName, string impact) = /*\r\nMissing Index Details from {0}\r\nThe Query Processor estimates that implementing the following index could improve the query cost by {1}%.\r\n*/
+
############################################################################
# Table Designer
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
index b59b58af..c22c139c 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
@@ -5742,6 +5742,22 @@
Columns
+
+ Missing Index (Impact {0}): {1}
+ Missing Index (Impact {0}): {1}
+ "Missing Index (Impact {0}): {1}" format string for showplan
+
+
+ /*
+Missing Index Details from {0}
+The Query Processor estimates that implementing the following index could improve the query cost by {1}%.
+*/
+ /*
+Missing Index Details from {0}
+The Query Processor estimates that implementing the following index could improve the query cost by {1}%.
+*/
+ title of missing index details
+