mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-31 17:24:37 -05:00
localize the rule descriptions (#1543)
This commit is contained in:
@@ -6068,6 +6068,132 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<target state="new">Formula</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="IndexMustHaveColumnsRuleDescription">
|
||||
<source>Index '{0}' does not have any columns associated with it.</source>
|
||||
<target state="new">Index '{0}' does not have any columns associated with it.</target>
|
||||
<note>.
|
||||
Parameters: 0 - indexName (string) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ForeignKeyMustHaveColumnsRuleDescription">
|
||||
<source>Foreign key '{0}' does not have any columns specified.</source>
|
||||
<target state="new">Foreign key '{0}' does not have any columns specified.</target>
|
||||
<note>.
|
||||
Parameters: 0 - foreignKeyName (string) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnCanOnlyAppearOnceInIndexRuleDescription">
|
||||
<source>Column with name '{0}' has already been added to the index '{1}'. Row number: {2}.</source>
|
||||
<target state="new">Column with name '{0}' has already been added to the index '{1}'. Row number: {2}.</target>
|
||||
<note>.
|
||||
Parameters: 0 - columnName (string), 1 - indexName (string), 2 - rowNumber (int) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnCanOnlyAppearOnceInForeignKeyRuleDescription">
|
||||
<source>Column with name '{0}' has already been added to the foreign key '{1}'. Row number: {2}.</source>
|
||||
<target state="new">Column with name '{0}' has already been added to the foreign key '{1}'. Row number: {2}.</target>
|
||||
<note>.
|
||||
Parameters: 0 - columnName (string), 1 - foreignKeyName (string), 2 - rowNumber (int) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnCanOnlyAppearOnceInForeignKeyRuleForeignColumnDescription">
|
||||
<source>Foreign column with name '{0}' has already been added to the foreign key '{1}'. Row number: {2}.</source>
|
||||
<target state="new">Foreign column with name '{0}' has already been added to the foreign key '{1}'. Row number: {2}.</target>
|
||||
<note>.
|
||||
Parameters: 0 - columnName (string), 1 - foreignKeyName (string), 2 - rowNumber (int) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDuplicateConstraintNameRuleDescription">
|
||||
<source>The name '{0}' is already used by another constraint. Row number: {1}.</source>
|
||||
<target state="new">The name '{0}' is already used by another constraint. Row number: {1}.</target>
|
||||
<note>.
|
||||
Parameters: 0 - constraintName (string), 1 - rowNumber (int) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDuplicateColumnNameRuleDescription">
|
||||
<source>The name '{0}' is already used by another column. Row number: {1}.</source>
|
||||
<target state="new">The name '{0}' is already used by another column. Row number: {1}.</target>
|
||||
<note>.
|
||||
Parameters: 0 - columnName (string), 1 - rowNumber (int) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDuplicateIndexNameRuleDescription">
|
||||
<source>The name '{0}' is already used by another index. Row number: {1}.</source>
|
||||
<target state="new">The name '{0}' is already used by another index. Row number: {1}.</target>
|
||||
<note>.
|
||||
Parameters: 0 - indexName (string), 1 - rowNumber (int) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="EdgeConstraintMustHaveClausesRuleDescription">
|
||||
<source>Edge constraint '{0}' does not have any clauses specified.</source>
|
||||
<target state="new">Edge constraint '{0}' does not have any clauses specified.</target>
|
||||
<note>.
|
||||
Parameters: 0 - name (string) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="EdgeConstraintNoRepeatingClausesRuleDescription">
|
||||
<source>The pair '{0}' is already defined by another clause in the edge constraint. Row number: {1}.</source>
|
||||
<target state="new">The pair '{0}' is already defined by another clause in the edge constraint. Row number: {1}.</target>
|
||||
<note>.
|
||||
Parameters: 0 - pair (string), 1 - rowNumber (int) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="MemoryOptimizedTableMustHaveNonClusteredPrimaryKeyRuleDescription">
|
||||
<source>Memory-optimized table must have non-clustered primary key.</source>
|
||||
<target state="new">Memory-optimized table must have non-clustered primary key.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TemporalTableMustHavePrimaryKeyRuleDescription">
|
||||
<source>System versioned table must have primary key.</source>
|
||||
<target state="new">System versioned table must have primary key.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TemporalTableMustHavePeriodColumnsRuleDescription">
|
||||
<source>System versioned table must have the period columns defined.</source>
|
||||
<target state="new">System versioned table must have the period columns defined.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="PeriodColumnsRuleMoreThanOneIssueDescription">
|
||||
<source>Period columns (Generated Always As Row Start/End) can only be defined once.</source>
|
||||
<target state="new">Period columns (Generated Always As Row Start/End) can only be defined once.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="PeriodColumnsRuleNotMatchIssueDescription">
|
||||
<source>Period columns (Generated Always As Row Start/End) must be defined as pair. If one is defined, the other must also be defined.</source>
|
||||
<target state="new">Period columns (Generated Always As Row Start/End) must be defined as pair. If one is defined, the other must also be defined.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnsInPrimaryKeyCannotBeNullableRuleDescription">
|
||||
<source>Columns in primary key cannot be nullable.</source>
|
||||
<target state="new">Columns in primary key cannot be nullable.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="OnlyDurableMemoryOptimizedTableCanBeSystemVersionedRuleDescription">
|
||||
<source>Only durable (DURABILITY = SCHEMA_AND_DATA) memory-optimized tables can be system-versioned.</source>
|
||||
<target state="new">Only durable (DURABILITY = SCHEMA_AND_DATA) memory-optimized tables can be system-versioned.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TableMustHaveAtLeastOneColumnRuleDescription">
|
||||
<source>A table must have at least one non-computed column defined.</source>
|
||||
<target state="new">A table must have at least one non-computed column defined.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="MemoryOptimizedTableIdentityColumnRuleDescription">
|
||||
<source>The use of seed and increment values other than 1 is not supported with memory optimized tables.</source>
|
||||
<target state="new">The use of seed and increment values other than 1 is not supported with memory optimized tables.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TableShouldAvoidHavingMultipleEdgeConstraintsRuleDescription">
|
||||
<source>The table has more than one edge constraint on it. This is only useful as a temporary state when modifying existing edge constraints, and should not be used in other cases.</source>
|
||||
<target state="new">The table has more than one edge constraint on it. This is only useful as a temporary state when modifying existing edge constraints, and should not be used in other cases.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnCannotBeListedMoreThanOnceInPrimaryKeyRuleDescription">
|
||||
<source>Cannot use duplicate column names in primary key, column name: {0}</source>
|
||||
<target state="new">Cannot use duplicate column names in primary key, column name: {0}</target>
|
||||
<note>.
|
||||
Parameters: 0 - columnName (string) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="MemoryOptimizedCannotBeEnabledWhenNotSupportedRuleDescription">
|
||||
<source>Memory-optimized table is not supported for this database.</source>
|
||||
<target state="new">Memory-optimized table is not supported for this database.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="MutipleCreateTableStatementsInScriptRuleDescription">
|
||||
<source>There are multiple table definitions in the script, only the first table can be edited in the designer.</source>
|
||||
<target state="new">There are multiple table definitions in the script, only the first table can be edited in the designer.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
||||
Reference in New Issue
Block a user