Renamed button to improve clarity of meaning

svn path=/trunk/; revision=969
This commit is contained in:
Curtis Gedak 2008-11-18 23:28:53 +00:00
parent b6413cf9dd
commit 54611e93e4
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,8 @@
2008-11-18 Curtis Gedak <gedakc@gmail.com>
* src/DialogFeatures.cc: Added translator comment.
- Renamed button to improve clarity of meaning.
- Closes GParted bug #561350
2008-11-14 Curtis Gedak <gedakc@gmail.com>

View file

@ -91,8 +91,8 @@ DialogFeatures::DialogFeatures()
icon_yes = render_icon( Gtk::Stock::APPLY, Gtk::ICON_SIZE_LARGE_TOOLBAR ) ;
icon_no = render_icon( Gtk::Stock::CANCEL, Gtk::ICON_SIZE_LARGE_TOOLBAR ) ;
/*TO TRANSLATORS: This is a button that will search again for the software tools installed and then refresh the screen with the file system actions supported. */
add_button( _("Rescan Support"), Gtk::RESPONSE_OK );
/*TO TRANSLATORS: This is a button that will search for the software tools installed and then refresh the screen with the file system actions supported. */
add_button( _("Rescan For Supported Actions"), Gtk::RESPONSE_OK );
add_button( Gtk::Stock::CLOSE, Gtk::RESPONSE_CLOSE ) ->grab_focus() ;
show_all_children() ;
}