Mercurial > hg > isophonics-drupal-site
comparison core/tests/Drupal/FunctionalTests/Installer/InstallerTranslationMultipleLanguageForeignTest.php @ 16:c2387f117808
Routine composer update
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 15:07:59 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
15:e200cb7efeb3 | 16:c2387f117808 |
---|---|
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 } |