From 7270a0c79547c9d6800373aa0aa6c4dbb54342d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 9 Nov 2016 18:07:21 +0100 Subject: [PATCH] Add missing punctionation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See PR #12686 Signed-off-by: Michal Čihař --- libraries/rte/rte_words.lib.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libraries/rte/rte_words.lib.php b/libraries/rte/rte_words.lib.php index 3205c2e7fb..95fc5a1052 100644 --- a/libraries/rte/rte_words.lib.php +++ b/libraries/rte/rte_words.lib.php @@ -29,17 +29,17 @@ function PMA_RTE_getWord($index) 'export' => __('Export of routine %s'), 'human' => __('routine'), 'no_create' => __( - 'You do not have the necessary privileges to create a routine' + 'You do not have the necessary privileges to create a routine.' ), 'no_edit' => __( 'No routine with name %1$s found in database %2$s. ' - . 'You might be lacking the necessary privileges to edit this routine' + . 'You might be lacking the necessary privileges to edit this routine.' ), 'no_view' => __( 'No routine with name %1$s found in database %2$s. ' - . 'You might be lacking the necessary privileges to view/export this routine' + . 'You might be lacking the necessary privileges to view/export this routine.' ), - 'not_found' => __('No routine with name %1$s found in database %2$s'), + 'not_found' => __('No routine with name %1$s found in database %2$s.'), 'nothing' => __('There are no routines to display.'), 'title' => __('Routines'), ); @@ -51,9 +51,9 @@ function PMA_RTE_getWord($index) 'export' => __('Export of trigger %s'), 'human' => __('trigger'), 'no_create' => __( - 'You do not have the necessary privileges to create a trigger' + 'You do not have the necessary privileges to create a trigger.' ), - 'not_found' => __('No trigger with name %1$s found in database %2$s'), + 'not_found' => __('No trigger with name %1$s found in database %2$s.'), 'nothing' => __('There are no triggers to display.'), 'title' => __('Triggers'), ); @@ -65,9 +65,9 @@ function PMA_RTE_getWord($index) 'export' => __('Export of event %s'), 'human' => __('event'), 'no_create' => __( - 'You do not have the necessary privileges to create an event' + 'You do not have the necessary privileges to create an event.' ), - 'not_found' => __('No event with name %1$s found in database %2$s'), + 'not_found' => __('No event with name %1$s found in database %2$s.'), 'nothing' => __('There are no events to display.'), 'title' => __('Events'), );