diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
index 2e543415..b2241352 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
@@ -8774,6 +8774,16 @@ namespace Microsoft.SqlTools.ServiceLayer
return Keys.GetString(Keys.NameValuePair, name, value);
}
+ public static string OperatorDisplayCost(double cost, int percentage)
+ {
+ return Keys.GetString(Keys.OperatorDisplayCost, cost, percentage);
+ }
+
+ public static string ActualOfEstimated(string actual, string estimated, decimal percent)
+ {
+ return Keys.GetString(Keys.ActualOfEstimated, actual, estimated, percent);
+ }
+
public static string TableNotInitializedException(string tableId)
{
return Keys.GetString(Keys.TableNotInitializedException, tableId);
@@ -12107,6 +12117,12 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string SizeInTeraBytesFormat = "SizeInTeraBytesFormat";
+ public const string OperatorDisplayCost = "OperatorDisplayCost";
+
+
+ public const string ActualOfEstimated = "ActualOfEstimated";
+
+
public const string TableNotInitializedException = "TableNotInitializedException";
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
index 66505671..d031a41b 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
@@ -4590,6 +4590,17 @@
{0} TB
Size in TeraBytes format
+
+ {0:0.#######} ({1}%)
+ display string for the operator cost property - 0.###### - is the float number format specifier.
+ Parameters: 0 - cost (double), 1 - percentage (int)
+
+
+ {0} of
+{1} ({2}%)
+ .
+ Parameters: 0 - actual (string), 1 - estimated (string), 2 - percent (decimal)
+
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 79ad96ea..b8ce42a0 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
@@ -2213,6 +2213,10 @@ SizeInMegaBytesFormat = {0} MB
SizeInGigaBytesFormat = {0} GB
;Size in TeraBytes format
SizeInTeraBytesFormat = {0} TB
+; display string for the operator cost property - 0.###### - is the float number format specifier
+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}%)
############################################################################
# Table Designer
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
index af360256..ef980a78 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
@@ -5631,6 +5631,20 @@
.
Parameters: 0 - path (string), 1 - editType (string)
+
+ {0:0.#######} ({1}%)
+ {0:0.#######} ({1}%)
+ display string for the operator cost property - 0.###### - is the float number format specifier.
+ Parameters: 0 - cost (double), 1 - percentage (int)
+
+
+ {0} of
+{1} ({2}%)
+ {0} of
+{1} ({2}%)
+ .
+ Parameters: 0 - actual (string), 1 - estimated (string), 2 - percent (decimal)
+