Remove BOM from 2 localization files

- corrected xml encoding from UTF8 with BOM -> required UTF8 for zulu and kurdish
- added zulu to localization list, see also #5209
- space -> tab in localizationString.h according to the rest of the list

Close #5209, close #5397
This commit is contained in:
Christian Grasser 2019-03-08 15:15:23 +01:00 committed by Don HO
parent 1af4d0f7f4
commit 0cddeaa9f2
No known key found for this signature in database
GPG Key ID: 6C429F1D8D84F46E
5 changed files with 7 additions and 3 deletions

View File

@ -3773,6 +3773,8 @@ generic_string NppParameters::getLocPathFromStr(const generic_string & localizat
return TEXT("vietnamese.xml");
if (localizationCode == TEXT("cy-gb"))
return TEXT("welsh.xml");
if (localizationCode == TEXT("zu") || localizationCode == TEXT("zu-za"))
return TEXT("zulu.xml");
return generic_string();
}

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8" ?>
<NotepadPlus>
<Native-Langue name="كوردی" RTL="yes" filename="kurdish.xml" version="7.5">
<Menu>

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8" ?>
<!--
***********************************************************************************
zulu language binary translations file for Notepad++ ::

View File

@ -3926,6 +3926,8 @@ generic_string NppParameters::getLocPathFromStr(const generic_string & localizat
return TEXT("vietnamese.xml");
if (localizationCode == TEXT("cy-gb"))
return TEXT("welsh.xml");
if (localizationCode == TEXT("zu") || localizationCode == TEXT("zu-za"))
return TEXT("zulu.xml");
return generic_string();
}