[ * 'value' => 'de_DE' * 'label' => 'German (Germany)' * ], * 1 => [ * 'value' => 'en_GB' * 'label' => 'English (United Kingdom)' * ], * ] * ``` * * @return array */ public function getOptionLocales(); /** * Get array of deployed locales with translation. * * Function result has next format: * ```php * [ * 0 => [ * 'value' => 'de_DE' * 'label' => 'Deutsch (Deutschland) / German (Germany)' * ], * 1 => [ * 'value' => 'en_GB' * 'label' => 'English (United Kingdom) / English (United Kingdom)' * ], * ] * ``` * * @return array */ public function getTranslatedOptionLocales(); }