diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
index d93f16b7..887baaca 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
@@ -12916,6 +12916,16 @@ namespace Microsoft.SqlTools.ServiceLayer
return Keys.GetString(Keys.NonClusteredColumnStoreIndexMustHaveColumnsRuleDescription, indexName);
}
+ public static string TableDesignerCreateTablePermissionDenied(string db)
+ {
+ return Keys.GetString(Keys.TableDesignerCreateTablePermissionDenied, db);
+ }
+
+ public static string TableDesignerAlterTablePermissionDenied(string table)
+ {
+ return Keys.GetString(Keys.TableDesignerAlterTablePermissionDenied, table);
+ }
+
public static string SqlProjectModelNotFound(string projectUri)
{
return Keys.GetString(Keys.SqlProjectModelNotFound, projectUri);
@@ -16871,6 +16881,12 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string TableDesignerConfirmationText = "TableDesignerConfirmationText";
+ public const string TableDesignerCreateTablePermissionDenied = "TableDesignerCreateTablePermissionDenied";
+
+
+ public const string TableDesignerAlterTablePermissionDenied = "TableDesignerAlterTablePermissionDenied";
+
+
public const string SqlProjectModelNotFound = "SqlProjectModelNotFound";
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
index eae3dac2..336e93be 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
@@ -5440,6 +5440,16 @@ The Query Processor estimates that implementing the following index could improv
I have read the summary and understand the potential risks.
+
+ CREATE TABLE permission denied in database '{0}'.
+ .
+ Parameters: 0 - db (string)
+
+
+ ALTER TABLE permission denied for table '{0}'.
+ .
+ Parameters: 0 - table (string)
+
Could not find SQL model from project: {0}.
.
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
index 2883e583..97eb2e91 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
@@ -2451,6 +2451,8 @@ HashIndexMustHaveBucketCountRuleDescription(string indexName) = Hash index '{0}'
ColumnCanOnlyAppearOnceInNonClusteredColumnStoreIndexRuleDescription(string columnName, string indexName, int rowNumber) = Column with name '{0}' has already been added to the non-clustered columnstore index '{1}'. Row number: {2}.
NonClusteredColumnStoreIndexMustHaveColumnsRuleDescription(string indexName) = Non-clustered columnstore index '{0}' does not have any columns associated with it.
TableDesignerConfirmationText = I have read the summary and understand the potential risks.
+TableDesignerCreateTablePermissionDenied(string db) = CREATE TABLE permission denied in database '{0}'.
+TableDesignerAlterTablePermissionDenied(string table) = ALTER TABLE permission denied for table '{0}'.
############################################################################
# TSql Model
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
index 5060a6fa..8b4344ab 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
@@ -8321,6 +8321,17 @@ The Query Processor estimates that implementing the following index could improv
None
+
+ CREATE TABLE permission denied in database '{0}'.
+ CREATE TABLE permission denied in database '{0}'.
+
+
+
+ ALTER TABLE permission denied for table '{0}'.
+ ALTER TABLE permission denied for table '{0}'.
+ .
+ Parameters: 0 - table (string)
+