10000 Remove double spaces between words in resx files (#4740) by korygill · Pull Request #4741 · PowerShell/PowerShell · GitHub
[go: up one dir, main page]

Skip to content

Remove double spaces between words in resx files (#4740) #4741

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
<value>The following export destination path is ambiguous: {0}.</value>
</data>
<data name="CounterPathIsInvalid" xml:space="preserve">
<value>The {0} performance counter path is not valid.</value>
<value>The {0} performance counter path is not valid.</value>
</data>
<data name="CounterSampleDataInvalid" xml:space="preserve">
<value>The data in one of the performance counter samples is not valid. View the Status property for each PerformanceCounterSample object to make sure it contains valid data.</value>
Expand Down Expand Up @@ -280,7 +280,7 @@ The defined template is following:
<value>Cooked Values</value>
</data>
<data name="Counter1FileLimit" xml:space="preserve">
<value>You cannot import more than one comma-separated (.csv) or tab-separated (.tsv) performance counter file in each command.</value>
<value>You cannot import more than one comma-separated (.csv) or tab-separated (.tsv) performance counter file in each command.</value>
</data>

</root>
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
<value>Do you want to remove the "{0}" source from the "{1}" computer?</value>
</data>
<data name="InvalidOverflowAction" xml:space="preserve">
<value>Retention days is valid only if the overflow action is "OverwriteOlder". Please change and try again.</value>
<value>Retention days is valid only if the overflow action is "OverwriteOlder". Please change and try again.</value>
</data>
<data name="InvalidArgument" xml:space="preserve">
<value>Specify a valid value for the number of retention days.</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
<value>Could not resolve remote alias '{0}'.</value>
</data>
<data name="ErrorSkippedNonRequestedCommand" xml:space="preserve">
<value>Proxy creation has been skipped for the '{0}' command, because the name did not match the value of the Name parameter.</value>
<value>Proxy creation has been skipped for the '{0}' command, because the name did not match the value of the Name parameter.</value>
</data>
<data name="ErrorSkippedNonRequestedTypeDefinition" xml:space="preserve">
<value>Extended type definition has been skipped for the '{0}' type because its name did not match the value of the FormatTypeName parameter.</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
<value>Cannot process argument because the value of argument "{0}" is null. Change the value of argument "{0}" to a non-null value.</value>
</data>
<data name="ArgumentOutOfRange" xml:space="preserve">
<value>Cannot process argument because the value of argument "{0}" is out of range. Change argument "{0}" to a value that is within range.</value>
<value>Cannot process argument because the value of argument "{0}" is out of range. Change argument "{0}" to a value that is within range.</value>
</data>
<data name="InvalidOperation" xml:space="preserve">
<value>Cannot perform operation because operation "{0}" is not valid. Remove operation "{0}", or investigate why it is not valid.</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
<value> {0}, {1,-16} Stop operation and exit the debugger</value>
</data>
<data name="GetStackTraceHelp" xml:space="preserve">
<value> {0}, Get-PSCallStack Display call stack</value>
<value> {0}, Get-PSCallStack Display call stack</value>
</data>
<data name="ListHelp" xml:space="preserve">
<value> {0}, {1,-16} List source code for the current script. </value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ The #requires statement must be in one of the following formats:
<value>A #requires statement has specified only a shellID. #Requires statements must specify a required Windows PowerShell snap-in when running in Windows PowerShell.</value>
</data>
<data name="RequiresElevation" xml:space="preserve">
<value>The script '{0}' cannot be run because it contains a "#requires" statement for running as Administrator. The current Windows PowerShell session is not running as Administrator. Start Windows PowerShell by using the Run as Administrator option, and then try running the script again.</value>
<value>The script '{0}' cannot be run because it contains a "#requires" statement for running as Administrator. The current Windows PowerShell session is not running as Administrator. Start Windows PowerShell by using the Run as Administrator option, and then try running the script again.</value>
</data>
<data name="PSSnapInNameVersion" xml:space="preserve">
<value>{0} (Version {1})</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ All WinRM sessions connected to Windows PowerShell session configurations, such
<value>Modules to import when applied to a session</value>
</data>
<data name="DISCPowerShellVersionComment" xml:space="preserve">
<value>Version of the Windows PowerShell engine to use when applied to a session</value>
<value>Version of the Windows PowerShell engine to use when applied to a session</value>
</data>
<data name="DISCProcessorArchitectureComment" xml:space="preserve">
<value>Processor architecture to use when applied to a session</value>
Expand Down Expand Up @@ -1369,7 +1369,7 @@ All WinRM sessions connected to Windows PowerShell session configurations, such
<value>The remote session to which you are connected does not support remote debugging. You must connect to a remote computer that is running Windows PowerShell {0} or greater.</value>
</data>
<data name="ICMInvalidSessionState" xml:space="preserve">
<value>Because the session state for session {0}, {1}, {2} is not equal to Open, you cannot run a command in the session. The session state is {3}.</value>
<value>Because the session state for session {0}, {1}, {2} is not equal to Open, you cannot run a command in the session. The session state is {3}.</value>
</data>
<data name="ICMNoValidRunspaces" xml:space="preserve">
<value>No valid sessions were specified. Ensure you provide valid sessions that are in the Opened state and are available to run commands.</value>
Expand Down
0