Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Wed, 18 Oct 2023 23:35:36 UTC Commit: d7171b1d8338f030bda9807ddecb1d903bb55073 https://github.com/geany/geany-plugins/commit/d7171b1d8338f030bda9807ddecb1d...
Log Message: ----------- lineoperations: Fix translation of some strings
Modified Paths: -------------- lineoperations/src/lineoperations.c lineoperations/src/lo_fns.c lineoperations/src/lo_prefs.c
Modified: lineoperations/src/lineoperations.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -346,7 +346,7 @@ lo_init(GeanyPlugin *plugin, G_GNUC_UNUSED gpointer gdata) { keybindings_set_item(key_group, i, lo_keybinding_callback, 0, 0, menu_items[i].kb_section_name, - menu_items[i].label, NULL); + _(menu_items[i].label), NULL); } }
Modified: lineoperations/src/lo_fns.c 4 lines changed, 4 insertions(+), 0 deletions(-) =================================================================== @@ -20,6 +20,10 @@ */
+#ifdef HAVE_CONFIG_H + #include "config.h" /* for the gettext domain */ +#endif + #include "lo_fns.h" #include "lo_prefs.h"
Modified: lineoperations/src/lo_prefs.c 4 lines changed, 4 insertions(+), 0 deletions(-) =================================================================== @@ -19,6 +19,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
+#ifdef HAVE_CONFIG_H + #include "config.h" /* for the gettext domain */ +#endif + #include "lo_prefs.h"
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org