added restore options (#423)

* added restore options
This commit is contained in:
Leila Lali
2017-07-28 12:54:08 -07:00
committed by GitHub
parent e1395cbd7d
commit e453a19d00
15 changed files with 505 additions and 64 deletions

View File

@@ -3477,6 +3477,14 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
public static string TheLastBackupTaken
{
get
{
return Keys.GetString(Keys.TheLastBackupTaken);
}
}
public static string ConnectionServiceListDbErrorNotConnected(string uri)
{
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
@@ -4890,6 +4898,9 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string RestoreBackupSetExpiration = "RestoreBackupSetExpiration";
public const string TheLastBackupTaken = "TheLastBackupTaken";
private Keys()
{ }

View File

@@ -1911,4 +1911,8 @@
<value>Expiration</value>
<comment></comment>
</data>
<data name="TheLastBackupTaken" xml:space="preserve">
<value>The last backup taken ({0})</value>
<comment></comment>
</data>
</root>

View File

@@ -835,4 +835,5 @@ RestoreBackupSetStartDate = Start Date
RestoreBackupSetFinishDate = Finish Date
RestoreBackupSetSize = Size
RestoreBackupSetUserName = User Name
RestoreBackupSetExpiration = Expiration
RestoreBackupSetExpiration = Expiration
TheLastBackupTaken = The last backup taken ({0})

View File

@@ -2239,6 +2239,11 @@
<target state="new">Name</target>
<note></note>
</trans-unit>
<trans-unit id="TheLastBackupTaken">
<source>The last backup taken ({0})</source>
<target state="new">The last backup taken ({0})</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>