The CE.SDK editor currently supports English and German languages on Android, however it provides convenient API to replace the values of existing localization keys or add support for more languages.
All the editor keys are located here and they all follow strict naming convention to make locating keys simple and self-explanatory.
For instance, the gallery button in the dock can be found via ly_img_editor_dock_button_gallery
key, or the title in the format text sheet can be found via ly_img_editor_sheet_format_text_title
key.
Replacing existing keys#
In order to replace any of the existing editor keys, find the key of the desired text, copy the key to res/values/strings.xml
file of your app module and replace with the desired value.
Supporting new languages#
In order to add support for a language that is not supported by the CE.SDK editor, copy the content of the English localization file to res/values-{desired-language-code}/strings.xml
file and replace the values with desired translations.