Issue #2659914 by c-c-m, rodrigoaguilera: Untranslatable strings on Configuration Synchronization

8.1.x
Nathaniel Catchpole 2016-02-15 09:44:36 +09:00
parent 315bc18b34
commit 1ab109f11d
1 changed files with 2 additions and 2 deletions

View File

@ -186,7 +186,7 @@ class ConfigSync extends FormBase {
if (empty($source_list) || !$storage_comparer->createChangelist()->hasChanges()) {
$form['no_changes'] = array(
'#type' => 'table',
'#header' => array('Name', 'Operations'),
'#header' => array($this->t('Name'), $this->t('Operations')),
'#rows' => array(),
'#empty' => $this->t('There are no configuration changes to import.'),
);
@ -272,7 +272,7 @@ class ConfigSync extends FormBase {
}
$form[$collection][$config_change_type]['list'] = array(
'#type' => 'table',
'#header' => array('Name', 'Operations'),
'#header' => array($this->t('Name'), $this->t('Operations')),
);
foreach ($config_names as $config_name) {