Revision: 1882 http://geany.svn.sourceforge.net/geany/?rev=1882&view=rev Author: ntrel Date: 2007-09-13 09:45:46 -0700 (Thu, 13 Sep 2007)
Log Message: ----------- Make some keybinding titles use existing string capitalization.
Modified Paths: -------------- trunk/ChangeLog trunk/src/keybindings.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2007-09-13 16:40:19 UTC (rev 1881) +++ trunk/ChangeLog 2007-09-13 16:45:46 UTC (rev 1882) @@ -11,6 +11,8 @@ Add Find keybinding (re-uses existing string). Group search-related callbacks together. Docs: Add table headings to group related keybindings together. + * src/keybindings.c: + Make some keybinding titles use existing string capitalization.
2007-09-12 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/src/keybindings.c =================================================================== --- trunk/src/keybindings.c 2007-09-13 16:40:19 UTC (rev 1881) +++ trunk/src/keybindings.c 2007-09-13 16:45:46 UTC (rev 1882) @@ -165,11 +165,11 @@ keys[GEANY_KEYS_MENU_REPLACE] = fill(cb_func_menu_search, GDK_h, GDK_CONTROL_MASK, "menu_replace", _("Replace")); keys[GEANY_KEYS_MENU_FINDINFILES] = fill(cb_func_menu_search, GDK_f, - GDK_CONTROL_MASK | GDK_SHIFT_MASK, "menu_findinfiles", _("Find in files")); + GDK_CONTROL_MASK | GDK_SHIFT_MASK, "menu_findinfiles", _("Find in Files")); keys[GEANY_KEYS_MENU_NEXTMESSAGE] = fill(cb_func_menu_search, 0, 0, "menu_nextmessage", _("Next Message")); keys[GEANY_KEYS_MENU_GOTOLINE] = fill(cb_func_menu_search, - GDK_l, GDK_CONTROL_MASK, "menu_gotoline", _("Go to line")); + GDK_l, GDK_CONTROL_MASK, "menu_gotoline", _("Go to Line"));
keys[GEANY_KEYS_MENU_TOGGLEALL] = fill(cb_func_menu_toggle_all, 0, 0, "menu_toggleall", _("Toggle all additional widgets")); @@ -321,9 +321,9 @@ keys[GEANY_KEYS_POPUP_FINDUSAGE] = fill(cb_func_current_word, 0, 0, "popup_findusage", _("Find Usage")); keys[GEANY_KEYS_POPUP_GOTOTAGDEFINITION] = fill(cb_func_current_word, - 0, 0, "popup_gototagdefinition", _("Go to tag definition")); + 0, 0, "popup_gototagdefinition", _("Go to Tag Definition")); keys[GEANY_KEYS_POPUP_GOTOTAGDECLARATION] = fill(cb_func_current_word, - 0, 0, "popup_gototagdeclaration", _("Go to tag declaration")); + 0, 0, "popup_gototagdeclaration", _("Go to Tag Declaration")); keys[GEANY_KEYS_POPUP_CONTEXTACTION] = fill(cb_func_current_word, 0, 0, "popup_contextaction", _("Context Action"));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.