mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-03-11 03:51:41 -04:00
handling offline and inassisable db in oe (#369)
* handling offline and inassisable db in oe
This commit is contained in:
@@ -2333,6 +2333,14 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string DatabaseNotAccessible
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.DatabaseNotAccessible);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ScriptingParams_ConnectionString_Property_Invalid
|
||||
{
|
||||
get
|
||||
@@ -4229,6 +4237,9 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string SystemVersioned_LabelPart = "SystemVersioned_LabelPart";
|
||||
|
||||
|
||||
public const string DatabaseNotAccessible = "DatabaseNotAccessible";
|
||||
|
||||
|
||||
public const string ScriptingParams_ConnectionString_Property_Invalid = "ScriptingParams_ConnectionString_Property_Invalid";
|
||||
|
||||
|
||||
|
||||
@@ -1339,6 +1339,10 @@
|
||||
<value>System-Versioned</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="DatabaseNotAccessible" xml:space="preserve">
|
||||
<value>The database {0} is not accessible.</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ScriptingParams_ConnectionString_Property_Invalid" xml:space="preserve">
|
||||
<value>Error parsing ScriptingParams.ConnectionString property.</value>
|
||||
<comment></comment>
|
||||
|
||||
@@ -667,6 +667,8 @@ History_LabelPart = History
|
||||
|
||||
SystemVersioned_LabelPart = System-Versioned
|
||||
|
||||
DatabaseNotAccessible = The database {0} is not accessible.
|
||||
|
||||
|
||||
############################################################################
|
||||
# Scripting Service
|
||||
|
||||
@@ -2096,6 +2096,11 @@
|
||||
<target state="new">No Applicable Filegroup</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="DatabaseNotAccessible">
|
||||
<source>The database {0} is not accessible.</source>
|
||||
<target state="new">The database {0} is not accessible.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
||||
Reference in New Issue
Block a user