mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
82 lines
1.6 KiB
TypeScript
82 lines
1.6 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { FormattedMessage as T } from '@/components';
|
|
|
|
export const PreferencesMenu = [
|
|
{
|
|
text: <T id={'general'} />,
|
|
disabled: false,
|
|
href: '/preferences/general',
|
|
},
|
|
{
|
|
text: 'Branding',
|
|
disabled: false,
|
|
href: '/preferences/branding',
|
|
},
|
|
// {
|
|
// text: 'Billing',
|
|
// href: '/preferences/billing',
|
|
// },
|
|
{
|
|
text: <T id={'users'} />,
|
|
href: '/preferences/users',
|
|
},
|
|
{
|
|
text: 'Payment Methods',
|
|
href: '/preferences/payment-methods'
|
|
},
|
|
{
|
|
text: <T id={'preferences.estimates'} />,
|
|
href: '/preferences/estimates',
|
|
},
|
|
{
|
|
text: <T id={'preferences.invoices'} />,
|
|
href: '/preferences/invoices',
|
|
},
|
|
{
|
|
text: <T id={'preferences.receipts'} />,
|
|
href: '/preferences/receipts',
|
|
},
|
|
{
|
|
text: <T id={'preferences.creditNotes'} />,
|
|
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: 'Integrations',
|
|
// disabled: false,
|
|
// href: '/preferences/integrations'
|
|
// },
|
|
{
|
|
text: 'API Keys',
|
|
disabled: false,
|
|
href: '/preferences/api-keys',
|
|
},
|
|
// {
|
|
// text: <T id={'sms_integration.label'} />,
|
|
// disabled: false,
|
|
// href: '/preferences/sms-message',
|
|
// },
|
|
];
|