You are here

public function DrupalTranslator::getLocale in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Validation/DrupalTranslator.php \Drupal\Core\Validation\DrupalTranslator::getLocale()

File

core/lib/Drupal/Core/Validation/DrupalTranslator.php, line 68

Class

DrupalTranslator
Translates strings using Drupal's translation system.

Namespace

Drupal\Core\Validation

Code

public function getLocale() {
  return $this->locale ? $this->locale : \Drupal::languageManager()
    ->getCurrentLanguage()
    ->getId();
}