[Rt-commit] [rtir] 05/08: More consistent Search naming

Kevin Falcone falcone at bestpractical.com
Fri Jul 12 22:55:34 EDT 2013


This is an automated email from the git hooks/post-receive script.

falcone pushed a commit to branch 2.9/search-menus
in repository rtir.

commit 1ce5ccb10d10d91ee77cf27a3ffb53d6c25bd32f
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Fri Jul 12 21:04:20 2013 -0400

    More consistent Search naming
    
    We say New and Edit Search everywhere else (including the in the
    PageMenu tabs on /Search/) so we should say that in the menus too.
---
 html/Callbacks/RTIR/Elements/Tabs/Privileged | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/html/Callbacks/RTIR/Elements/Tabs/Privileged b/html/Callbacks/RTIR/Elements/Tabs/Privileged
index dbeeaa5..de0ac9b 100644
--- a/html/Callbacks/RTIR/Elements/Tabs/Privileged
+++ b/html/Callbacks/RTIR/Elements/Tabs/Privileged
@@ -72,14 +72,14 @@ my $search_arguments = sub {
 my $root = Menu->child( rtir => title => loc('RTIR'), path => '/RTIR/' );
 
 my $search = $root->child( search => title => loc('Search'), path => '/RTIR/Search/' );
-$search->child( new => title => loc('New Query'), path => '/RTIR/Search/?NewQuery=1' );
+$search->child( new => title => loc('New Search'), path => '/RTIR/Search/?NewQuery=1' );
 
 {
 my $current_search = $session{"CurrentSearchHash"} || {};
 my $has_query = 1 if ( $args->{'Query'} or $current_search->{'Query'} );
 
 if ( $has_query ) {
-    $search->child( build => title => loc('Build Search'), path => '/RTIR/Search/' );
+    $search->child( build => title => loc('Edit Search'), path => '/RTIR/Search/' );
     $search->child( results => title => loc('Show Results'),
                     path => '/RTIR/Search/Results.html?' .
                     $query_string->( $args->{'Query'} ? $search_arguments->() : %$current_search ) );

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Rt-commit mailing list