Skip to content
This repository was archived by the owner on Oct 4, 2021. It is now read-only.

Commit 193fbf1

Browse files
committed
[NuGet] Use ID instead of Id in user interface
Using ID allows Voice Over to announce it as I.D instead of a single word. Note that some Voice Over voices, such as English UK still announce the text incorrectly. Without changing the text to be "I.D." there does not seem to be a way of fixing this in the IDE. System Preferences on the Mac can be used to change the pronounciation for certain words if required. Fixes VSTS #1021636 - Accessibility: NuGet: Improper announcement for the "ID" word.
1 parent b3242d2 commit 193fbf1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

main/src/addins/MonoDevelop.PackageManagement/MonoDevelop.PackageManagement.Gui/ManagePackagesDialog.UI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ void Build ()
285285

286286
var packageIdLabel = new Label ();
287287
packageIdLabel.Font = packageInfoBoldFont;
288-
packageIdLabel.Text = GettextCatalog.GetString ("Id");
288+
packageIdLabel.Text = GettextCatalog.GetString ("ID");
289289
packageIdHBox.PackStart (packageIdLabel);
290290

291291
packageId = new Label ();

main/src/addins/MonoDevelop.PackageManagement/MonoDevelop.PackageManagement.NodeBuilders/PackageReferenceNodeDescriptor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ public PackageReferenceNodeDescriptor (PackageReferenceNode packageReferenceNode
4141
}
4242

4343
[LocalizedCategory ("Package")]
44-
[LocalizedDisplayName ("Id")]
45-
[LocalizedDescription ("Package Id.")]
44+
[LocalizedDisplayName ("ID")]
45+
[LocalizedDescription ("Package ID.")]
4646
public string Id {
4747
get { return packageReferenceNode.Id; }
4848
}

0 commit comments

Comments
 (0)