Fix typos

This commit is contained in:
Don Ho 2025-06-26 01:08:01 +02:00
parent f0f8f7ec2f
commit 7b613b1fff
3 changed files with 4 additions and 4 deletions

View File

@ -1601,7 +1601,7 @@ If you require the backward regex searching feature, consult the user manual for
<FindAutoChangeOfInSelectionWarning title="Search warning" message="The &quot;In selection&quot; checkbox state has been automatically modified.
Please verify the search condition before performing the action."/> <!-- HowToReproduce: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14897#issuecomment-2564316224 -->
<Need2Restart2ShowMenuShortcuts title="Notepad++ needs to be restarted" message="Notepad++ needs to be restarted to show right menu shortcuts."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Changing file read-only attributes failed" message="Please run Notepad++ as administrator to change the file attributes."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Changing file read-only attribute failed" message="Please run Notepad++ as administrator to change the file attributes."/>
</MessageBox>
<ClipboardHistory>
<PanelTitle name="Clipboard History"/>

View File

@ -1601,7 +1601,7 @@ If you require the backward regex searching feature, consult the user manual for
<FindAutoChangeOfInSelectionWarning title="Search warning" message="The &quot;In selection&quot; checkbox state has been automatically modified.
Please verify the search condition before performing the action."/> <!-- HowToReproduce: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14897#issuecomment-2564316224 -->
<Need2Restart2ShowMenuShortcuts title="Notepad++ needs to be restarted" message="Notepad++ needs to be restarted to show right menu shortcuts."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Changing file read-only attributes failed" message="Please run Notepad++ as administrator to change the file attributes."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Changing file read-only attribute failed" message="Please run Notepad++ as administrator to change the file attributes."/>
</MessageBox>
<ClipboardHistory>
<PanelTitle name="Clipboard History"/>

View File

@ -2117,7 +2117,7 @@ void Notepad_plus::command(int id)
{
if (_isAdministrator)
{
MessageBox(_pPublicInterface->getHSelf(), GetLastErrorAsString(GetLastError()).c_str(), L"Changing file read-only attributes failed", MB_OK | MB_ICONWARNING);
MessageBox(_pPublicInterface->getHSelf(), GetLastErrorAsString(GetLastError()).c_str(), L"Changing file read-only attribute failed", MB_OK | MB_ICONWARNING);
}
else
{
@ -2125,7 +2125,7 @@ void Notepad_plus::command(int id)
_nativeLangSpeaker.messageBox("NoAdminRight2ChangeReadOnlyFileAttribute",
_pPublicInterface->getHSelf(),
L"Please run Notepad++ as administrator to change the file attributes.",
L"Changing file read-only attributes failed",
L"Changing file read-only attribute failed",
MB_OK | MB_ICONWARNING);
}