> +static void
> +lo_cleanup(GeanyPlugin *plugin, gpointer pdata)
> +{
> + if(main_menu_item) gtk_widget_destroy(main_menu_item);
> +}
> +
> +
> +G_MODULE_EXPORT
> +void geany_load_module(GeanyPlugin *plugin)
> +{
> + main_locale_init(LOCALEDIR, GETTEXT_PACKAGE);
> +
> + plugin->info->name = _("Line Operations");
> + plugin->info->description = _("Line Operations provides a handful of
> functions that can be applied to a document such as, removing duplicate
> lines, removing empty lines, removing lines with only whitespace, and sorting
> lines.");
> + plugin->info->version = "0.1";
> + plugin->info->author = _("Sylvan Mostert
> <[email protected]>");
there probably is no need to translate your name :)
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/324/files#r49949930