1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.ts

95 lines
1.6 KiB
TypeScript
Raw Normal View History

import { CommandDeclaration } from '@joplin/lib/services/CommandService';
import { _ } from '@joplin/lib/locale';
const declarations:CommandDeclaration[] = [
{
name: 'insertText',
},
{
name: 'scrollToHash',
},
{
name: 'textCopy',
label: () => _('Copy'),
role: 'copy',
},
{
name: 'textCut',
label: () => _('Cut'),
role: 'cut',
},
{
name: 'textPaste',
label: () => _('Paste'),
role: 'paste',
},
{
name: 'textSelectAll',
label: () => _('Select all'),
role: 'selectAll',
},
{
name: 'textBold',
label: () => _('Bold'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-bold',
},
{
name: 'textItalic',
label: () => _('Italic'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-italic',
},
{
name: 'textLink',
label: () => _('Hyperlink'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-link',
},
{
name: 'textCode',
label: () => _('Code'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-code',
},
{
name: 'attachFile',
label: () => _('Attach file'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-attachment',
},
{
name: 'textNumberedList',
label: () => _('Numbered List'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-numbered-list',
},
{
name: 'textBulletedList',
label: () => _('Bulleted List'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-bulleted-list',
},
{
name: 'textCheckbox',
label: () => _('Checkbox'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-to-do-list',
},
{
name: 'textHeading',
label: () => _('Heading'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-heading',
},
{
name: 'textHorizontalRule',
label: () => _('Horizontal Rule'),
2020-09-15 15:01:07 +02:00
iconName: 'fas fa-ellipsis-h',
},
{
name: 'insertDateTime',
label: () => _('Insert Date Time'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-add-date',
},
{
name: 'selectedText',
},
{
name: 'replaceSelection',
},
];
export default declarations;