From e6db1305ab8f0ec981cf6b38820e84108b67b11d Mon Sep 17 00:00:00 2001 From: rbuj Date: Sat, 16 Jul 2022 15:46:08 +0200 Subject: Failed to resolve the path to caja-extensions.mo on guix system --- gksu/libcaja-gksu.c | 4 ++++ image-converter/image-converter.c | 4 ++++ open-terminal/open-terminal.c | 4 ++++ sendto/caja-sendto-module.c | 4 ++++ sendto/plugins/caja-burn/caja-burn.c | 5 +++++ sendto/plugins/emailclient/emailclient.c | 5 +++++ sendto/plugins/gajim/gajim.c | 5 +++++ sendto/plugins/pidgin/pidgin.c | 5 +++++ sendto/plugins/removable-devices/removable-devices.c | 5 +++++ sendto/plugins/upnp/upnp.c | 5 +++++ share/caja-share.c | 4 ++++ wallpaper/caja-wallpaper-command.c | 4 ++++ xattr-tags/caja-xattr-tags-extension.c | 4 ++++ 13 files changed, 58 insertions(+) diff --git a/gksu/libcaja-gksu.c b/gksu/libcaja-gksu.c index 768035a..7e7ebcd 100644 --- a/gksu/libcaja-gksu.c +++ b/gksu/libcaja-gksu.c @@ -273,6 +273,10 @@ caja_module_initialize (GTypeModule *module) { g_print ("Initializing caja-gksu extension\n"); gksu_context_menu_register_type (module); +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ } void diff --git a/image-converter/image-converter.c b/image-converter/image-converter.c index dba1d24..6aa2383 100644 --- a/image-converter/image-converter.c +++ b/image-converter/image-converter.c @@ -38,6 +38,10 @@ caja_module_initialize (GTypeModule *module) caja_image_converter_register_type (module); type_list[0] = CAJA_TYPE_IMAGE_CONVERTER; +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ } void diff --git a/open-terminal/open-terminal.c b/open-terminal/open-terminal.c index 600a8dd..b59841f 100644 --- a/open-terminal/open-terminal.c +++ b/open-terminal/open-terminal.c @@ -38,6 +38,10 @@ caja_module_initialize (GTypeModule *module) caja_open_terminal_register_type (module); type_list[0] = CAJA_TYPE_OPEN_TERMINAL; +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ } void diff --git a/sendto/caja-sendto-module.c b/sendto/caja-sendto-module.c index ed580ba..dc453ae 100644 --- a/sendto/caja-sendto-module.c +++ b/sendto/caja-sendto-module.c @@ -37,6 +37,10 @@ caja_module_initialize (GTypeModule*module) { g_print ("Initializing caja-sendto extension\n"); caja_nste_register_type (module); +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ } void diff --git a/sendto/plugins/caja-burn/caja-burn.c b/sendto/plugins/caja-burn/caja-burn.c index b9cbb53..80aa7d5 100644 --- a/sendto/plugins/caja-burn/caja-burn.c +++ b/sendto/plugins/caja-burn/caja-burn.c @@ -50,6 +50,11 @@ gboolean init (NstPlugin *plugin) g_print ("Init caja burn plugin\n"); +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ + it = gtk_icon_theme_get_default (); gtk_icon_theme_append_search_path (it, DATADIR "/brasero/icons"); diff --git a/sendto/plugins/emailclient/emailclient.c b/sendto/plugins/emailclient/emailclient.c index dee9e07..5414398 100644 --- a/sendto/plugins/emailclient/emailclient.c +++ b/sendto/plugins/emailclient/emailclient.c @@ -82,6 +82,11 @@ init (NstPlugin *plugin) g_print ("Init email client plugin\n"); +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ + app_info = g_app_info_get_default_for_uri_scheme ("mailto"); if (app_info) { mail_cmd = g_strdup(g_app_info_get_executable (app_info)); diff --git a/sendto/plugins/gajim/gajim.c b/sendto/plugins/gajim/gajim.c index 303f4ab..29f3a15 100644 --- a/sendto/plugins/gajim/gajim.c +++ b/sendto/plugins/gajim/gajim.c @@ -262,6 +262,11 @@ init (NstPlugin *plugin) { g_print ("Init gajim plugin\n"); +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ + /* connect to gajim dbus service */ jid_table = g_hash_table_new (g_str_hash, g_str_equal); if (!init_dbus()) { diff --git a/sendto/plugins/pidgin/pidgin.c b/sendto/plugins/pidgin/pidgin.c index 14cd6a7..f180a3c 100644 --- a/sendto/plugins/pidgin/pidgin.c +++ b/sendto/plugins/pidgin/pidgin.c @@ -83,6 +83,11 @@ init (NstPlugin *plugin) g_print ("Init pidgin plugin\n"); +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ + error = NULL; connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error); if(error != NULL) { diff --git a/sendto/plugins/removable-devices/removable-devices.c b/sendto/plugins/removable-devices/removable-devices.c index 1b09b19..0144be7 100644 --- a/sendto/plugins/removable-devices/removable-devices.c +++ b/sendto/plugins/removable-devices/removable-devices.c @@ -151,6 +151,11 @@ init (NstPlugin *plugin) { g_print ("Init removable-devices plugin\n"); +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ + vol_monitor = g_volume_monitor_get (); cb = gtk_combo_box_new (); diff --git a/sendto/plugins/upnp/upnp.c b/sendto/plugins/upnp/upnp.c index b7000c9..7b6775b 100644 --- a/sendto/plugins/upnp/upnp.c +++ b/sendto/plugins/upnp/upnp.c @@ -201,6 +201,11 @@ init (NstPlugin *plugin) GtkCellRenderer *renderer; char *upload_cmd; +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ + upload_cmd = g_find_program_in_path ("gupnp-upload"); if (upload_cmd == NULL) return FALSE; diff --git a/share/caja-share.c b/share/caja-share.c index c23c3f0..b90af5f 100644 --- a/share/caja-share.c +++ b/share/caja-share.c @@ -1263,6 +1263,10 @@ caja_module_initialize (GTypeModule *module) g_print ("Initializing caja-share extension\n"); caja_share_register_type (module); +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ } /* Perform module-specific shutdown. */ diff --git a/wallpaper/caja-wallpaper-command.c b/wallpaper/caja-wallpaper-command.c index f93211b..d7bea89 100644 --- a/wallpaper/caja-wallpaper-command.c +++ b/wallpaper/caja-wallpaper-command.c @@ -39,6 +39,10 @@ caja_module_initialize (GTypeModule*module) { g_print ("Initializing caja-wallpaper extension\n"); caja_cwe_register_type (module); +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ } void diff --git a/xattr-tags/caja-xattr-tags-extension.c b/xattr-tags/caja-xattr-tags-extension.c index 5638df5..a3c8993 100644 --- a/xattr-tags/caja-xattr-tags-extension.c +++ b/xattr-tags/caja-xattr-tags-extension.c @@ -269,6 +269,10 @@ caja_module_initialize (GTypeModule *module) { g_print ("Initializing caja-xattr-tags extension\n"); caja_xattr_tags_register_type (module); +#ifdef ENABLE_NLS + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif /* ENABLE_NLS */ } void -- cgit v1.2.1