Skip to content

Commit 371df21

Browse files
authored
fixing high bit characters (#4111)
* fixing high bit characters * fix broken link
1 parent 548d509 commit 371df21

40 files changed

+425
-375
lines changed

reference/3.0/CimCmdlets/Get-CimAssociatedInstance.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
---
22
external help file: Microsoft.Management.Infrastructure.CimCmdlets.dll-Help.xml
3+
keywords: powershell,cmdlet
4+
locale: en-us
35
Module Name: CimCmdlets
4-
online version:
6+
ms.date: 06/09/2017
57
schema: 2.0.0
68
---
79

@@ -107,7 +109,7 @@ Parameter Sets: (All)
107109
Aliases:
108110

109111
Required: False
110-
Position: 2
112+
Position: 1
111113
Default value: None
112114
Accept pipeline input: True (ByPropertyName)
113115
Accept wildcard characters: False
@@ -165,7 +167,7 @@ Parameter Sets: (All)
165167
Aliases: CimInstance
166168

167169
Required: True
168-
Position: 1
170+
Position: 0
169171
Default value: None
170172
Accept pipeline input: True (ByValue)
171173
Accept wildcard characters: False

reference/3.0/Microsoft.PowerShell.Core/About/about_Script_Internationalization.md

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@ title: about_Script_Internationalization
88
# About Script Internationalization
99

1010
## Short Description
11-
1211
Describes the script internationalization features that make it easy for
1312
scripts to display messages and instructions to users in their user interface
1413
(UI) language.
1514

1615
## Long Description
1716

18-
The Windows PowerShell script internationalization features allow you to
17+
The PowerShell script internationalization features allow you to
1918
better serve users throughout the world by displaying Help and user messages
2019
for scripts and functions in the user's UI language.
2120

@@ -26,27 +25,27 @@ separate from code so they are easily identified and extracted. A new cmdlet,
2625
`ConvertFrom-StringData`, converts text strings into dictionary-like hash
2726
tables to facilitate translation.
2827

29-
To support international Help text, Windows PowerShell includes the following
28+
To support international Help text, PowerShell includes the following
3029
features:
3130

32-
- A Data section that separates text strings from code instructions. For more
31+
* A Data section that separates text strings from code instructions. For more
3332
information about the Data section, see
3433
[about_Data_Sections](about_Data_Sections.md).
3534

36-
- New automatic variables, \$PSCulture and \$PSUICulture. \$PSCulture stores the
35+
* New automatic variables, \$PSCulture and \$PSUICulture. \$PSCulture stores the
3736
name of the UI language used on the system for elements such as the date,
3837
time, and currency. The $PSUICulture variable stores the name of the UI
3938
language used on the system for user interface elements such as menus and text
4039
strings.
4140

42-
- A cmdlet, `ConvertFrom-StringData`, that converts text strings into
41+
* A cmdlet, `ConvertFrom-StringData`, that converts text strings into
4342
dictionary-like hash tables to facilitate translation. For more information,
4443
see [ConvertFrom-StringData](../../Microsoft.PowerShell.Utility/ConvertFrom-StringData.md).
4544

46-
- A new file type, .psd1, that stores translated text strings. The .psd1 files
45+
* A new file type, .psd1, that stores translated text strings. The .psd1 files
4746
are stored in language-specific subdirectories of the script directory.
4847

49-
- A cmdlet, `Import-LocalizedData`, that imports translated text strings for a
48+
* A cmdlet, `Import-LocalizedData`, that imports translated text strings for a
5049
specified language into a script at runtime. This cmdlet recognizes and
5150
imports strings in any Windows-supported language. For more information see
5251
[Import-LocalizedData](../../Microsoft.PowerShell.Utility/Import-LocalizedData.md).
@@ -109,9 +108,9 @@ include the following statement:
109108

110109
```powershell
111110
ConvertFrom-StringData -StringData @'
112-
helloWorld = Hello, World (in German).
113-
errorMsg1 = You cannot leave the user name field blank (in German).
114-
promptMsg = Please enter your user name (in German).
111+
helloWorld = Hallo, Welt.
112+
errorMsg1 = Das Feld Benutzername darf nicht leer sein.
113+
promptMsg = Geben Sie Ihren Benutzernamen ein.
115114
'@
116115
```
117116

@@ -120,9 +119,9 @@ directory might includes the following statement:
120119

121120
```powershell
122121
ConvertFrom-StringData -StringData @'
123-
helloWorld = Hello, World (in Arabic).
124-
errorMsg1 = You cannot leave the user name field blank (in Arabic).
125-
promptMsg = Please enter your user name (in Arabic).
122+
helloWorld = مرحبًا أيها العالَم
123+
errorMsg1 = لا يمكنك ترك حقل اسم المستخدم فارغًا
124+
promptMsg = يرجى إدخال اسم المستخدم الخاص بك
126125
'@
127126
```
128127

@@ -221,14 +220,14 @@ The following is a complete listing of .\de-DE\sample1.psd1:
221220
```powershell
222221
# culture="de-DE"
223222
ConvertFrom-StringData @'
224-
messageDate = Today is
225-
d0 = Sunday (in German)
226-
d1 = Monday (in German)
227-
d2 = Tuesday (in German)
228-
d3 = Wednesday (in German)
229-
d4 = Thursday (in German)
230-
d5 = Friday (in German)
231-
d6 = Saturday (in German)
223+
messageDate = Heute ist
224+
    d0 = Sonntag
225+
    d1 = Montag
226+
    d2 = Dienstag
227+
    d3 = Mittwoch
228+
    d4 = Donnerstag
229+
    d5 = Freitag
230+
    d6 = Samstag
232231
'@
233232
```
234233

reference/4.0/Microsoft.PowerShell.Core/About/about_Script_Internationalization.md

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,16 @@ locale: en-us
55
keywords: powershell,cmdlet
66
title: about_Script_Internationalization
77
---
8-
98
# About Script Internationalization
109

1110
## Short Description
12-
1311
Describes the script internationalization features that make it easy for
1412
scripts to display messages and instructions to users in their user interface
1513
(UI) language.
1614

1715
## Long Description
1816

19-
The Windows PowerShell script internationalization features allow you to
17+
The PowerShell script internationalization features allow you to
2018
better serve users throughout the world by displaying Help and user messages
2119
for scripts and functions in the user's UI language.
2220

@@ -27,7 +25,7 @@ separate from code so they are easily identified and extracted. A new cmdlet,
2725
`ConvertFrom-StringData`, converts text strings into dictionary-like hash
2826
tables to facilitate translation.
2927

30-
To support international Help text, Windows PowerShell includes the following
28+
To support international Help text, PowerShell includes the following
3129
features:
3230

3331
* A Data section that separates text strings from code instructions. For more
@@ -110,9 +108,9 @@ include the following statement:
110108

111109
```powershell
112110
ConvertFrom-StringData -StringData @'
113-
helloWorld = Hello, World (in German).
114-
errorMsg1 = You cannot leave the user name field blank (in German).
115-
promptMsg = Please enter your user name (in German).
111+
helloWorld = Hallo, Welt.
112+
errorMsg1 = Das Feld Benutzername darf nicht leer sein.
113+
promptMsg = Geben Sie Ihren Benutzernamen ein.
116114
'@
117115
```
118116

@@ -121,9 +119,9 @@ directory might includes the following statement:
121119

122120
```powershell
123121
ConvertFrom-StringData -StringData @'
124-
helloWorld = Hello, World (in Arabic).
125-
errorMsg1 = You cannot leave the user name field blank (in Arabic).
126-
promptMsg = Please enter your user name (in Arabic).
122+
helloWorld = مرحبًا أيها العالَم
123+
errorMsg1 = لا يمكنك ترك حقل اسم المستخدم فارغًا
124+
promptMsg = يرجى إدخال اسم المستخدم الخاص بك
127125
'@
128126
```
129127

@@ -222,14 +220,14 @@ The following is a complete listing of .\de-DE\sample1.psd1:
222220
```powershell
223221
# culture="de-DE"
224222
ConvertFrom-StringData @'
225-
messageDate = Today is
226-
d0 = Sunday (in German)
227-
d1 = Monday (in German)
228-
d2 = Tuesday (in German)
229-
d3 = Wednesday (in German)
230-
d4 = Thursday (in German)
231-
d5 = Friday (in German)
232-
d6 = Saturday (in German)
223+
messageDate = Heute ist
224+
    d0 = Sonntag
225+
    d1 = Montag
226+
    d2 = Dienstag
227+
    d3 = Mittwoch
228+
    d4 = Donnerstag
229+
    d5 = Freitag
230+
    d6 = Samstag
233231
'@
234232
```
235233

@@ -247,4 +245,4 @@ Today is Friday (in German)
247245
* [about_Hash_Tables](about_Hash_Tables.md)
248246
* [about_Quoting_Rules](about_Quoting_Rules.md)
249247
* [ConvertFrom-StringData](../../Microsoft.PowerShell.Utility/ConvertFrom-StringData.md)
250-
* [Import-LocalizedData](../../Microsoft.PowerShell.Utility/Import-LocalizedData.md)
248+
* [Import-LocalizedData](../../Microsoft.PowerShell.Utility/Import-LocalizedData.md)

reference/5.0/Microsoft.PowerShell.Core/About/about_Script_Internationalization.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ scripts to display messages and instructions to users in their user interface
1414

1515
## Long Description
1616

17-
The Windows PowerShell script internationalization features allow you to
17+
The PowerShell script internationalization features allow you to
1818
better serve users throughout the world by displaying Help and user messages
1919
for scripts and functions in the user's UI language.
2020

@@ -25,7 +25,7 @@ separate from code so they are easily identified and extracted. A new cmdlet,
2525
`ConvertFrom-StringData`, converts text strings into dictionary-like hash
2626
tables to facilitate translation.
2727

28-
To support international Help text, Windows PowerShell includes the following
28+
To support international Help text, PowerShell includes the following
2929
features:
3030

3131
* A Data section that separates text strings from code instructions. For more
@@ -108,9 +108,9 @@ include the following statement:
108108

109109
```powershell
110110
ConvertFrom-StringData -StringData @'
111-
helloWorld = Hello, World (in German).
112-
errorMsg1 = You cannot leave the user name field blank (in German).
113-
promptMsg = Please enter your user name (in German).
111+
helloWorld = Hallo, Welt.
112+
errorMsg1 = Das Feld Benutzername darf nicht leer sein.
113+
promptMsg = Geben Sie Ihren Benutzernamen ein.
114114
'@
115115
```
116116

@@ -119,9 +119,9 @@ directory might includes the following statement:
119119

120120
```powershell
121121
ConvertFrom-StringData -StringData @'
122-
helloWorld = Hello, World (in Arabic).
123-
errorMsg1 = You cannot leave the user name field blank (in Arabic).
124-
promptMsg = Please enter your user name (in Arabic).
122+
helloWorld = مرحبًا أيها العالَم
123+
errorMsg1 = لا يمكنك ترك حقل اسم المستخدم فارغًا
124+
promptMsg = يرجى إدخال اسم المستخدم الخاص بك
125125
'@
126126
```
127127

@@ -220,14 +220,14 @@ The following is a complete listing of .\de-DE\sample1.psd1:
220220
```powershell
221221
# culture="de-DE"
222222
ConvertFrom-StringData @'
223-
messageDate = Today is
224-
d0 = Sunday (in German)
225-
d1 = Monday (in German)
226-
d2 = Tuesday (in German)
227-
d3 = Wednesday (in German)
228-
d4 = Thursday (in German)
229-
d5 = Friday (in German)
230-
d6 = Saturday (in German)
223+
messageDate = Heute ist
224+
    d0 = Sonntag
225+
    d1 = Montag
226+
    d2 = Dienstag
227+
    d3 = Mittwoch
228+
    d4 = Donnerstag
229+
    d5 = Freitag
230+
    d6 = Samstag
231231
'@
232232
```
233233

reference/5.1/CimCmdlets/Invoke-CimMethod.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
---
22
external help file: Microsoft.Management.Infrastructure.CimCmdlets.dll-Help.xml
3+
keywords: powershell,cmdlet
4+
locale: en-us
35
Module Name: CimCmdlets
4-
online version:
6+
ms.date: 06/09/2017
57
schema: 2.0.0
68
---
79

@@ -445,8 +447,7 @@ Accept wildcard characters: False
445447
446448
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
447449
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
448-
-WarningAction, and -WarningVariable. For more information, see about_CommonParameters
449-
(http://go.microsoft.com/fwlink/?LinkID=113216).
450+
-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
450451
451452
## INPUTS
452453

reference/5.1/CimCmdlets/Remove-CimInstance.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
---
22
external help file: Microsoft.Management.Infrastructure.CimCmdlets.dll-Help.xml
3+
keywords: powershell,cmdlet
4+
locale: en-us
35
Module Name: CimCmdlets
4-
online version:
6+
ms.date: 06/09/2017
57
schema: 2.0.0
68
---
79

0 commit comments

Comments
 (0)