diff --git a/PowerEditor/installer/nppSetup.nsi b/PowerEditor/installer/nppSetup.nsi index 811e02230..ef6e0cb66 100644 --- a/PowerEditor/installer/nppSetup.nsi +++ b/PowerEditor/installer/nppSetup.nsi @@ -789,6 +789,9 @@ SectionGroup "Localization" localization Section /o "Arabic" arabic CopyFiles "$TEMP\nppLocalization\arabic.xml" "$INSTDIR\localization\arabic.xml" SectionEnd + Section /o "Aragonese" aragonese + CopyFiles "$TEMP\nppLocalization\aragonese.xml" "$INSTDIR\localization\aragonese.xml" + SectionEnd Section /o "Aranese" aranese CopyFiles "$TEMP\nppLocalization\aranese.xml" "$INSTDIR\localization\aranese.xml" SectionEnd @@ -1464,6 +1467,9 @@ SectionGroup un.localization Section un.arabic Delete "$INSTDIR\localization\arabic.xml" SectionEnd + Section un.aragonese + Delete "$INSTDIR\localization\aragonese.xml" + SectionEnd Section un.aranese Delete "$INSTDIR\localization\aranese.xml" SectionEnd diff --git a/PowerEditor/src/Notepad_plus.cpp b/PowerEditor/src/Notepad_plus.cpp index 5c4647582..e83716471 100644 --- a/PowerEditor/src/Notepad_plus.cpp +++ b/PowerEditor/src/Notepad_plus.cpp @@ -2057,7 +2057,7 @@ void Notepad_plus::addHotSpot() LangType type = _pEditView->getCurrentBuffer()->getLangType(); - if (type == L_HTML) + if (type == L_HTML || type == L_PHP || type == L_ASP || type == L_JSP) mask = INDIC2_MASK; else if (type == L_PS) mask = 16;