Update to Drupal 8.2.6. For more information, see https://www.drupal.org/project/drupal/releases/8.2.6
This commit is contained in:
parent
db56c09587
commit
f1e72395cb
588 changed files with 26857 additions and 2777 deletions
|
|
@ -12,3 +12,4 @@ process:
|
|||
destination:
|
||||
plugin: config
|
||||
config_name: system.maintenance
|
||||
translations: true
|
||||
|
|
|
|||
|
|
@ -36,3 +36,4 @@ process:
|
|||
destination:
|
||||
plugin: config
|
||||
config_name: system.site
|
||||
translations: true
|
||||
|
|
|
|||
|
|
@ -66,3 +66,4 @@ process:
|
|||
destination:
|
||||
plugin: config
|
||||
config_name: user.mail
|
||||
translations: true
|
||||
|
|
|
|||
|
|
@ -27,3 +27,4 @@ process:
|
|||
destination:
|
||||
plugin: config
|
||||
config_name: user.settings
|
||||
translations: true
|
||||
|
|
|
|||
|
|
@ -648,7 +648,7 @@ class ConfigTranslationUiTest extends WebTestBase {
|
|||
|
||||
foreach ($languages as $langcode => $data) {
|
||||
// Import a .po file to add a new language with a given number of plural forms
|
||||
$name = tempnam('temporary://', $langcode . '_') . '.po';
|
||||
$name = \Drupal::service('file_system')->tempnam('temporary://', $langcode . '_') . '.po';
|
||||
file_put_contents($name, $this->getPoFile($data['plurals']));
|
||||
$this->drupalPostForm('admin/config/regional/translate/import', array(
|
||||
'langcode' => $langcode,
|
||||
|
|
@ -684,7 +684,7 @@ class ConfigTranslationUiTest extends WebTestBase {
|
|||
|
||||
// First import a .po file with multiple plural forms.
|
||||
// This will also automatically add the 'sl' language.
|
||||
$name = tempnam('temporary://', "sl_") . '.po';
|
||||
$name = \Drupal::service('file_system')->tempnam('temporary://', "sl_") . '.po';
|
||||
file_put_contents($name, $this->getPoFile(4));
|
||||
$this->drupalPostForm('admin/config/regional/translate/import', array(
|
||||
'langcode' => 'sl',
|
||||
|
|
|
|||
Reference in a new issue