diff --git a/data/00_NotoSansMalayalam-Regular.ttf b/data/00_NotoSansMalayalam-Regular.ttf new file mode 100755 index 0000000000..2ac909ccad Binary files /dev/null and b/data/00_NotoSansMalayalam-Regular.ttf differ diff --git a/data/fonts_whitelist.txt b/data/fonts_whitelist.txt index 315bb3f26c..722968560d 100644 --- a/data/fonts_whitelist.txt +++ b/data/fonts_whitelist.txt @@ -16,3 +16,5 @@ Latin_Extended-B /system/fonts/Roboto-Medium.ttf Latin_Extended-B 07_roboto_medium.ttf CJK_Compatibility 02_droidsans-fallback.ttf Devanagari 00_NotoSerifDevanagari-Regular.ttf +Malayalam /system/fonts/NotoSansMalayalam-Regular.ttf +Malayalam 00_NotoSansMalayalam-Regular.ttf diff --git a/iphone/Maps/Maps.xcodeproj/project.pbxproj b/iphone/Maps/Maps.xcodeproj/project.pbxproj index 873670ccd1..add9f1a6da 100644 --- a/iphone/Maps/Maps.xcodeproj/project.pbxproj +++ b/iphone/Maps/Maps.xcodeproj/project.pbxproj @@ -661,6 +661,7 @@ FA85D43D27958BF500B858E9 /* FaqController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA85D43C27958BF500B858E9 /* FaqController.swift */; }; FA85D44E279B738F00B858E9 /* CopyableLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA85D44D279B738F00B858E9 /* CopyableLabel.swift */; }; FA8E808925F412E2002A1434 /* FirstSession.mm in Sources */ = {isa = PBXBuildFile; fileRef = FA8E808825F412E2002A1434 /* FirstSession.mm */; }; + FAC4E60C2C1FA4C50043979C /* 00_NotoSansMalayalam-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FAC4E6092C1FA4C40043979C /* 00_NotoSansMalayalam-Regular.ttf */; }; FAF9DDA32A86DC54000D7037 /* libharfbuzz.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF9DDA22A86DC54000D7037 /* libharfbuzz.a */; }; /* End PBXBuildFile section */ @@ -1699,6 +1700,7 @@ FABF2FF02B55F6780006F787 /* hi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hi; path = hi.lproj/InfoPlist.strings; sourceTree = ""; }; FABF2FF12B55F6780006F787 /* hi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hi; path = hi.lproj/Localizable.strings; sourceTree = ""; }; FABF2FF22B55F6780006F787 /* hi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = hi; path = hi.lproj/Localizable.stringsdict; sourceTree = ""; }; + FAC4E6092C1FA4C40043979C /* 00_NotoSansMalayalam-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "00_NotoSansMalayalam-Regular.ttf"; path = "../../data/00_NotoSansMalayalam-Regular.ttf"; sourceTree = ""; }; FAF30A94173AB23900818BF6 /* 07_roboto_medium.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 07_roboto_medium.ttf; path = ../../data/07_roboto_medium.ttf; sourceTree = ""; }; FAF8C669278CEE29006CAE66 /* be */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = be; path = be.lproj/InfoPlist.strings; sourceTree = ""; }; FAF8C66C278CEE2A006CAE66 /* be */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = be; path = be.lproj/Localizable.stringsdict; sourceTree = ""; }; @@ -3742,6 +3744,7 @@ 6B679E88266BFD090074AE2A /* 00_NotoNaskhArabic-Regular.ttf */, 6B15907026623AE500944BBA /* 00_NotoSansThai-Regular.ttf */, FA45118E2A5EC15100CD8F64 /* 00_NotoSerifDevanagari-Regular.ttf */, + FAC4E6092C1FA4C40043979C /* 00_NotoSansMalayalam-Regular.ttf */, EEA615E5134C4968003A9827 /* 01_dejavusans.ttf */, 9DF04B231B71010E00DACAF1 /* 02_droidsans-fallback.ttf */, EEA615E7134C4968003A9827 /* 03_jomolhari-id-a3d.ttf */, @@ -3996,6 +3999,7 @@ 34AB66801FC5AA330078E451 /* MWMiPhoneRoutePreview.xib in Resources */, 6741A95B1BF340DE002C974C /* 06_code2000.ttf in Resources */, 471A7BC22481D44B00A0D4C1 /* BookmarkTitleCell.xib in Resources */, + FAC4E60C2C1FA4C50043979C /* 00_NotoSansMalayalam-Regular.ttf in Resources */, 6741A99F1BF340DE002C974C /* 07_roboto_medium.ttf in Resources */, FA637ED329A500BE00D8921A /* drules_proto_outdoors_light.txt in Resources */, F6E2FE6D1E097BA00083EBEC /* _MWMOHHeaderCell.xib in Resources */, diff --git a/platform/platform.cpp b/platform/platform.cpp index 9f898a1d80..e3aff9cf46 100644 --- a/platform/platform.cpp +++ b/platform/platform.cpp @@ -197,6 +197,7 @@ void Platform::GetFontNames(FilesList & res) const /// @todo Actually, this list should present once in all our code. char constexpr const * arrDef[] = { "00_NotoNaskhArabic-Regular.ttf", + "00_NotoSansMalayalam-Regular.ttf", "00_NotoSansThai-Regular.ttf", "00_NotoSerifDevanagari-Regular.ttf", "01_dejavusans.ttf", diff --git a/qt/CMakeLists.txt b/qt/CMakeLists.txt index b3c6fc8305..c7208f78c6 100644 --- a/qt/CMakeLists.txt +++ b/qt/CMakeLists.txt @@ -138,7 +138,9 @@ copy_resources( WorldCoasts.mwm 00_NotoNaskhArabic-Regular.ttf + 08_NotoSansMalayalam-Regular.ttf 00_NotoSansThai-Regular.ttf + 00_NotoSerifDevanagari-Regular.ttf 01_dejavusans.ttf 02_droidsans-fallback.ttf 03_jomolhari-id-a3d.ttf