Changeset 33

Show
Ignore:
Timestamp:
11/02/07 18:30:16
Author:
pvanhoof
Message:
        • Added support for translations
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk

    • Property svn:ignore changed from configure Makefile.in config.log depcomp config.guess config.h config.sub ltmain.sh Makefile config.status stamp-h1 config.h.in libtool autom4te.cache missing aclocal.m4 install-sh TODO.tasks .tm_project2.cache tmut.anjuta to mkinstalldirs configure Makefile.in config.log depcomp config.guess config.h config.sub ltmain.sh Makefile config.status stamp-h1 config.h.in libtool autom4te.cache missing aclocal.m4 install-sh TODO.tasks .tm_project2.cache tmut.anjuta
  • trunk/.svnignore

    r3 r33  
     1mkinstalldirs 
    12configure 
    23Makefile.in 
  • trunk/ChangeLog

    r32 r33  
    33        * Bugfix with error handling in the callback handlers 
    44        * Implemented deleting a message 
     5        * Added support for translations 
    56 
    672007-11-01  Philip Van Hoof  <pvanhoof@gnome.org> 
  • trunk/Makefile.am

    r1 r33  
    1 SUBDIRS = src 
     1SUBDIRS = src po 
  • trunk/configure.ac

    r15 r33  
    11AC_INIT([tmut],[0.0.1],[http://tinymail.org]) 
    2 AC_CONFIG_HEADERS([config.h]) 
     2AC_CONFIG_HEADERS([src/config.h]) 
    33 
    44AC_CONFIG_SRCDIR(src/tmut-main.c) 
     
    2727AC_SUBST(TMUT_LIBS) 
    2828 
     29GETTEXT_PACKAGE=tmut 
     30AC_SUBST(GETTEXT_PACKAGE) 
     31AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Package name for gettext]) 
     32AM_GLIB_DEFINE_LOCALEDIR([TMUT_LOCALE_DIR]) 
     33ALL_LINGUAS="" 
     34AM_GLIB_GNU_GETTEXT 
     35 
     36 
    2937AC_OUTPUT([ 
    3038Makefile 
     39po/Makefile.in 
    3140src/Makefile 
    3241]) 
  • trunk/src

    • Property svn:ignore changed from core .libs .deps tmut Makefile Makefile.in to core .libs .deps tmut Makefile Makefile.in config.h stamp-h1 config.h.in
  • trunk/src/.svnignore

    r12 r33  
    55Makefile 
    66Makefile.in 
     7config.h 
     8stamp-h1 
     9config.h.in 
  • trunk/src/tmut-main.c

    r16 r33  
    2323#include <tny-account-store-view.h> 
    2424 
     25#include <libintl.h> 
     26 
     27#include "config.h" 
    2528#include "tmut-platform-factory.h" 
    2629#include "tmut-menu-view.h" 
     
    4245        gdk_threads_enter (); 
    4346        gtk_init (&argc, &argv); 
     47 
     48        bindtextdomain(GETTEXT_PACKAGE, TMUT_LOCALE_DIR); 
    4449 
    4550        window = GTK_WIDGET (tmut_shell_window_new ());