On 1/30/06, enlightenment-cvs@lists.sourceforge.net <
enlightenment-cvs@lists.sourceforge.net> wrote:
snippity snip
Out go the i18n changes with them nasty tabs!
So I'm guessing I'll possibly have to redo the patches.
If that's the case, someone please let me know when is a good quiet time in e_module land (^_^)
Out of curiosity, is a tool (fmt or something?) being used to do this?
Might have to be careful of breaking the gettext _() macro like this, if that's the case.
Regards!
David
Enlightenment CVS committal
Author : mej
Project : e_modules
Module : monitor
Dir : e_modules/monitor
Modified Files:
e_mod_config.c e_mod_config.h e_mod_main.c e_mod_main.h
Log Message:
Sun Jan 29 22:16:32 2006 Michael Jennings (mej)
Attempt #2 to get rid of tabs.
----------------------------------------------------------------------
snippity snip
-EAPI void *
-e_modapi_init(E_Module *module)
+EAPI void *
+e_modapi_init(E_Module * module)
{
- Monitor *monitor;
+ Monitor *monitor;
- /* Set up module's message catalogue */
- bindtextdomain(PACKAGE, LOCALEDIR);
- bind_textdomain_codeset(PACKAGE, "UTF-8");
-
/* actually init buttons */
monitor = _monitor_new();
module->config_menu = monitor->config_menu;
@@ -66,24 +74,24 @@
Out go the i18n changes with them nasty tabs!
So I'm guessing I'll possibly have to redo the patches.
If that's the case, someone please let me know when is a good quiet time in e_module land (^_^)
EAPI int
-e_modapi_about(E_Module *module)
+e_modapi_about(E_Module * module)
{
- e_module_dialog_show(D_("Enlightenment Monitor Module"),
- D_("A simple module to give E17 a usage monitor for some resources."));
+ e_module_dialog_show(_("Enlightenment Monitor Module"),
+ _
+ ("A simple module to give E17 a usage monitor for some resources."));
return 1;
}
Out of curiosity, is a tool (fmt or something?) being used to do this?
Might have to be careful of breaking the gettext _() macro like this, if that's the case.
Regards!
David