diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
index b2241352..5cb28ee4 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
@@ -8509,6 +8509,78 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
+ public static string TableDesignerIsEnabledPropertyTitle
+ {
+ get
+ {
+ return Keys.GetString(Keys.TableDesignerIsEnabledPropertyTitle);
+ }
+ }
+
+ public static string ForeignKeyIsEnabledDescription
+ {
+ get
+ {
+ return Keys.GetString(Keys.ForeignKeyIsEnabledDescription);
+ }
+ }
+
+ public static string ForeignKeyIsNotForReplicationTitle
+ {
+ get
+ {
+ return Keys.GetString(Keys.ForeignKeyIsNotForReplicationTitle);
+ }
+ }
+
+ public static string ForeignKeyIsNotForReplicationDescription
+ {
+ get
+ {
+ return Keys.GetString(Keys.ForeignKeyIsNotForReplicationDescription);
+ }
+ }
+
+ public static string SqlForeignKeyAction_NoAction
+ {
+ get
+ {
+ return Keys.GetString(Keys.SqlForeignKeyAction_NoAction);
+ }
+ }
+
+ public static string SqlForeignKeyAction_Cascade
+ {
+ get
+ {
+ return Keys.GetString(Keys.SqlForeignKeyAction_Cascade);
+ }
+ }
+
+ public static string SqlForeignKeyAction_SetNull
+ {
+ get
+ {
+ return Keys.GetString(Keys.SqlForeignKeyAction_SetNull);
+ }
+ }
+
+ public static string SqlForeignKeyAction_SetDefault
+ {
+ get
+ {
+ return Keys.GetString(Keys.SqlForeignKeyAction_SetDefault);
+ }
+ }
+
+ public static string CheckConstraintIsEnabledDescription
+ {
+ get
+ {
+ return Keys.GetString(Keys.CheckConstraintIsEnabledDescription);
+ }
+ }
+
public static string ConnectionServiceListDbErrorNotConnected(string uri)
{
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
@@ -8794,6 +8866,11 @@ namespace Microsoft.SqlTools.ServiceLayer
return Keys.GetString(Keys.InvalidTableEditPathException, path, editType);
}
+ public static string UnKnownSqlForeignKeyAction(string name)
+ {
+ return Keys.GetString(Keys.UnKnownSqlForeignKeyAction, name);
+ }
+
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Keys
{
@@ -12153,6 +12230,36 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string TableColumnIdentitySeedPropertyDescription = "TableColumnIdentitySeedPropertyDescription";
+ public const string TableDesignerIsEnabledPropertyTitle = "TableDesignerIsEnabledPropertyTitle";
+
+
+ public const string ForeignKeyIsEnabledDescription = "ForeignKeyIsEnabledDescription";
+
+
+ public const string ForeignKeyIsNotForReplicationTitle = "ForeignKeyIsNotForReplicationTitle";
+
+
+ public const string ForeignKeyIsNotForReplicationDescription = "ForeignKeyIsNotForReplicationDescription";
+
+
+ public const string SqlForeignKeyAction_NoAction = "SqlForeignKeyAction_NoAction";
+
+
+ public const string SqlForeignKeyAction_Cascade = "SqlForeignKeyAction_Cascade";
+
+
+ public const string SqlForeignKeyAction_SetNull = "SqlForeignKeyAction_SetNull";
+
+
+ public const string SqlForeignKeyAction_SetDefault = "SqlForeignKeyAction_SetDefault";
+
+
+ public const string UnKnownSqlForeignKeyAction = "UnKnownSqlForeignKeyAction";
+
+
+ public const string CheckConstraintIsEnabledDescription = "CheckConstraintIsEnabledDescription";
+
+
private Keys()
{ }
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
index d031a41b..a2e5b6db 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
@@ -4643,4 +4643,45 @@
Displays the initial row value for an identity column.
+
+ Is Enabled
+
+
+
+ Specifies whether the foreign key is Enabled
+
+
+
+ Not For Replication
+
+
+
+ Enables or disables an IDENTITY constraint for data inserted by a replication process.
+
+
+
+ No Action
+
+
+
+ Cascade
+
+
+
+ Set Null
+
+
+
+ Set Default
+
+
+
+ '{0}' is not a supported SqlForeignKeyAction.
+ .
+ Parameters: 0 - name (string)
+
+
+ Specifies whether the check constraint is Enabled
+
+
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
index b8ce42a0..72c0a886 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
@@ -2231,3 +2231,13 @@ 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.
+TableDesignerIsEnabledPropertyTitle = Is Enabled
+ForeignKeyIsEnabledDescription = Specifies whether the foreign key is Enabled
+ForeignKeyIsNotForReplicationTitle = Not For Replication
+ForeignKeyIsNotForReplicationDescription = Enables or disables an IDENTITY constraint for data inserted by a replication process.
+SqlForeignKeyAction_NoAction = No Action
+SqlForeignKeyAction_Cascade = Cascade
+SqlForeignKeyAction_SetNull = Set Null
+SqlForeignKeyAction_SetDefault = Set Default
+UnKnownSqlForeignKeyAction(string name) = '{0}' is not a supported SqlForeignKeyAction.
+CheckConstraintIsEnabledDescription = Specifies whether the check constraint is Enabled
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
index ef980a78..cb483dde 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
@@ -5645,6 +5645,57 @@
.
Parameters: 0 - actual (string), 1 - estimated (string), 2 - percent (decimal)
+
+ Is Enabled
+ Is Enabled
+
+
+
+ Specifies whether the foreign key is Enabled
+ Specifies whether the foreign key is Enabled
+
+
+
+ Not For Replication
+ Not For Replication
+
+
+
+ Enables or disables an IDENTITY constraint for data inserted by a replication process.
+ Enables or disables an IDENTITY constraint for data inserted by a replication process.
+
+
+
+ No Action
+ No Action
+
+
+
+ Cascade
+ Cascade
+
+
+
+ Set Null
+ Set Null
+
+
+
+ Set Default
+ Set Default
+
+
+
+ '{0}' is not a supported SqlForeignKeyAction.
+ '{0}' is not a supported SqlForeignKeyAction.
+ .
+ Parameters: 0 - name (string)
+
+
+ Specifies whether the check constraint is Enabled
+ Specifies whether the check constraint is Enabled
+
+