diff options
| author | Adam <Adam@anope.org> | 2013-01-13 05:37:40 -0500 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2013-01-13 22:07:27 -0500 |
| commit | d3a6bdc68bfc99b6e0926fda18544b58b2c2ca59 (patch) | |
| tree | f98ef2426d969c1b2b83e66db782716a922e0bc8 /data | |
| parent | 402e42fd15bd9be4b721118bbbae03e22d9f433e (diff) | |
Allow the config parser to skip over gettext's _() to allow translating config values
Diffstat (limited to 'data')
| -rw-r--r-- | data/chanserv.example.conf | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/data/chanserv.example.conf b/data/chanserv.example.conf index 0d83e6a3c..5b7afd43e 100644 --- a/data/chanserv.example.conf +++ b/data/chanserv.example.conf @@ -1209,7 +1209,7 @@ command rewrite_souce = "OWNER $" rewrite_target = "MODE $1 SET +q $2" - rewrite_description = "Gives you owner status on channel" + rewrite_description = _("Gives you owner status on channel") } command { @@ -1219,7 +1219,7 @@ command rewrite_source = "DEOWNER $" rewrite_target = "MODE $1 SET -q $2" - rewrite_description = "Removes your owner status on a channel" + rewrite_description = _("Removes your owner status on a channel") } command @@ -1230,7 +1230,7 @@ command rewrite_source = "PROTECT $" rewrite_target = "MODE $1 SET +a $2" - rewrite_description = "Protects a selected nick on a channel" + rewrite_description = _("Protects a selected nick on a channel") } command { @@ -1240,7 +1240,7 @@ command rewrite_source = "DEPROTECT $" rewrite_target = "MODE $1 SET -a $2" - rewrite_description = "Deprotects a selected nick on a channel" + rewrite_description = _("Deprotects a selected nick on a channel") } command @@ -1251,7 +1251,7 @@ command rewrite_source = "OP $" rewrite_target = "MODE $1 SET +o $2" - rewrite_description = "Gives Op status to a selected nick on a channel" + rewrite_description = _("Gives Op status to a selected nick on a channel") } command @@ -1262,7 +1262,7 @@ command rewrite_source = "DEOP $" rewrite_target = "MODE $1 SET -o $2"; - rewrite_description = "Deops a selected nick on a channel" + rewrite_description = _("Deops a selected nick on a channel") } /* HALFOP and DEHALFOP commands */ @@ -1274,7 +1274,7 @@ command rewrite_source = "HALFOP $" rewrite_target = "MODE $1 SET +h $2" - rewrite_description = "Halfops a selected nick on a channel" + rewrite_description = _("Halfops a selected nick on a channel") } command @@ -1285,7 +1285,7 @@ command rewrite_source = "DEHALFOP $" rewrite_target = "MODE $1 SET -h $2" - rewrite_description = "Dehalfops a selected nick on a channel" + rewrite_description = _("Dehalfops a selected nick on a channel") } /* VOICE and DEVOICE commands */ @@ -1297,7 +1297,7 @@ command rewrite_source = "VOICE $" rewrite_target = "MODE $1 SET +v $2" - rewrite_description = "Voices a selected nick on a channel" + rewrite_description = _("Voices a selected nick on a channel") } command @@ -1308,7 +1308,7 @@ command rewrite_source = "DEVOICE $" rewrite_target = "MODE $1 SET -v $2" - rewrite_description = "Devoices a selected nick on a channel" + rewrite_description = _("Devoices a selected nick on a channel") } |
