Skip to content

Commit 63abe6b

Browse files
committed
Merge pull request #50 from AsrOneSdk/neha-dev
Correction of resx file
2 parents dbabc19 + bab097f commit 63abe6b

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

src/Common/Commands.Common/Properties/Resources.Designer.cs

Lines changed: 1 addition & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Common/Commands.Common/Properties/Resources.resx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1346,9 +1346,6 @@ use and privacy statement at <url> and (c) agree to sharing my contact inf
13461346
<data name="RemoveProfileMessage" xml:space="preserve">
13471347
<value>Removing the Azure profile</value>
13481348
</data>
1349-
<data name="StorageAccountValidationUnsuccessful" xml:space="preserve">
1350-
<value>The Subscription or Storage account couldn’t be validated. For failovers to be successful, the Subscription should belong to your account, the Storage account to the Subscription and Storage account location must be the same as location of your Vault.</value>
1351-
</data>
13521349
<data name="SubscriptionDataFileDeprecated" xml:space="preserve">
13531350
<value>The SubscriptionDataFile parameter is deprecated. This parameter will be removed in a future release. See https://github.com/Azure/azure-powershell/wiki/Proposed-Design-Stateless-Azure-Profile for a description of the upcoming mechanism for providing alternate sources of subscription information.</value>
13541351
</data>

src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,4 +250,7 @@ Are you sure you want to continue {0}?</value>
250250
<value>Storage account given is in {0} whereas the vault is in {1}.
251251
Please provide a storage account with the same location as that of the vault.</value>
252252
</data>
253+
<data name="StorageAccountValidationUnsuccessful" xml:space="preserve">
254+
<value>The Subscription or Storage account couldn’t be validated. For failovers to be successful, the Subscription should belong to your account, the Storage account to the Subscription and Storage account location must be the same as location of your Vault.</value>
255+
</data>
253256
</root>

src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/CreateAzureSiteRecoveryProtectionProfileObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ private void EnterpriseToAzureProtectionProfileObject()
214214

215215
if (!validationSuccessful)
216216
{
217-
this.WriteWarning(string.Format(Resources.StorageAccountValidationUnsuccessful));
217+
this.WriteWarning(string.Format(Properties.Resources.StorageAccountValidationUnsuccessful));
218218

219219
this.ConfirmAction(
220220
this.Force.IsPresent,

0 commit comments

Comments
 (0)