Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Sun, 13 Feb 2022 16:48:06 UTC Commit: a475386dd4d5f73fe3c1ba9808e0e720fd107262 https://github.com/geany/geany-plugins/commit/a475386dd4d5f73fe3c1ba9808e0e7...
Log Message: ----------- Capitalise only the first word of keybinding labels
Modified Paths: -------------- spellcheck/src/scplugin.c
Modified: spellcheck/src/scplugin.c 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -222,10 +222,10 @@ void plugin_init(GeanyData *data) /* setup keybindings */ key_group = plugin_set_key_group(geany_plugin, "spellcheck", KB_COUNT, NULL); keybindings_set_item(key_group, KB_SPELL_CHECK, sc_gui_kb_run_activate_cb, - 0, 0, "spell_check", _("Run Spell Check Once"), sc_info->submenu_item_default); + 0, 0, "spell_check", _("Run spell check once"), sc_info->submenu_item_default); keybindings_set_item(key_group, KB_SPELL_TOOGLE_TYPING, sc_gui_kb_toggle_typing_activate_cb, 0, 0, "spell_toggle_typing", - _("Toggle Spell Check"), NULL); + _("Toggle spell check"), NULL); }
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).