diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
index 2856a518..2e543415 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
@@ -8445,6 +8445,70 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
+ public static string TableEditPathNotProvidedException
+ {
+ get
+ {
+ return Keys.GetString(Keys.TableEditPathNotProvidedException);
+ }
+ }
+
+ public static string TableColumnIdentityGroupName
+ {
+ get
+ {
+ return Keys.GetString(Keys.TableColumnIdentityGroupName);
+ }
+ }
+
+ public static string TableColumnIsIdentityPropertyTitle
+ {
+ get
+ {
+ return Keys.GetString(Keys.TableColumnIsIdentityPropertyTitle);
+ }
+ }
+
+ public static string TableColumnIsIdentityPropertyDescription
+ {
+ get
+ {
+ return Keys.GetString(Keys.TableColumnIsIdentityPropertyDescription);
+ }
+ }
+
+ public static string TableColumnIdentityIncrementPropertyTitle
+ {
+ get
+ {
+ return Keys.GetString(Keys.TableColumnIdentityIncrementPropertyTitle);
+ }
+ }
+
+ public static string TableColumnIdentityIncrementPropertyDescription
+ {
+ get
+ {
+ return Keys.GetString(Keys.TableColumnIdentityIncrementPropertyDescription);
+ }
+ }
+
+ public static string TableColumnIdentitySeedPropertyTitle
+ {
+ get
+ {
+ return Keys.GetString(Keys.TableColumnIdentitySeedPropertyTitle);
+ }
+ }
+
+ public static string TableColumnIdentitySeedPropertyDescription
+ {
+ get
+ {
+ return Keys.GetString(Keys.TableColumnIdentitySeedPropertyDescription);
+ }
+ }
+
public static string ConnectionServiceListDbErrorNotConnected(string uri)
{
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
@@ -8710,6 +8774,16 @@ namespace Microsoft.SqlTools.ServiceLayer
return Keys.GetString(Keys.NameValuePair, name, value);
}
+ public static string TableNotInitializedException(string tableId)
+ {
+ return Keys.GetString(Keys.TableNotInitializedException, tableId);
+ }
+
+ public static string InvalidTableEditPathException(string path, string editType)
+ {
+ return Keys.GetString(Keys.InvalidTableEditPathException, path, editType);
+ }
+
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Keys
{
@@ -12033,6 +12107,36 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string SizeInTeraBytesFormat = "SizeInTeraBytesFormat";
+ public const string TableNotInitializedException = "TableNotInitializedException";
+
+
+ public const string TableEditPathNotProvidedException = "TableEditPathNotProvidedException";
+
+
+ public const string InvalidTableEditPathException = "InvalidTableEditPathException";
+
+
+ public const string TableColumnIdentityGroupName = "TableColumnIdentityGroupName";
+
+
+ public const string TableColumnIsIdentityPropertyTitle = "TableColumnIsIdentityPropertyTitle";
+
+
+ public const string TableColumnIsIdentityPropertyDescription = "TableColumnIsIdentityPropertyDescription";
+
+
+ public const string TableColumnIdentityIncrementPropertyTitle = "TableColumnIdentityIncrementPropertyTitle";
+
+
+ public const string TableColumnIdentityIncrementPropertyDescription = "TableColumnIdentityIncrementPropertyDescription";
+
+
+ public const string TableColumnIdentitySeedPropertyTitle = "TableColumnIdentitySeedPropertyTitle";
+
+
+ public const string TableColumnIdentitySeedPropertyDescription = "TableColumnIdentitySeedPropertyDescription";
+
+
private Keys()
{ }
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
index 42f4edbf..66505671 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
@@ -4590,4 +4590,46 @@
{0} TBSize in TeraBytes format
+
+ Initialization is not properly done for table with id '{0}'
+ .
+ Parameters: 0 - tableId (string)
+
+
+ The path in the table change information cannot be empty
+
+
+
+ The path '{0}' in the table change information is not valid for edit type: '{1}'
+ .
+ Parameters: 0 - path (string), 1 - editType (string)
+
+
+ Identity Specification
+
+
+
+ Is Identity
+
+
+
+ Specifies whether the column is the identity column for the table.
+
+
+
+ Identity Increment
+
+
+
+ Displays the value added to the maximum existing row identity value when generating the next identity value.
+
+
+
+ Identity Seed
+
+
+
+ Displays the initial row value for an identity column.
+
+
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
index 616fb167..79ad96ea 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
@@ -2212,4 +2212,18 @@ SizeInMegaBytesFormat = {0} MB
;Size in GigaBytes format
SizeInGigaBytesFormat = {0} GB
;Size in TeraBytes format
-SizeInTeraBytesFormat = {0} TB
\ No newline at end of file
+SizeInTeraBytesFormat = {0} TB
+
+############################################################################
+# Table Designer
+
+TableNotInitializedException(string tableId) = Initialization is not properly done for table with id '{0}'
+TableEditPathNotProvidedException = The path in the table change information cannot be empty
+InvalidTableEditPathException(string path, string editType) = The path '{0}' in the table change information is not valid for edit type: '{1}'
+TableColumnIdentityGroupName = Identity Specification
+TableColumnIsIdentityPropertyTitle = Is Identity
+TableColumnIsIdentityPropertyDescription = Specifies whether the column is the identity column for the table.
+TableColumnIdentityIncrementPropertyTitle = Identity Increment
+TableColumnIdentityIncrementPropertyDescription = Displays the value added to the maximum existing row identity value when generating the next identity value.
+TableColumnIdentitySeedPropertyTitle = Identity Seed
+TableColumnIdentitySeedPropertyDescription = Displays the initial row value for an identity column.
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
index a5644bdf..af360256 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
@@ -5579,6 +5579,58 @@
{0} TBSize in TeraBytes format
+
+ Initialization is not properly done for table with id '{0}'
+ Initialization is not properly done for table with id '{0}'
+ .
+ Parameters: 0 - tableId (string)
+
+
+ Identity Specification
+ Identity Specification
+
+
+
+ Is Identity
+ Is Identity
+
+
+
+ Specifies whether the column is the identity column for the table.
+ Specifies whether the column is the identity column for the table.
+
+
+
+ Identity Increment
+ Identity Increment
+
+
+
+ Displays the value added to the maximum existing row identity value when generating the next identity value.
+ Displays the value added to the maximum existing row identity value when generating the next identity value.
+
+
+
+ Identity Seed
+ Identity Seed
+
+
+
+ Displays the initial row value for an identity column.
+ Displays the initial row value for an identity column.
+
+
+
+ The path in the table change information cannot be empty
+ The path in the table change information cannot be empty
+
+
+
+ The path '{0}' in the table change information is not valid for edit type: '{1}'
+ The path '{0}' in the table change information is not valid for edit type: '{1}'
+ .
+ Parameters: 0 - path (string), 1 - editType (string)
+