[PTRun][Narrator]Mention appended controls (#20876)

* added context menu items count

* changed message
This commit is contained in:
Seraphima Zykova
2022-09-27 16:49:37 +02:00
committed by GitHub
parent dded74736d
commit 98287d7883
3 changed files with 17 additions and 2 deletions

View File

@@ -4,6 +4,7 @@
using System;
using System.Collections.ObjectModel;
using System.Globalization;
using System.Windows.Input;
using System.Windows.Media;
using PowerLauncher.Helper;
@@ -282,7 +283,9 @@ namespace PowerLauncher.ViewModel
public override string ToString()
{
return Result.ToString();
// Using CurrentCulture since this is user facing
var contextMenuInfo = ContextMenuItems.Count > 0 ? string.Format(CultureInfo.CurrentCulture, "{0} {1}", ContextMenuItems.Count, Properties.Resources.ContextMenuItemsAvailable) : string.Empty;
return string.Format(CultureInfo.CurrentCulture, "{0}, {1}", Result.ToString(), contextMenuInfo);
}
}
}