You are here

function commerce_order_ui_i18n_string_list in Commerce Core 7

Implements hook_i18n_string_list().

File

modules/order/commerce_order_ui.module, line 181

Code

function commerce_order_ui_i18n_string_list($group) {
  if ($group == 'commerce') {

    // Allow the order creation help text to be translated.
    $help = variable_get('commerce_order_help_text', '');
    if (!empty($help)) {
      $strings['commerce']['order']['help']['create'] = $help;
      return $strings;
    }
  }
}