Merge pull request #4413 from OmrSi/add-more-underline-access-keys-in-Find

Add underline access keys for "Find", "Count" and "Whole Word" in Find
This commit is contained in:
Nikolaj Olsson 2020-10-04 17:50:34 +02:00 committed by GitHub
commit 795b991902
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -565,12 +565,12 @@ Note: Do check free disk space.</WaveFileMalformed>
</ExtractDateTimeInfo>
<FindDialog>
<Title>Find</Title>
<Find>Find</Find>
<Find>&amp;Find</Find>
<Normal>&amp;Normal</Normal>
<CaseSensitive>&amp;Case sensitive</CaseSensitive>
<RegularExpression>Regular e&amp;xpression</RegularExpression>
<WholeWord>Whole word</WholeWord>
<Count>Count</Count>
<WholeWord>&amp;Whole word</WholeWord>
<Count>Coun&amp;t</Count>
<XNumberOfMatches>{0:#,##0} matches</XNumberOfMatches>
<OneMatch>One match</OneMatch>
</FindDialog>

View File

@ -758,12 +758,12 @@ namespace Nikse.SubtitleEdit.Core
FindDialog = new LanguageStructure.FindDialog
{
Title = "Find",
Find = "Find",
Find = "&Find",
Normal = "&Normal",
CaseSensitive = "&Case sensitive",
RegularExpression = "Regular e&xpression",
WholeWord = "Whole word",
Count = "Count",
WholeWord = "&Whole word",
Count = "Coun&t",
XNumberOfMatches = "{0:#,##0} matches",
OneMatch = "One match"
};