Skip to content

Commit 5aa93d8

Browse files
(AB-506302) Fix overlocalization in New-Item (#12709)
Prior to this change, the **Target** alias for the **Value** parameter was being overlocalized. This change: - Adds `Target` to the `no-loc` list. - Fixes AB#506302 Co-authored-by: Sean Wheeler <sean.wheeler@microsoft.com>
1 parent d4f4015 commit 5aa93d8

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

reference/5.1/Microsoft.PowerShell.Management/New-Item.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
---
22
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
33
Locale: en-US
4+
no-loc:
5+
- Target
46
Module Name: Microsoft.PowerShell.Management
5-
ms.date: 02/23/2024
7+
ms.date: 01/28/2026
68
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/new-item?view=powershell-5.1&WT.mc_id=ps-gethelp
79
schema: 2.0.0
810
aliases:

reference/7.4/Microsoft.PowerShell.Management/New-Item.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
---
22
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
33
Locale: en-US
4+
no-loc:
5+
- Target
46
Module Name: Microsoft.PowerShell.Management
5-
ms.date: 02/23/2024
7+
ms.date: 01/28/2026
68
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/new-item?view=powershell-7.4&WT.mc_id=ps-gethelp
79
schema: 2.0.0
810
aliases:
@@ -176,7 +178,7 @@ to verify the paths of the newly created files.
176178

177179
### Example 7: Create a symbolic link to a file or folder
178180

179-
This example creates a symbolic link to the Notice.txt file in the current folder.
181+
This example creates a symbolic link to the `Notice.txt` file in the current folder.
180182

181183
```powershell
182184
$link = New-Item -ItemType SymbolicLink -Path .\link -Target .\Notice.txt

reference/7.5/Microsoft.PowerShell.Management/New-Item.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
---
22
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
33
Locale: en-US
4+
no-loc:
5+
- Target
46
Module Name: Microsoft.PowerShell.Management
5-
ms.date: 02/23/2024
7+
ms.date: 01/28/2026
68
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/new-item?view=powershell-7.5&WT.mc_id=ps-gethelp
79
schema: 2.0.0
810
aliases:

reference/7.6/Microsoft.PowerShell.Management/New-Item.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
---
22
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
33
Locale: en-US
4+
no-loc:
5+
- Target
46
Module Name: Microsoft.PowerShell.Management
5-
ms.date: 02/23/2024
7+
ms.date: 01/28/2026
68
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/new-item?view=powershell-7.6&WT.mc_id=ps-gethelp
79
schema: 2.0.0
810
aliases:

0 commit comments

Comments
 (0)