diff --git a/modules/modperl.cpp b/modules/modperl.cpp index c919602d..b5a51677 100644 --- a/modules/modperl.cpp +++ b/modules/modperl.cpp @@ -379,4 +379,4 @@ void TModInfo(CModInfo& Info) { Info.SetWikiPage("modperl"); } -GLOBALMODULEDEFS(CModPerl, "Loads perl scripts as ZNC modules") +GLOBALMODULEDEFS(CModPerl, t_s("Loads perl scripts as ZNC modules")) diff --git a/modules/modperl/startup.pl b/modules/modperl/startup.pl index 141e087f..6aa2023b 100644 --- a/modules/modperl/startup.pl +++ b/modules/modperl/startup.pl @@ -695,7 +695,7 @@ sub t_p { return sub { sprintf $fmt, @_ } } -# TODO is _d needed for perl? Maybe after AddCommand is implemented +# TODO is t_d needed for perl? Maybe after AddCommand is implemented package ZNC::Timer; diff --git a/modules/modpython.cpp b/modules/modpython.cpp index fb8d7ce7..537f3757 100644 --- a/modules/modpython.cpp +++ b/modules/modpython.cpp @@ -509,4 +509,4 @@ void TModInfo(CModInfo& Info) { Info.SetWikiPage("modpython"); } -GLOBALMODULEDEFS(CModPython, "Loads python scripts as ZNC modules") +GLOBALMODULEDEFS(CModPython, t_s("Loads python scripts as ZNC modules")) diff --git a/modules/modpython/znc.py b/modules/modpython/znc.py index a8a2bbb9..51c8e87a 100644 --- a/modules/modpython/znc.py +++ b/modules/modpython/znc.py @@ -194,7 +194,7 @@ class Module: num) return fmt.format - # TODO is "d" needed for python? Maybe after AddCommand is implemented + # TODO is "t_d" needed for python? Maybe after AddCommand is implemented def OnLoad(self, sArgs, sMessage): return True