diff options
author | Jyzee <jyzee.git@gmail.com> | 2014-05-22 19:00:56 +0200 |
---|---|---|
committer | Jyzee <jyzee.git@gmail.com> | 2014-05-22 19:00:56 +0200 |
commit | f0c0daa644fd2a266a4a9ab1d83fb41798a099ed (patch) | |
tree | 589f953f75c20bd64b581cbf16358b2b69f6875b /data/chanserv.example.conf | |
parent | 7a2d027e1da37df9b4243e03c050ed06e0b76a53 (diff) |
Make command group descriptions translatable.
Diffstat (limited to 'data/chanserv.example.conf')
-rw-r--r-- | data/chanserv.example.conf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/data/chanserv.example.conf b/data/chanserv.example.conf index 720738403..86b86291b 100644 --- a/data/chanserv.example.conf +++ b/data/chanserv.example.conf @@ -799,25 +799,25 @@ privilege command_group { name = "chanserv/access" - description = "Used to manage the list of privileged users" + description = _("Used to manage the list of privileged users") } command_group { name = "chanserv/status" - description = "Used to modify the channel status of you or other users" + description = _("Used to modify the channel status of you or other users") } command_group { name = "chanserv/management" - description = "Used to manage channels" + description = _("Used to manage channels") } command_group { name = "chanserv/admin" - description = "Services Operator commands" + description = _("Services Operator commands") } /* Give it a help command. */ @@ -935,7 +935,7 @@ command { service = "ChanServ"; name = "ENTRYMSG"; command = "chanserv/entrymsg" * * The "LIST" subcommand of chanserv/flags will show every access entry on the channel, including access * entries not added by cs_flags. The "Flags" of these entries will be the flags representation of the - * privilege set granted by the access entry. + * privilege set granted by the access entry. */ module { name = "cs_flags" } command { service = "ChanServ"; name = "FLAGS"; command = "chanserv/flags"; group = "chanserv/access"; } |