mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
59 lines
1.1 KiB
TypeScript
59 lines
1.1 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { FormattedMessage as T } from '@/components';
|
|
|
|
export default [
|
|
{
|
|
text: <T id={'general'} />,
|
|
disabled: false,
|
|
href: '/preferences/general',
|
|
},
|
|
{
|
|
text: <T id={'users'} />,
|
|
href: '/preferences/users',
|
|
},
|
|
{
|
|
text: 'Estimates',
|
|
href: '/preferences/estimates',
|
|
},
|
|
{
|
|
text: 'Invoices',
|
|
href: '/preferences/invoices',
|
|
},
|
|
{
|
|
text: 'Receipts',
|
|
href: '/preferences/receipts',
|
|
},
|
|
{
|
|
text: 'Credit Notes',
|
|
href: '/preferences/credit-notes',
|
|
},
|
|
{
|
|
text: <T id={'currencies'} />,
|
|
href: '/preferences/currencies',
|
|
},
|
|
{
|
|
text: <T id={'branches.label'} />,
|
|
href: '/preferences/branches',
|
|
},
|
|
{
|
|
text: <T id={'warehouses.label'} />,
|
|
href: '/preferences/warehouses',
|
|
},
|
|
{
|
|
text: <T id={'accountant'} />,
|
|
disabled: false,
|
|
href: '/preferences/accountant',
|
|
},
|
|
{
|
|
text: <T id={'items'} />,
|
|
disabled: false,
|
|
href: '/preferences/items',
|
|
},
|
|
{
|
|
text: <T id={'sms_integration.label'} />,
|
|
disabled: false,
|
|
href: '/preferences/sms-message',
|
|
},
|
|
];
|