[PATCH] opie-multikey: Rename config dialog buttons to be more clear

Paul Sokolovsky <[email protected]> Thu, 11 Jan 2007 23:42:24 +0200
Newsgroups gmane.comp.handhelds.opie.devel
Message-ID <[email protected]>
Hello opie-devel,

opie-multikey: Rename buttons to add/remove custom keymap to be more clear.
* opie-multikey needs usability improvements at all - it may take a user
some effort to figure out that to change language layout, one needs to call
config (which lives on a key marked as shift), select language, and tap
OK at window top. Most people would tap "Add" and present with file selection
dialog with unknown to them purpose. So, at lease name buttons "Add custom..."
and "Remove custom", to correspond to their functions.

-- 
Best regards,
 Paul                          mailto:[email protected]

_______________________________________________

http://opie.handhelds.org/cgi-bin/moin.cgi/DeveloperWikiIndex

Opie-devel mailing list
[email protected]
https://handhelds.org/mailman/listinfo/opie-devel
friendly-button-names.patch (application/octet-stream, 790 B)
--- multikey/configdlg.cpp.org	2005-06-15 22:54:50.000000000 +0000
+++ multikey/configdlg.cpp	2007-01-11 19:51:09.000000000 +0000
@@ -144,11 +144,11 @@
     add_remove_grid->setMargin(3);
     add_remove_grid->setSpacing(3);
 
-    add_button = new QPushButton(tr("Add"), add_remove_grid);
+    add_button = new QPushButton(tr("Add custom..."), add_remove_grid);
     add_button->setFlat(TRUE);
     connect(add_button, SIGNAL(clicked()), SLOT(addMap()));
 
-    remove_button = new QPushButton(tr("Remove"), add_remove_grid);
+    remove_button = new QPushButton(tr("Remove custom"), add_remove_grid);
     remove_button->setFlat(TRUE);
     if (keymaps->currentItem() == 0 || default_maps.find(QFileInfo(current_map).fileName()) != default_maps.end())
 	remove_button->setDisabled(true);