mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-30 17:24:37 -05:00
Fixed node labels, status, sub types (#338)
This commit is contained in:
@@ -2157,6 +2157,182 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_SubroutineParameterLabelFormatString
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_SubroutineParameterLabelFormatString);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_SubroutineParameterNoDefaultLabel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_SubroutineParameterNoDefaultLabel);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_SubroutineParameterInputLabel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_SubroutineParameterInputLabel);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_SubroutineParameterInputOutputLabel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_SubroutineParameterInputOutputLabel);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_SubroutineParameterInputReadOnlyLabel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_SubroutineParameterInputReadOnlyLabel);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_SubroutineParameterInputOutputReadOnlyLabel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_SubroutineParameterInputOutputReadOnlyLabel);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_SubroutineParameterDefaultLabel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_SubroutineParameterDefaultLabel);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_NullColumn_Label
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_NullColumn_Label);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_NotNullColumn_Label
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_NotNullColumn_Label);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_UDDTLabelWithType
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_UDDTLabelWithType);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_UDDTLabelWithoutType
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_UDDTLabelWithoutType);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_ComputedColumnLabelWithType
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_ComputedColumnLabelWithType);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_ComputedColumnLabelWithoutType
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_ComputedColumnLabelWithoutType);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_ColumnSetLabelWithoutType
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_ColumnSetLabelWithoutType);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_ColumnSetLabelWithType
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_ColumnSetLabelWithType);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaHierarchy_ColumnSetLabelWithTypeAndKeyString
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaHierarchy_ColumnSetLabelWithTypeAndKeyString);
|
||||
}
|
||||
}
|
||||
|
||||
public static string UniqueIndex_LabelPart
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.UniqueIndex_LabelPart);
|
||||
}
|
||||
}
|
||||
|
||||
public static string NonUniqueIndex_LabelPart
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.NonUniqueIndex_LabelPart);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ClusteredIndex_LabelPart
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ClusteredIndex_LabelPart);
|
||||
}
|
||||
}
|
||||
|
||||
public static string NonClusteredIndex_LabelPart
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.NonClusteredIndex_LabelPart);
|
||||
}
|
||||
}
|
||||
|
||||
public static string History_LabelPart
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.History_LabelPart);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SystemVersioned_LabelPart
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SystemVersioned_LabelPart);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ScriptingParams_ConnectionString_Property_Invalid
|
||||
{
|
||||
get
|
||||
@@ -3099,6 +3275,72 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string SchemaHierarchy_ColumnEncryptionKeys = "SchemaHierarchy_ColumnEncryptionKeys";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_SubroutineParameterLabelFormatString = "SchemaHierarchy_SubroutineParameterLabelFormatString";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_SubroutineParameterNoDefaultLabel = "SchemaHierarchy_SubroutineParameterNoDefaultLabel";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_SubroutineParameterInputLabel = "SchemaHierarchy_SubroutineParameterInputLabel";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_SubroutineParameterInputOutputLabel = "SchemaHierarchy_SubroutineParameterInputOutputLabel";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_SubroutineParameterInputReadOnlyLabel = "SchemaHierarchy_SubroutineParameterInputReadOnlyLabel";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_SubroutineParameterInputOutputReadOnlyLabel = "SchemaHierarchy_SubroutineParameterInputOutputReadOnlyLabel";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_SubroutineParameterDefaultLabel = "SchemaHierarchy_SubroutineParameterDefaultLabel";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_NullColumn_Label = "SchemaHierarchy_NullColumn_Label";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_NotNullColumn_Label = "SchemaHierarchy_NotNullColumn_Label";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_UDDTLabelWithType = "SchemaHierarchy_UDDTLabelWithType";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_UDDTLabelWithoutType = "SchemaHierarchy_UDDTLabelWithoutType";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_ComputedColumnLabelWithType = "SchemaHierarchy_ComputedColumnLabelWithType";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_ComputedColumnLabelWithoutType = "SchemaHierarchy_ComputedColumnLabelWithoutType";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_ColumnSetLabelWithoutType = "SchemaHierarchy_ColumnSetLabelWithoutType";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_ColumnSetLabelWithType = "SchemaHierarchy_ColumnSetLabelWithType";
|
||||
|
||||
|
||||
public const string SchemaHierarchy_ColumnSetLabelWithTypeAndKeyString = "SchemaHierarchy_ColumnSetLabelWithTypeAndKeyString";
|
||||
|
||||
|
||||
public const string UniqueIndex_LabelPart = "UniqueIndex_LabelPart";
|
||||
|
||||
|
||||
public const string NonUniqueIndex_LabelPart = "NonUniqueIndex_LabelPart";
|
||||
|
||||
|
||||
public const string ClusteredIndex_LabelPart = "ClusteredIndex_LabelPart";
|
||||
|
||||
|
||||
public const string NonClusteredIndex_LabelPart = "NonClusteredIndex_LabelPart";
|
||||
|
||||
|
||||
public const string History_LabelPart = "History_LabelPart";
|
||||
|
||||
|
||||
public const string SystemVersioned_LabelPart = "SystemVersioned_LabelPart";
|
||||
|
||||
|
||||
public const string ScriptingParams_ConnectionString_Property_Invalid = "ScriptingParams_ConnectionString_Property_Invalid";
|
||||
|
||||
|
||||
|
||||
@@ -1251,6 +1251,94 @@
|
||||
<value>Column Encryption Keys</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_SubroutineParameterLabelFormatString" xml:space="preserve">
|
||||
<value>{0} ({1}, {2}, {3})</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_SubroutineParameterNoDefaultLabel" xml:space="preserve">
|
||||
<value>No default</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_SubroutineParameterInputLabel" xml:space="preserve">
|
||||
<value>Input</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_SubroutineParameterInputOutputLabel" xml:space="preserve">
|
||||
<value>Input/Output</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_SubroutineParameterInputReadOnlyLabel" xml:space="preserve">
|
||||
<value>Input/ReadOnly</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_SubroutineParameterInputOutputReadOnlyLabel" xml:space="preserve">
|
||||
<value>Input/Output/ReadOnly</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_SubroutineParameterDefaultLabel" xml:space="preserve">
|
||||
<value>Default</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_NullColumn_Label" xml:space="preserve">
|
||||
<value>null</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_NotNullColumn_Label" xml:space="preserve">
|
||||
<value>not null</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_UDDTLabelWithType" xml:space="preserve">
|
||||
<value>{0} ({1}, {2})</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_UDDTLabelWithoutType" xml:space="preserve">
|
||||
<value>{0} ({1})</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_ComputedColumnLabelWithType" xml:space="preserve">
|
||||
<value>{0} ({1}Computed, {2}, {3})</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_ComputedColumnLabelWithoutType" xml:space="preserve">
|
||||
<value>{0} ({1}Computed)</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_ColumnSetLabelWithoutType" xml:space="preserve">
|
||||
<value>{0} (Column Set, {1})</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_ColumnSetLabelWithType" xml:space="preserve">
|
||||
<value>{0} (Column Set, {1}{2}, {3})</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SchemaHierarchy_ColumnSetLabelWithTypeAndKeyString" xml:space="preserve">
|
||||
<value>{0} (Column Set, {1}, {2}, {3})</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="UniqueIndex_LabelPart" xml:space="preserve">
|
||||
<value>Unique</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="NonUniqueIndex_LabelPart" xml:space="preserve">
|
||||
<value>Non-Unique</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ClusteredIndex_LabelPart" xml:space="preserve">
|
||||
<value>Clustered</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="NonClusteredIndex_LabelPart" xml:space="preserve">
|
||||
<value>Non-Clustered</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="History_LabelPart" xml:space="preserve">
|
||||
<value>History</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="SystemVersioned_LabelPart" xml:space="preserve">
|
||||
<value>System-Versioned</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ScriptingParams_ConnectionString_Property_Invalid" xml:space="preserve">
|
||||
<value>Error parsing ScriptingParams.ConnectionString property.</value>
|
||||
<comment></comment>
|
||||
|
||||
@@ -623,6 +623,51 @@ SchemaHierarchy_ColumnMasterKeys = Column Master Keys
|
||||
|
||||
SchemaHierarchy_ColumnEncryptionKeys = Column Encryption Keys
|
||||
|
||||
SchemaHierarchy_SubroutineParameterLabelFormatString = {0} ({1}, {2}, {3})
|
||||
|
||||
SchemaHierarchy_SubroutineParameterNoDefaultLabel = No default
|
||||
|
||||
SchemaHierarchy_SubroutineParameterInputLabel = Input
|
||||
|
||||
SchemaHierarchy_SubroutineParameterInputOutputLabel = Input/Output
|
||||
|
||||
SchemaHierarchy_SubroutineParameterInputReadOnlyLabel = Input/ReadOnly
|
||||
|
||||
SchemaHierarchy_SubroutineParameterInputOutputReadOnlyLabel = Input/Output/ReadOnly
|
||||
|
||||
SchemaHierarchy_SubroutineParameterDefaultLabel = Default
|
||||
|
||||
SchemaHierarchy_NullColumn_Label = null
|
||||
|
||||
SchemaHierarchy_NotNullColumn_Label = not null
|
||||
|
||||
SchemaHierarchy_UDDTLabelWithType = {0} ({1}, {2})
|
||||
|
||||
SchemaHierarchy_UDDTLabelWithoutType = {0} ({1})
|
||||
|
||||
SchemaHierarchy_ComputedColumnLabelWithType = {0} ({1}Computed, {2}, {3})
|
||||
|
||||
SchemaHierarchy_ComputedColumnLabelWithoutType = {0} ({1}Computed)
|
||||
|
||||
SchemaHierarchy_ColumnSetLabelWithoutType = {0} (Column Set, {1})
|
||||
|
||||
SchemaHierarchy_ColumnSetLabelWithType = {0} (Column Set, {1}{2}, {3})
|
||||
|
||||
SchemaHierarchy_ColumnSetLabelWithTypeAndKeyString = {0} (Column Set, {1}, {2}, {3})
|
||||
|
||||
UniqueIndex_LabelPart = Unique
|
||||
|
||||
NonUniqueIndex_LabelPart = Non-Unique
|
||||
|
||||
ClusteredIndex_LabelPart = Clustered
|
||||
|
||||
NonClusteredIndex_LabelPart = Non-Clustered
|
||||
|
||||
History_LabelPart = History
|
||||
|
||||
SystemVersioned_LabelPart = System-Versioned
|
||||
|
||||
|
||||
############################################################################
|
||||
# Scripting Service
|
||||
|
||||
|
||||
@@ -1431,6 +1431,116 @@
|
||||
<target state="new">Error parsing ScriptingListObjectsCompleteParams.ConnectionString property.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_SubroutineParameterLabelFormatString">
|
||||
<source>{0} ({1}, {2}, {3})</source>
|
||||
<target state="new">{0} ({1}, {2}, {3})</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_SubroutineParameterNoDefaultLabel">
|
||||
<source>No default</source>
|
||||
<target state="new">No default</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_SubroutineParameterInputLabel">
|
||||
<source>Input</source>
|
||||
<target state="new">Input</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_SubroutineParameterInputOutputLabel">
|
||||
<source>Input/Output</source>
|
||||
<target state="new">Input/Output</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_SubroutineParameterInputReadOnlyLabel">
|
||||
<source>Input/ReadOnly</source>
|
||||
<target state="new">Input/ReadOnly</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_SubroutineParameterInputOutputReadOnlyLabel">
|
||||
<source>Input/Output/ReadOnly</source>
|
||||
<target state="new">Input/Output/ReadOnly</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_SubroutineParameterDefaultLabel">
|
||||
<source>Default</source>
|
||||
<target state="new">Default</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_NullColumn_Label">
|
||||
<source>null</source>
|
||||
<target state="new">null</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_NotNullColumn_Label">
|
||||
<source>not null</source>
|
||||
<target state="new">not null</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_UDDTLabelWithType">
|
||||
<source>{0} ({1}, {2})</source>
|
||||
<target state="new">{0} ({1}, {2})</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_UDDTLabelWithoutType">
|
||||
<source>{0} ({1})</source>
|
||||
<target state="new">{0} ({1})</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_ComputedColumnLabelWithType">
|
||||
<source>{0} ({1}Computed, {2}, {3})</source>
|
||||
<target state="new">{0} ({1}Computed, {2}, {3})</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_ComputedColumnLabelWithoutType">
|
||||
<source>{0} ({1}Computed)</source>
|
||||
<target state="new">{0} ({1}Computed)</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_ColumnSetLabelWithoutType">
|
||||
<source>{0} (Column Set, {1})</source>
|
||||
<target state="new">{0} (Column Set, {1})</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_ColumnSetLabelWithType">
|
||||
<source>{0} (Column Set, {1}{2}, {3})</source>
|
||||
<target state="new">{0} (Column Set, {1}{2}, {3})</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SchemaHierarchy_ColumnSetLabelWithTypeAndKeyString">
|
||||
<source>{0} (Column Set, {1}, {2}, {3})</source>
|
||||
<target state="new">{0} (Column Set, {1}, {2}, {3})</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="UniqueIndex_LabelPart">
|
||||
<source>Unique</source>
|
||||
<target state="new">Unique</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NonUniqueIndex_LabelPart">
|
||||
<source>Non-Unique</source>
|
||||
<target state="new">Non-Unique</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ClusteredIndex_LabelPart">
|
||||
<source>Clustered</source>
|
||||
<target state="new">Clustered</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NonClusteredIndex_LabelPart">
|
||||
<source>Non-Clustered</source>
|
||||
<target state="new">Non-Clustere</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="History_LabelPart">
|
||||
<source>History</source>
|
||||
<target state="new">History</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SystemVersioned_LabelPart">
|
||||
<source>System-Versioned</source>
|
||||
<target state="new">System-Versioned</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
||||
Reference in New Issue
Block a user