Documentation

- Shorted the command usage strings shown in the 'help' output, to
  match the names in the reference PDF.
This commit is contained in:
Paul Beckingham 2011-10-24 00:30:42 -04:00
parent 4e7d2e01fa
commit ef68d1785f
2 changed files with 28 additions and 28 deletions

View file

@ -324,7 +324,7 @@ std::string Config::_defaults =
"# Dateformat: due date format in reports\n"
"\n"
"# task long\n"
"report.long.description=Lists all tasks, matching the specified criteria\n"
"report.long.description=Lists all pending tasks\n"
"report.long.columns=id,project,priority,entry,start,due,recur,due.countdown,entry.age,depends,tags,description\n"
"report.long.labels=ID,Project,Pri,Added,Started,Due,Recur,Countdown,Age,Deps,Tags,Description\n"
"report.long.sort=due+,priority-,project+,description+\n"
@ -333,7 +333,7 @@ std::string Config::_defaults =
"#report.long.annotations=full\n"
"\n"
"# task list\n"
"report.list.description=Lists all tasks matching the specified criteria\n"
"report.list.description=Lists all pending tasks\n"
"report.list.columns=id,project,priority,due,start.active,entry.age,description\n"
"report.list.labels=ID,Project,Pri,Due,Active,Age,Description\n"
"report.list.sort=due+,priority-,start-,project+,description+\n"
@ -342,7 +342,7 @@ std::string Config::_defaults =
"#report.list.annotations=full\n"
"\n"
"# task ls\n"
"report.ls.description=Minimal listing of all tasks matching the specified criteria\n"
"report.ls.description=Minimal listing of all pending tasks\n"
"report.ls.columns=id,project,priority,description\n"
"report.ls.labels=ID,Project,Pri,Description\n"
"report.ls.sort=priority-,project+,description+\n"
@ -351,7 +351,7 @@ std::string Config::_defaults =
"#report.ls.annotations=full\n"
"\n"
"# task minimal\n"
"report.minimal.description=A really minimal listing\n"
"report.minimal.description=Minimal listing of all pending tasks\n"
"report.minimal.columns=id,project,description.truncated\n"
"report.minimal.labels=ID,Project,Description\n"
"report.minimal.sort=project+,description+\n"
@ -378,7 +378,7 @@ std::string Config::_defaults =
"#report.oldest.annotations=full\n"
"\n"
"# task overdue\n"
"report.overdue.description=Lists overdue tasks matching the specified criteria\n"
"report.overdue.description=Lists overdue tasks\n"
"report.overdue.columns=id,project,priority,due,start.active,entry.age,description\n"
"report.overdue.labels=ID,Project,Pri,Due,Active,Age,Description\n"
"report.overdue.sort=due+,priority-,start-,project+,description+\n"
@ -387,7 +387,7 @@ std::string Config::_defaults =
"#report.overdue.annotations=full\n"
"\n"
"# task active\n"
"report.active.description=Lists active tasks matching the specified criteria\n"
"report.active.description=Lists active tasks\n"
"report.active.columns=id,project,priority,due,start.active,entry.age,description\n"
"report.active.labels=ID,Project,Pri,Due,Active,Age,Description\n"
"report.active.sort=due+,priority-,project+,description+\n"
@ -396,7 +396,7 @@ std::string Config::_defaults =
"#report.active.annotations=full\n"
"\n"
"# task completed\n"
"report.completed.description=Lists completed tasks matching the specified criteria\n"
"report.completed.description=Lists completed tasks\n"
"report.completed.columns=end,project,priority,entry.age,description\n"
"report.completed.labels=Complete,Project,Pri,Age,Description\n"
"report.completed.sort=end+,priority-,project+,description+\n"
@ -405,7 +405,7 @@ std::string Config::_defaults =
"#report.completed.annotations=full\n"
"\n"
"# task recurring\n"
"report.recurring.description=Lists recurring tasks matching the specified criteria\n"
"report.recurring.description=Lists recurring tasks\n"
"report.recurring.columns=id,project,priority,due,recur,start.active,entry.age,description\n"
"report.recurring.labels=ID,Project,Pri,Due,Recur,Active,Age,Description\n"
"report.recurring.sort=due+,priority-,start-,project+,description+\n"
@ -414,7 +414,7 @@ std::string Config::_defaults =
"#report.recurring.annotations=full\n"
"\n"
"# task waiting\n"
"report.waiting.description=Lists all waiting tasks matching the specified criteria\n"
"report.waiting.description=Lists all waiting tasks\n"
"report.waiting.columns=id,project,priority,wait,entry.age,description\n"
"report.waiting.labels=ID,Project,Pri,Wait,Age,Description\n"
"report.waiting.sort=wait+,priority-,project+,description+\n"
@ -423,7 +423,7 @@ std::string Config::_defaults =
"#report.waiting.annotations=full\n"
"\n"
"# task all\n"
"report.all.description=Lists all tasks matching the specified criteria, including parents of recurring tasks\n"
"report.all.description=Lists all pending and completed tasks\n"
"report.all.columns=id,status,project,priority,due,end,start.active,entry.age,description\n"
"report.all.labels=ID,Status,Project,Pri,Due,Completed,Active,Age,Description\n"
"report.all.sort=project+,due+,end+,priority-,start-,description+\n"
@ -432,8 +432,8 @@ std::string Config::_defaults =
"#report.all.annotations=full\n"
"\n"
"# task next\n"
"report.next.columns=id,project,priority,due,start.active,entry.age,urgency,description\n"
"report.next.description=Lists the most urgent tasks\n"
"report.next.columns=id,project,priority,due,start.active,entry.age,urgency,description\n"
"report.next.filter=status:pending limit:page\n"
"report.next.labels=ID,Project,Pri,Due,A,Age,Urgency,Description\n"
"report.next.sort=urgency-,due+,priority-,start-,project+,description+\n"
@ -441,7 +441,7 @@ std::string Config::_defaults =
"#report.next.annotations=full\n"
"\n"
"# task blocked\n"
"report.blocked.description=Lists all blocked tasks matching the specified criteria\n"
"report.blocked.description=Lists all blocked tasks\n"
"report.blocked.columns=id,depends,project,priority,due,start.active,entry.age,description\n"
"report.blocked.labels=ID,Deps,Project,Pri,Due,Active,Age,Description\n"
"report.blocked.sort=due+,priority-,start-,project+,description+\n"
@ -449,7 +449,7 @@ std::string Config::_defaults =
"#report.blocked.dateformat=m/d/Y\n"
"\n"
"# task unblocked\n"
"report.unblocked.description=Lists all unblocked tasks matching the specified criteria\n"
"report.unblocked.description=Lists all unblocked tasks\n"
"report.unblocked.columns=id,depends,project,priority,due,start.active,entry.age,description\n"
"report.unblocked.labels=ID,Deps,Project,Pri,Due,Active,Age,Description\n"
"report.unblocked.sort=due+,priority-,start-,project+,description+\n"