diff --git a/libraries/rte/rte_events.lib.php b/libraries/rte/rte_events.lib.php
index 77065970f2..d5a0816ff4 100644
--- a/libraries/rte/rte_events.lib.php
+++ b/libraries/rte/rte_events.lib.php
@@ -172,7 +172,13 @@ function PMA_EVN_handleEditor()
}
if (count($errors)) {
- $message = PMA_Message::error(__('One or more errors have occurred while processing your request:'));
+ $message = PMA_Message::error(
+ ''
+ . __(
+ 'One or more errors have occurred while processing your request:'
+ )
+ . ''
+ );
$message->addString('
');
foreach ($errors as $string) {
$message->addString('- ' . $string . '
');
@@ -585,7 +591,8 @@ function PMA_EVN_getQueryFromRequest()
$query .= 'EVERY ' . intval($_REQUEST['item_interval_value']) . ' ';
$query .= $_REQUEST['item_interval_field'] . ' ';
} else {
- $errors[] = __('You must provide a valid interval value for the event.');
+ $errors[]
+ = __('You must provide a valid interval value for the event.');
}
if (! empty($_REQUEST['item_starts'])) {
$query .= "STARTS '"
@@ -600,7 +607,8 @@ function PMA_EVN_getQueryFromRequest()
$query .= "AT '"
. PMA_Util::sqlAddSlashes($_REQUEST['item_execute_at']) . "' ";
} else {
- $errors[] = __('You must provide a valid execution time for the event.');
+ $errors[]
+ = __('You must provide a valid execution time for the event.');
}
}
} else {
diff --git a/libraries/rte/rte_triggers.lib.php b/libraries/rte/rte_triggers.lib.php
index e8157a41a8..92fb095a49 100644
--- a/libraries/rte/rte_triggers.lib.php
+++ b/libraries/rte/rte_triggers.lib.php
@@ -144,7 +144,13 @@ function PMA_TRI_handleEditor()
}
if (count($errors)) {
- $message = PMA_Message::error(__('One or more errors have occurred while processing your request:'));
+ $message = PMA_Message::error(
+ ''
+ . __(
+ 'One or more errors have occurred while processing your request:'
+ )
+ . ''
+ );
$message->addString('');
foreach ($errors as $string) {
$message->addString('- ' . $string . '
');
diff --git a/libraries/rte/rte_words.lib.php b/libraries/rte/rte_words.lib.php
index 85210bfdbf..a9f5f5c4f0 100644
--- a/libraries/rte/rte_words.lib.php
+++ b/libraries/rte/rte_words.lib.php
@@ -28,7 +28,9 @@ function PMA_RTE_getWord($index)
'docu' => 'STORED_ROUTINES',
'export' => __('Export of routine %s'),
'human' => __('routine'),
- 'no_create' => __('You do not have the necessary privileges to create a routine'),
+ 'no_create' => __(
+ 'You do not have the necessary privileges to create a routine'
+ ),
'not_found' => __('No routine with name %1$s found in database %2$s'),
'nothing' => __('There are no routines to display.'),
'title' => __('Routines'),
@@ -40,7 +42,9 @@ function PMA_RTE_getWord($index)
'docu' => 'TRIGGERS',
'export' => __('Export of trigger %s'),
'human' => __('trigger'),
- 'no_create' => __('You do not have the necessary privileges to create a trigger'),
+ 'no_create' => __(
+ 'You do not have the necessary privileges to create a trigger'
+ ),
'not_found' => __('No trigger with name %1$s found in database %2$s'),
'nothing' => __('There are no triggers to display.'),
'title' => __('Triggers'),
@@ -52,7 +56,9 @@ function PMA_RTE_getWord($index)
'docu' => 'EVENTS',
'export' => __('Export of event %s'),
'human' => __('event'),
- 'no_create' => __('You do not have the necessary privileges to create an event'),
+ 'no_create' => __(
+ 'You do not have the necessary privileges to create an event'
+ ),
'not_found' => __('No event with name %1$s found in database %2$s'),
'nothing' => __('There are no events to display.'),
'title' => __('Events'),