howto: Internationalization - WordPress rev 9 nov 2018 localisation l10n - The process of developing your theme/plugin/etc so it can easily be translated into other languages. l10n - localisation - translating - see file. ....................................................... info: i18n - we use these "gettext functions" for all strings. Then 1) gettext, poedit, and other tools can extract them to make a .po file for translation. 2) word|classicpress can extract them from the code and use that .po file to emit the strings in the wanted language. _e( 'word or phrase', 'textdomain' ); __( 'word or phrase', 'textdomain' ); _x( 'word or phrase', 'textdomain' ); ....................................................... resources * Internationalization - Developer's handbook https://developer.wordpress.org/themes/functionality/internationalization/ * Internationalization - Codex https://codex.wordpress.org/I18n_for_WordPress_Developers#Translating_Plugins_and_Themes ................................. history: 2018 _______________________________________________________ begin 9 nov 2018 -- 0 --