Improve some sieve-related translations
[claws.git] / src / plugins / pgpmime / plugin.c
blobb09f75e4159c56fa86b434eae6a94857921e1db3
1 /*
2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2021 the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifdef HAVE_CONFIG_H
21 # include "config.h"
22 #include "claws-features.h"
23 #endif
25 #include <stddef.h>
26 #include <glib.h>
27 #include <glib/gi18n.h>
29 #include "version.h"
30 #include "common/claws.h"
31 #include "pgpmime.h"
32 #include "plugin.h"
34 #define PLUGIN_NAME (_("PGP/MIME"))
36 gint plugin_init(gchar **error)
38 if (!check_plugin_version(MAKE_NUMERIC_VERSION(4,0,0,343),
39 VERSION_NUMERIC, PLUGIN_NAME, error))
40 return -1;
42 pgpmime_init();
44 return 0;
47 gboolean plugin_done(void)
49 pgpmime_done();
50 return TRUE;
53 const gchar *plugin_name(void)
55 return PLUGIN_NAME;
58 const gchar *plugin_desc(void)
60 return _("This plugin handles PGP/MIME signed and/or encrypted "
61 "mails. You can decrypt mails, verify signatures or "
62 "sign and encrypt your own mails.\n"
63 "\n"
64 "It can be selected as the Default Privacy System in "
65 "/Configuration/[Account Preferences]/Privacy and when "
66 "composing a message from /Options/Privacy System\n"
67 "\n"
68 "The plugin uses the GPGME library as a wrapper for GnuPG.\n"
69 "\n"
70 "GPGME is copyright 2001 by Werner Koch <dd9jn@gnu.org>");
73 const gchar *plugin_type(void)
75 return "GTK3";
78 const gchar *plugin_licence(void)
80 return "GPL3+";
83 const gchar *plugin_version(void)
85 return VERSION;