Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / system / src / Tests / Installer / InstallerTranslationMultipleLanguageForeignTest.php
1 <?php
2
3 namespace Drupal\system\Tests\Installer;
4
5 /**
6  * Tests translation files for multiple languages get imported during install.
7  *
8  * @group Installer
9  */
10 class InstallerTranslationMultipleLanguageForeignTest extends InstallerTranslationMultipleLanguageTest {
11
12   /**
13    * Overrides the language code in which to install Drupal.
14    *
15    * @var string
16    */
17   protected $langcode = 'de';
18
19   /**
20    * {@inheritdoc}
21    */
22   protected function setUpLanguage() {
23     parent::setUpLanguage();
24     $this->translations['Save and continue'] = 'Save and continue de';
25   }
26
27 }