mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
feat(lang): contact & keyboardshortcuts options.
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
import React from 'react';
|
||||
import { formatMessage } from 'services/intl';
|
||||
|
||||
export default [
|
||||
{ name: 'Customer', path: 'customers' },
|
||||
{ name: 'Vendor', path: 'vendors' },
|
||||
{ name: formatMessage({ id: 'customer' }), path: 'customers' },
|
||||
{ name: formatMessage({ id: 'vendor' }), path: 'vendors' },
|
||||
];
|
||||
|
||||
@@ -1,102 +1,105 @@
|
||||
import React from 'react';
|
||||
import { formatMessage } from 'services/intl';
|
||||
|
||||
export default [
|
||||
{
|
||||
shortcut_key: 'Shift + I',
|
||||
description: 'Jump to the invoices.',
|
||||
description: formatMessage({ id: 'jump_to_the_invoices' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + E',
|
||||
description: 'Jump to the estimates.',
|
||||
description: formatMessage({ id: 'jump_to_the_estimates' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + R',
|
||||
description: 'Jump to the receipts.',
|
||||
description: formatMessage({ id: 'jump_to_the_receipts' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + X',
|
||||
description: 'Jump to the expenses.',
|
||||
description: formatMessage({ id: 'jump_to_the_expenses' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + C',
|
||||
description: 'Jump to the customers.',
|
||||
description: formatMessage({ id: 'jump_to_the_customers' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + V',
|
||||
description: 'Jump to the vendors.',
|
||||
description: formatMessage({ id: 'jump_to_the_vendors' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + A',
|
||||
description: 'Jump to the Chart of Accounts.',
|
||||
description: formatMessage({ id: 'jump_to_the_chart_of_accounts' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + B',
|
||||
description: 'Jump to the bills.',
|
||||
description: formatMessage({ id: 'jump_to_the_bills' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + M',
|
||||
description: 'Jump to the Manual Journals.',
|
||||
description: formatMessage({ id: 'jump_to_the_manual_journals' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + W',
|
||||
description: 'Jump to the items.',
|
||||
description: formatMessage({ id: 'jump_to_the_items' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + 1',
|
||||
description: 'Jump to the Balance Sheet.',
|
||||
description: formatMessage({ id: 'jump_to_the_balance_sheet' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + 2',
|
||||
description: 'Jump to the Profit Loss Sheet.',
|
||||
description: formatMessage({ id: 'jump_to_the_profit_loss_sheet' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + 3',
|
||||
description: 'Jump to the Journal Sheet.',
|
||||
description: formatMessage({ id: 'jump_to_the_journal_sheet' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + 4',
|
||||
description: 'Jump to the General Ledger Sheet.',
|
||||
description: formatMessage({ id: 'jump_to_the_general_ledger_sheet' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Shift + 5',
|
||||
description: 'Jump to the Trial Balance Sheet.',
|
||||
description: formatMessage({ id: 'jump_to_the_trial_balance_sheet' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Ctrl + Shift + I ',
|
||||
description: 'Create a new invoice .',
|
||||
description: formatMessage({ id: 'create_a_new_invoice' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Ctrl + Shift + E ',
|
||||
description: 'Create a new estimate .',
|
||||
description: formatMessage({ id: 'create_a_new_estimate' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Ctrl + Shift + R ',
|
||||
description: 'Create a new receipt .',
|
||||
description: formatMessage({ id: 'create_a_new_receipt' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Ctrl + Shift + X ',
|
||||
description: 'Create a new expense.',
|
||||
description: formatMessage({ id: 'create_a_new_expense' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Ctrl + Shift + C ',
|
||||
description: 'Create a new customer.',
|
||||
description: formatMessage({ id: 'create_a_new_customer' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Ctrl + Shift + V ',
|
||||
description: 'Create a new vendor.',
|
||||
description: formatMessage({ id: 'create_a_new_vendor' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Ctrl + Shift + B ',
|
||||
description: 'Create a new bill.',
|
||||
description: formatMessage({ id: 'create_a_new_bill' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Ctrl + Shift + M ',
|
||||
description: 'Create a new Make Journal.',
|
||||
description: formatMessage({ id: 'create_a_new_make_journal' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Ctrl + Shift + W ',
|
||||
description: 'Create a new item.',
|
||||
description: formatMessage({ id: 'create_a_new_item' }),
|
||||
},
|
||||
{
|
||||
shortcut_key: 'Ctrl + / ',
|
||||
description: 'Close and open sidebar .',
|
||||
description: formatMessage({ id: 'close_and_open_sidebar' }),
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user