From 7e94158c6df79f2bd3b0b0b38704d7a4ed6d4dae Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Fri, 8 Sep 2017 00:03:27 +0100 Subject: [PATCH] More strings to translate #1354 --- modules/modperl.cpp | 2 +- modules/modperl/startup.pl | 2 +- modules/modpython.cpp | 2 +- modules/modpython/znc.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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