mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
feat: quick new options lang.
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
import React from 'react';
|
||||
import { formatMessage } from 'services/intl';
|
||||
|
||||
export default [
|
||||
{ path: 'invoices/new', name: 'Sale invoice' },
|
||||
{ path: 'bills//new', name: 'Purchase invoice' },
|
||||
{ path: 'make-journal-entry', name: 'Manual journal' },
|
||||
{ path: 'expenses/new', name: 'Expense' },
|
||||
{ path: 'customers/new', name: 'Customer' },
|
||||
{ path: 'vendors/new', name: 'Vendor' },
|
||||
{ path: 'invoices/new', name: formatMessage({ id: 'sale_invoice' }) },
|
||||
{ path: 'bills//new', name: formatMessage({ id: 'purchase_invoice' }) },
|
||||
{ path: 'make-journal-entry', name: formatMessage({ id: 'manual_journal' }) },
|
||||
{ path: 'expenses/new', name: formatMessage({ id: 'expense' }) },
|
||||
{ path: 'customers/new', name: formatMessage({ id: 'customer' }) },
|
||||
{ path: 'vendors/new', name: formatMessage({ id: 'vendor' }) },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user