1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-06 09:19:22 +02:00

todo => to-do

This commit is contained in:
Laurent Cozic
2017-10-30 00:37:34 +00:00
parent 5a7028bd11
commit a43f5a1b53
10 changed files with 17 additions and 17 deletions

View File

@@ -340,7 +340,7 @@ class AppGui {
shortcuts[' '] = {
friendlyName: 'SPACE',
description: _('Set a todo as completed / not completed'),
description: _('Set a to-do as completed / not completed'),
action: 'todo toggle $n',
}

View File

@@ -80,7 +80,7 @@ function getHeader() {
output.push('NAME');
output.push('');
output.push(wrap('joplin - a note taking and todo app with synchronisation capabilities'), INDENT);
output.push(wrap('joplin - a note taking and to-do app with synchronisation capabilities'), INDENT);
output.push('');
@@ -88,7 +88,7 @@ function getHeader() {
output.push('');
let description = [];
description.push('Joplin is a note taking and todo application, which can handle a large number of notes organised into notebooks.');
description.push('Joplin is a note taking and to-do application, which can handle a large number of notes organised into notebooks.');
description.push('The notes are searchable, can be copied, tagged and modified with your own text editor.');
description.push("\n\n");
description.push('The notes can be synchronised with various target including the file system (for example with a network directory) or with Microsoft OneDrive.');

View File

@@ -10,7 +10,7 @@ const headerHtml = `
<!doctype html>
<html>
<head>
<title>Joplin - a free, open source, note taking and todo application with synchronisation capabilities</title>
<title>Joplin - a free, open source, note taking and to-do application with synchronisation capabilities</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
@@ -95,7 +95,7 @@ const headerHtml = `
<div class="header">
<a class="forkme" href="https://github.com/laurent22/joplin"><img src="docs/images/ForkMe.png"/></a>
<h1 id="joplin"><img class="title-icon" src="docs/images/Icon512.png">oplin</h1>
<p class="sub-title">A free, open source, note taking and todo application with synchronisation capabilities.</p>
<p class="sub-title">A free, open source, note taking and to-do application with synchronisation capabilities.</p>
</div>
<div class="content">

View File

@@ -13,13 +13,13 @@ class Command extends BaseCommand {
}
description() {
return _('Marks a todo as done.');
return _('Marks a to-do as done.');
}
static async handleAction(args, isCompleted) {
const note = await app().loadItem(BaseModel.TYPE_NOTE, args.note);
if (!note) throw new Error(_('Cannot find "%s".', args.note));
if (!note.is_todo) throw new Error(_('Note is not a todo: "%s"', args.note));
if (!note.is_todo) throw new Error(_('Note is not a to-do: "%s"', args.note));
const todoCompleted = !!note.todo_completed;

View File

@@ -28,9 +28,9 @@ class Command extends BaseCommand {
['-n, --limit <num>', _('Displays only the first top <num> notes.')],
['-s, --sort <field>', _('Sorts the item by <field> (eg. title, updated_time, created_time).')],
['-r, --reverse', _('Reverses the sorting order.')],
['-t, --type <type>', _('Displays only the items of the specific type(s). Can be `n` for notes, `t` for todos, or `nt` for notes and todos (eg. `-tt` would display only the todos, while `-ttd` would display notes and todos.')],
['-t, --type <type>', _('Displays only the items of the specific type(s). Can be `n` for notes, `t` for to-dos, or `nt` for notes and to-dos (eg. `-tt` would display only the to-dos, while `-ttd` would display notes and to-dos.')],
['-f, --format <format>', _('Either "text" or "json"')],
['-l, --long', _('Use long list format. Format is ID, NOTE_COUNT (for notebook), DATE, TODO_CHECKED (for todos), TITLE')],
['-l, --long', _('Use long list format. Format is ID, NOTE_COUNT (for notebook), DATE, TODO_CHECKED (for to-dos), TITLE')],
];
}

View File

@@ -10,7 +10,7 @@ class Command extends BaseCommand {
}
description() {
return _('Creates a new todo.');
return _('Creates a new to-do.');
}
async action(args) {

View File

@@ -13,7 +13,7 @@ class Command extends BaseCommand {
}
description() {
return _('<todo-command> can either be "toggle" or "clear". Use "toggle" to toggle the given todo between completed and uncompleted state (If the target is a regular note it will be converted to a todo). Use "clear" to convert the todo back to a regular note.');
return _('<todo-command> can either be "toggle" or "clear". Use "toggle" to toggle the given to-do between completed and uncompleted state (If the target is a regular note it will be converted to a to-do). Use "clear" to convert the to-do back to a regular note.');
}
async action(args) {

View File

@@ -15,7 +15,7 @@ class Command extends BaseCommand {
}
description() {
return _('Marks a todo as non-completed.');
return _('Marks a to-do as non-completed.');
}
async action(args) {