public function TranslationManager::formatPlural

public TranslationManager::formatPlural($count, $singular, $plural, array $args = array(), array $options = array())

Formats a string containing a count of items.

This function ensures that the string is pluralized correctly. Since TranslationInterface::translate() is called by this function, make sure not to pass already-localized strings to it. See PluralTranslatableMarkup::createFromTranslatedString() for that.

For example:

  $output = $string_translation->formatPlural($node->comment_count, '1 comment', '@count comments');

Example with additional replacements:

  $output = $string_translation->formatPlural($update_count,
    'Changed the content type of 1 post from %old-type to %new-type.',
    'Changed the content type of @count posts from %old-type to %new-type.',
    array('%old-type' => $info->old_type, '%new-type' => $info->new_type));

Parameters

int $count: The item count to display.

string $singular: The string for the singular case. Make sure it is clear this is singular, to ease translation (e.g. use "1 new comment" instead of "1 new"). Do not use @count in the singular string.

string $plural: The string for the plural case. Make sure it is clear this is plural, to ease translation. Use @count in place of the item count, as in "@count new comments".

array $args: An associative array of replacements to make after translation. Instances of any key in this array are replaced with the corresponding value. Based on the first character of the key, the value is escaped and/or themed. See \Drupal\Component\Utility\SafeMarkup::format(). Note that you do not need to include @count in this array; this replacement is done automatically for the plural cases.

array $options: An associative array of additional options. See t() for allowed keys.

Return value

\Drupal\Core\StringTranslation\PluralTranslatableMarkup A translated string.

Overrides TranslationInterface::formatPlural

See also

\Drupal\Core\StringTranslation\TranslationInterface::translate()

t()

\Drupal\Component\Utility\SafeMarkup::format()

\Drupal\Core\StringTranslation\PluralTranslatableMarkup::createFromTranslatedString()

File

core/lib/Drupal/Core/StringTranslation/TranslationManager.php, line 152

Class

TranslationManager
Defines a chained translation implementation combining multiple translators.

Namespace

Drupal\Core\StringTranslation

Code

public function formatPlural($count, $singular, $plural, array $args = array(), array $options = array()) {
  return new PluralTranslatableMarkup($count, $singular, $plural, $args, $options, $this);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!StringTranslation!TranslationManager.php/function/TranslationManager::formatPlural/8.1.x