- Localized the _commands and _zshcommands commands.
This commit is contained in:
Paul Beckingham 2011-09-26 01:30:47 -04:00
parent 4858931592
commit d1594e5123
3 changed files with 7 additions and 4 deletions

View file

@ -25,6 +25,8 @@
//
////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete.
#include <sstream>
#include <algorithm>
#include <stdlib.h>
@ -39,7 +41,7 @@ CmdCompletionCommands::CmdCompletionCommands ()
{
_keyword = "_commands";
_usage = "task _commands";
_description = "Generates a list of all commands, for autocompletion purposes";
_description = STRING_CMD_HCOMMANDS_USAGE;
_read_only = true;
_displays_id = false;
}
@ -75,7 +77,7 @@ CmdZshCommands::CmdZshCommands ()
{
_keyword = "_zshcommands";
_usage = "task _zshcommands";
_description = "Generates a list of all commands, for zsh autocompletion purposes";
_description = STRING_CMD_ZSHCOMMANDS_USAGE;
_read_only = true;
_displays_id = false;
}