diff options
Diffstat (limited to 'share')
-rw-r--r-- | share/Makefile.am | 4 | ||||
-rw-r--r-- | share/caja-share.c (renamed from share/mate-file-manager-share.c) | 10 | ||||
-rw-r--r-- | share/caja-share.h (renamed from share/mate-file-manager-share.h) | 2 | ||||
-rw-r--r-- | share/shares.c | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/share/Makefile.am b/share/Makefile.am index 036119e..0bab361 100644 --- a/share/Makefile.am +++ b/share/Makefile.am @@ -18,8 +18,8 @@ caja_extensiondir=$(CAJA_EXTENSION_DIR) caja_extension_LTLIBRARIES=libcaja-share.la libcaja_share_la_SOURCES = \ - mate-file-manager-share.c \ - mate-file-manager-share.h \ + caja-share.c \ + caja-share.h \ shares.c \ shares.h diff --git a/share/mate-file-manager-share.c b/share/caja-share.c index aa0eb2f..61be2d6 100644 --- a/share/mate-file-manager-share.c +++ b/share/caja-share.c @@ -1,4 +1,4 @@ -/* mate-file-manager-share -- Caja File Sharing Extension +/* caja-share -- Caja File Sharing Extension * * Sebastien Estienne <[email protected]> * @@ -31,7 +31,7 @@ #include <libcaja-extension/caja-menu-provider.h> #include <libcaja-extension/caja-property-page-provider.h> -#include "mate-file-manager-share.h" +#include "caja-share.h" #include <glib/gi18n-lib.h> @@ -686,7 +686,7 @@ create_property_page (CajaFileInfo *fileinfo) page->xml = gtk_builder_new (); - gtk_builder_set_translation_domain (page->xml, "mate-file-manager-share"); + gtk_builder_set_translation_domain (page->xml, GETTEXT_PACKAGE); g_assert (gtk_builder_add_from_file (page->xml, INTERFACES_DIR"/share-dialog.ui", &error)); @@ -1252,7 +1252,7 @@ caja_share_register_type (GTypeModule *module) void caja_module_initialize (GTypeModule *module) { - /*g_print ("Initializing mate-file-manager-share extension\n");*/ + /*g_print ("Initializing caja-share extension\n");*/ bindtextdomain(GETTEXT_PACKAGE, MATELOCALEDIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); @@ -1264,7 +1264,7 @@ caja_module_initialize (GTypeModule *module) void caja_module_shutdown (void) { - /*g_print ("Shutting down mate-file-manager-share extension\n");*/ + /*g_print ("Shutting down caja-share extension\n");*/ /* FIXME freeing */ } diff --git a/share/mate-file-manager-share.h b/share/caja-share.h index 9907ac2..1410917 100644 --- a/share/mate-file-manager-share.h +++ b/share/caja-share.h @@ -1,4 +1,4 @@ -/* mate-file-manager-share -- Caja File Sharing Extension +/* caja-share -- Caja File Sharing Extension * * Sebastien Estienne <[email protected]> * diff --git a/share/shares.c b/share/shares.c index 6a239ff..a8d9bdd 100644 --- a/share/shares.c +++ b/share/shares.c @@ -762,7 +762,7 @@ shares_error_quark (void) static GQuark quark; if (quark == 0) - quark = g_quark_from_string ("mate-file-manager-shares-error-quark"); /* not from_static_string since we are a module */ + quark = g_quark_from_string ("caja-share-error-quark"); /* not from_static_string since we are a module */ return quark; } |