mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
feat(lang): financial statement.
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
import { formatMessage } from 'services/intl';
|
||||
|
||||
export default [
|
||||
{ name: 'US Dollar', code: 'USD' },
|
||||
{ name: 'Euro', code: 'EUR' },
|
||||
{ name: 'Libyan Dinar ', code: 'LYD' },
|
||||
]
|
||||
{ name: formatMessage({ id: 'us_dollar' }), code: 'USD' },
|
||||
{ name: formatMessage({ id: 'euro' }), code: 'EUR' },
|
||||
{ name: formatMessage({ id: 'libyan_diner' }), code: 'LYD' },
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
import { formatMessage } from 'services/intl';
|
||||
|
||||
export default [
|
||||
{ name: 'English', value: 'en' },
|
||||
{ name: 'Arabic', value: 'ar' },
|
||||
];
|
||||
{ name: formatMessage({ id: 'english' }), value: 'en' },
|
||||
{ name: formatMessage({ id: 'arabic' }), value: 'ar' },
|
||||
];
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
import { formatMessage } from 'services/intl';
|
||||
|
||||
export const moneyFormat = [
|
||||
{ key: 'total', text: 'Total rows' },
|
||||
{ key: 'always', text: 'Always' },
|
||||
{ key: 'none', text: 'None' },
|
||||
{ key: 'total', text: formatMessage({ id: 'total_rows' }) },
|
||||
{ key: 'always', text: formatMessage({ id: 'always' }) },
|
||||
{ key: 'none', text: formatMessage({ id: 'none' }) },
|
||||
];
|
||||
|
||||
export const negativeFormat = [
|
||||
|
||||
Reference in New Issue
Block a user