public function FileTranslation::findTranslationFiles in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/StringTranslation/Translator/FileTranslation.php \Drupal\Core\StringTranslation\Translator\FileTranslation::findTranslationFiles()
Finds installer translations either for a specific or all languages.
Filenames must match the pattern:
- 'drupal-[version].[langcode].po (if langcode is provided)
- 'drupal-[version].*.po (if no langcode is provided)
Parameters
string $langcode: (optional) The language code corresponding to the language for which we want to find translation files. If omitted, information on all available files will be returned.
Return value
array An associative array of file information objects keyed by file URIs as returned by file_scan_directory().
See also
1 call to FileTranslation::findTranslationFiles()
- FileTranslation::getLanguage in core/
lib/ Drupal/ Core/ StringTranslation/ Translator/ FileTranslation.php - Add translations for new language.
File
- core/
lib/ Drupal/ Core/ StringTranslation/ Translator/ FileTranslation.php, line 77 - Contains \Drupal\Core\StringTranslation\Translator\FileTranslation.
Class
- FileTranslation
- File based string translation.
Namespace
Drupal\Core\StringTranslation\TranslatorCode
public function findTranslationFiles($langcode = NULL) {
$files = file_scan_directory($this->directory, $this
->getTranslationFilesPattern($langcode), array(
'recurse' => FALSE,
));
return $files;
}