More strings to translate #1354

This commit is contained in:
Alexey Sokolov
2017-09-08 00:03:27 +01:00
parent d51159a330
commit 7e94158c6d
4 changed files with 4 additions and 4 deletions

View File

@@ -379,4 +379,4 @@ void TModInfo<CModPerl>(CModInfo& Info) {
Info.SetWikiPage("modperl");
}
GLOBALMODULEDEFS(CModPerl, "Loads perl scripts as ZNC modules")
GLOBALMODULEDEFS(CModPerl, t_s("Loads perl scripts as ZNC modules"))

View File

@@ -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;

View File

@@ -509,4 +509,4 @@ void TModInfo<CModPython>(CModInfo& Info) {
Info.SetWikiPage("modpython");
}
GLOBALMODULEDEFS(CModPython, "Loads python scripts as ZNC modules")
GLOBALMODULEDEFS(CModPython, t_s("Loads python scripts as ZNC modules"))

View File

@@ -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