Branch: refs/heads/master Author: Frank Lanitz frank@frank.uvena.de Committer: GitHub noreply@github.com Date: Thu, 19 Oct 2023 06:22:31 UTC Commit: 759afbae89b14fd02072f6e75dfb67fd26055763 https://github.com/geany/geany-plugins/commit/759afbae89b14fd02072f6e75dfb67...
Log Message: ----------- Merge pull request #1286 from b4n/lineoperations-i18n
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