NavigationItemForm: use the new target names in createElements()

refs #10330
This commit is contained in:
Alexander A. Klimov 2015-12-17 18:05:49 +01:00
parent 9e2da07eb7
commit 2059261eeb
1 changed files with 4 additions and 4 deletions

View File

@ -38,10 +38,10 @@ class NavigationItemForm extends Form
'label' => $this->translate('Target'),
'description' => $this->translate('The target where to open this navigation item\'s url'),
'multiOptions' => array(
'_blank' => $this->translate('New Window'),
'_next' => $this->translate('New Column'),
'_main' => $this->translate('Single Column'),
'_self' => $this->translate('Current Column')
'new_window' => $this->translate('New Window'),
'next_column' => $this->translate('New Column'),
'single_column' => $this->translate('Single Column'),
'current_column' => $this->translate('Current Column')
)
)
);