mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
33 lines
837 B
TypeScript
33 lines
837 B
TypeScript
// @ts-nocheck
|
|
import intl from 'react-intl-universal';
|
|
|
|
export const filterProjectProfitabilityOptions = [
|
|
{
|
|
key: 'all-projects',
|
|
name: intl.get(
|
|
'project_profitability_summary.filter_projects.all_projects',
|
|
),
|
|
hint: intl.get(
|
|
'project_profitability_summary.filter_projects.all_projects.hint',
|
|
),
|
|
},
|
|
{
|
|
key: 'without-zero-balance',
|
|
name: intl.get(
|
|
'project_profitability_summary.filter_projects.without_zero_balance',
|
|
),
|
|
hint: intl.get(
|
|
'project_profitability_summary.filter_projects.without_zero_balance.hint',
|
|
),
|
|
},
|
|
{
|
|
key: 'with-transactions',
|
|
name: intl.get(
|
|
'project_profitability_summary.filter_projects.with_transactions',
|
|
),
|
|
hint: intl.get(
|
|
'project_profitability_summary.filter_projects.with_transactions.hint',
|
|
),
|
|
},
|
|
];
|