diff options
author | Sadie Powell <sadie@witchery.services> | 2025-04-16 02:17:59 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-04-16 02:19:17 +0100 |
commit | 1e95d0f53660450a0bb01ec0c1d553c13e24fa83 (patch) | |
tree | 2e57a4e00b9d0cf97a3b632f7f3f6f46819fa075 /modules | |
parent | ad0b4d1aa007816c4be004a87b0fcafd2b0eb227 (diff) |
Fix some text strings that should be marked as translatable.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/operserv/os_set.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/operserv/os_set.cpp b/modules/operserv/os_set.cpp index a667bb7bb..6f2c061ed 100644 --- a/modules/operserv/os_set.cpp +++ b/modules/operserv/os_set.cpp @@ -203,11 +203,11 @@ public: )); HelpWrapper help; - help.AddEntry("READONLY", "Set read-only or read-write mode"); - help.AddEntry("DEBUG", "Activate or deactivate debug mode"); - help.AddEntry("NOEXPIRE", "Activate or deactivate no expire mode"); - help.AddEntry("SUPERADMIN", "Activate or deactivate super admin mode"); - help.AddEntry("LIST", "List the options"); + help.AddEntry("READONLY", _("Set read-only or read-write mode")); + help.AddEntry("DEBUG", _("Activate or deactivate debug mode")); + help.AddEntry("NOEXPIRE", _("Activate or deactivate no expire mode")); + help.AddEntry("SUPERADMIN", _("Activate or deactivate super admin mode")); + help.AddEntry("LIST", _("List the options")); source.Reply(" "); help.SendTo(source); |