aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/dbx-import/dbx-importer.c
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2011-04-02 00:34:16 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:52 +0800
commit1448ecee67aa8480bd1e39d47248ab13a5ba4fde (patch)
treed32874aed3f76d2c17cb5dba4e66fa657dbd91d6 /plugins/dbx-import/dbx-importer.c
parentc55d5a308e798b7e24d10828cd54302e0698611f (diff)
downloadgsoc2013-evolution-1448ecee67aa8480bd1e39d47248ab13a5ba4fde.tar
gsoc2013-evolution-1448ecee67aa8480bd1e39d47248ab13a5ba4fde.tar.gz
gsoc2013-evolution-1448ecee67aa8480bd1e39d47248ab13a5ba4fde.tar.bz2
gsoc2013-evolution-1448ecee67aa8480bd1e39d47248ab13a5ba4fde.tar.lz
gsoc2013-evolution-1448ecee67aa8480bd1e39d47248ab13a5ba4fde.tar.xz
gsoc2013-evolution-1448ecee67aa8480bd1e39d47248ab13a5ba4fde.tar.zst
gsoc2013-evolution-1448ecee67aa8480bd1e39d47248ab13a5ba4fde.zip
Fix translations being boken by removing calls to bindtextdomain() from plugins.
It shouldn't be needed for plugins that live in the evolution source tree anyway since they should just use the translation domain they inherit from main().
Diffstat (limited to 'plugins/dbx-import/dbx-importer.c')
-rw-r--r--plugins/dbx-import/dbx-importer.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/plugins/dbx-import/dbx-importer.c b/plugins/dbx-import/dbx-importer.c
index f4dd0506d5..294b466263 100644
--- a/plugins/dbx-import/dbx-importer.c
+++ b/plugins/dbx-import/dbx-importer.c
@@ -811,13 +811,5 @@ org_gnome_evolution_readdbx_cancel (EImport *ei,
gint
e_plugin_lib_enable (EPlugin *ep, gint enable)
{
- if (enable) {
- bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
- bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
- g_message ("DBX Plugin enabled");
- } else {
- g_message ("DBX Plugin disabled");
- }
-
return 0;
}