Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / tests / Drupal / FunctionalTests / Installer / InstallerTranslationMultipleLanguageForeignTest.php
1 <?php
2
3 namespace Drupal\FunctionalTests\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 }