The I18n methods allow you to add, edit and delete the translations for the application. I18n (Internalization) allows you to use translations in your application. You can configure translations for numerous languages by providing key/value pairs in the application's translations page.
I18n.createCategory

Creates a new category for the application.

read more »
I18n.deleteCategory

Deletes all strings from a category and the category itself.

read more »
I18n.getCategories

This method returns a list of categories for an application.

read more »
I18n.getStrings

Returns a list of translated strings for a given language.

read more »
I18n.getStringsFromCategories

Returns a list of translated strings for a given language and a list of categories to fetch.

read more »
I18n.updateString

Updates a translated string.

read more »
I18n.updateStringsForCategory

Updates all strings for 1 specific category.

Please Note: This function will delete all existing strings in the category before inserting the new ones.

read more »