forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SqlDatabase: Added localization (dsccommunity#1345)
- Changes to SqlDatabase - Added en-US localization (issue dsccommunity#606).
- Loading branch information
Showing
6 changed files
with
100 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
DSCResources/MSFT_SqlDatabase/en-US/MSFT_SqlDatabase.strings.psd1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
ConvertFrom-StringData @' | ||
GetDatabase = Get the state of the database '{0}' on the instance '{1}'. | ||
DatabasePresent = There is a database '{0}' present, and has the collation '{1}'. | ||
DatabaseAbsent = It does not exist a database named '{0}'. | ||
InvalidCollation = The specified collation '{0}' is not a valid collation for the instance '{1}'. | ||
SetDatabase = Changing properties of the database '{0}' on the instance '{1}'. | ||
UpdatingCollation = Changing the database collation to '{0}'. | ||
FailedToUpdateDatabase = Failed to update database {0} with specified changes. | ||
CreateDatabase = Creating the database '{0}'. | ||
DropDatabase = Removing the database '{0}'. | ||
FailedToCreateDatabase = Failed to create the database '{0}'. | ||
FailedToDropDatabase = Failed to remove the database '{0}' | ||
TestingConfiguration = Determines the state of the database '{0}' on the instance '{1}'. | ||
NotInDesiredStateAbsent = Expected the database '{0}' to absent, but it was present. | ||
NotInDesiredStatePresent = Expected the database '{0}' to present, but it was absent | ||
CollationWrong = The database '{0}' exist and has the collation '{1}', but expected it to have the collation '{2}'. | ||
'@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters