Skip to content

Commit

Permalink
Capitalise only the first word of keybinding labels
Browse files Browse the repository at this point in the history
  • Loading branch information
eht16 committed Feb 13, 2022
1 parent 64745d4 commit a475386
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spellcheck/src/scplugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}


Expand Down

0 comments on commit a475386

Please sign in to comment.