Как перевести множественные строки с помощью Drush?

8

Если мы хотим перевести множественную строку в Drupal, мы можем использовать format_plural()функцию.

Если вы программируете команды drush, вы можете использовать dt()функцию для перевода строк, но если вы хотите перевести множественные строки в drush, какая функция для этого?

Адриан Сид Альмагер
источник

Ответы:

8

Между функциями Drush, которые обрабатывают текст , такой функции нет, но вы можете реализовать ее, используя код из format_plural () , заменяя любой вызов на t()вызовами dt().

function drush_plural($count, $singular, $plural, array $args = array(), array $options = array()) {
  $args['@count'] = $count;
  if ($count == 1) {
    return dt($singular, $args, $options);
  }

  // Get the plural index through the gettext formula.
  $index = (function_exists('locale_get_plural')) ? locale_get_plural($count, isset($options['langcode']) ? $options['langcode'] : NULL) : -1;
  // If the index cannot be computed, use the plural as a fallback (which
  // allows for most flexiblity with the replaceable @count value).
  if ($index < 0) {
    return dt($plural, $args, $options);
  }
  else {
    switch ($index) {
      case "0":
        return dt($singular, $args, $options);
      case "1":
        return dt($plural, $args, $options);
      default:
        unset($args['@count']);
        $args['@count[' . $index . ']'] = $count;
        return dt(strtr($plural, array('@count' => '@count[' . $index . ']')), $args, $options);
    }
  }
}
киамлалуно
источник