Subversion Repositories pub

Compare Revisions

Ignore whitespace Rev 5 → Rev 11

/nautilus-follow-symlink/trunk/src/follow-symlink.c
132,8 → 132,8
const char *name;
const char *tooltip;
 
name = "-> Follow symbolic _link";
tooltip = "Open the directory pointed by the currently selected symbolic link";
name = _("Follow symbolic _link");
tooltip = _("Open the directory pointed by the currently selected symbolic link");
 
// (name, label, tip, icon)
ret = nautilus_menu_item_new("FsymlinkExtension::follow_symlink",
/nautilus-follow-symlink/trunk/src/nautilus-ext-follow-symlink.c
1,5 → 1,8
#include "nautilus-ext-follow-symlink.h"
 
#include <locale.h>
#include <libintl.h>
 
#include <glib/gprintf.h>
 
/* Public interface */
11,6 → 14,10
TRACE();
FSL_DEBUG_INIT();
 
setlocale(LC_ALL, "");
bindtextdomain(GETTEXT_PACKAGE, GNOMELOCALEDIR);
textdomain(GETTEXT_PACKAGE);
 
g_printf("Initializing nautilus-follow-symlink extension (v.%s)\n", VERSION);
 
fsl_register_type(module);
/nautilus-follow-symlink/trunk/src/Makefile.am
1,4 → 1,7
 
# Required to correctly install the locale files
CPPFLAGS+=-DGNOMELOCALEDIR=\""$(datadir)/locale"\"
 
nautilus_extension_lib_LTLIBRARIES = libnautilus-follow-symlink.la
 
# Must be installed in nautilus' extension dir
/nautilus-follow-symlink/trunk/src/common.h
9,6 → 9,9
#include <glib/gmessages.h> /* g_print() */
#include <glib/gprintf.h> /* g_printf() */
 
#include "libintl.h"
#define _(STR) gettext(STR)
 
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif // HAVE_CONFIG_H