mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
I18N
- Localized more commands.
This commit is contained in:
parent
63203cd91a
commit
31aa0de426
5 changed files with 62 additions and 29 deletions
|
@ -25,8 +25,12 @@
|
|||
//
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#define L10N // Localization complete.
|
||||
|
||||
#include <iostream>
|
||||
#include <Context.h>
|
||||
#include <text.h>
|
||||
#include <i18n.h>
|
||||
#include <CmdSynch.h>
|
||||
|
||||
extern Context context;
|
||||
|
@ -36,7 +40,7 @@ CmdSynch::CmdSynch ()
|
|||
{
|
||||
_keyword = "synchronize";
|
||||
_usage = "task synchronize";
|
||||
_description = "(Not implemented for 2.0.0beta1)";
|
||||
_description = STRING_CMD_SYNCH_USAGE;
|
||||
_read_only = false;
|
||||
_displays_id = true;
|
||||
}
|
||||
|
@ -44,6 +48,7 @@ CmdSynch::CmdSynch ()
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
int CmdSynch::execute (std::string& output)
|
||||
{
|
||||
// TODO Tempporary.
|
||||
std::cout << "\n"
|
||||
<< "Task Server Synchronization is not implemented in 2.0.0beta1.\n"
|
||||
<< "\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue