Unified some localised strings for routines, triggers and events.

This commit is contained in:
Rouslan Placella 2011-08-09 16:32:47 +01:00
parent 46d0ea701f
commit cccc78a98e
3 changed files with 3 additions and 3 deletions

View File

@ -178,7 +178,7 @@ function PMA_EVN_handleEditor()
}
// Get the data for the form (if any)
if (! empty($_REQUEST['add_item'])) {
$title = __("Create event");
$title = PMA_RTE_getWord('add');
$item = PMA_EVN_getDataFromRequest();
$mode = 'add';
} else if (! empty($_REQUEST['edit_item'])) {

View File

@ -337,7 +337,7 @@ function PMA_RTN_handleEditor()
}
// Get the data for the form (if any)
if (! empty($_REQUEST['add_item'])) {
$title = __("Create routine");
$title = PMA_RTE_getWord('add');
$routine = PMA_RTN_getDataFromRequest();
$mode = 'add';
} else if (! empty($_REQUEST['edit_item'])) {

View File

@ -154,7 +154,7 @@ function PMA_TRI_handleEditor()
) {
// Get the data for the form (if any)
if (! empty($_REQUEST['add_item'])) {
$title = __("Create trigger");
$title = PMA_RTE_getWord('add');
$item = PMA_TRI_getDataFromRequest();
$mode = 'add';
} else if (! empty($_REQUEST['edit_item'])) {