You are here

TranslatorInterface.php in Backup and Migrate 8.4

File

lib/backup_migrate_core/src/Translation/TranslatorInterface.php
View source
<?php

namespace BackupMigrate\Core\Translation;


/**
 * An interface for a language translation service. Follows the Drupal translation
 * model where a fully formed english string with replacement tokens is passed in
 * and then localized.
 *
 * Interface TranslatorInterface.
 *
 * @package BackupMigrate\Core\Service
 */
interface TranslatorInterface {

  /**
   * @param string $string
   *  The string to be translated.
   * @param $replacements
   *  Any untranslatable variables to be replaced into the string.
   * @param $context
   *  Extra context to help translators distinguish ambiguous strings.
   * @return mixed
   */
  public function translate($string, $replacements = [], $context = []);

}

Interfaces

Namesort descending Description
TranslatorInterface An interface for a language translation service. Follows the Drupal translation model where a fully formed english string with replacement tokens is passed in and then localized.