Tasks
This commit is contained in:
parent
7e8414493a
commit
2ae7c4ca0a
|
|
@ -448,7 +448,7 @@ class InvoiceEditDesktopState extends State<InvoiceEditDesktop>
|
||||||
(countProducts > 0 ? ' ($countProducts)' : ''),
|
(countProducts > 0 ? ' ($countProducts)' : ''),
|
||||||
),
|
),
|
||||||
Tab(
|
Tab(
|
||||||
text: localization.services +
|
text: localization.tasks +
|
||||||
(countServices > 0 ? ' ($countServices)' : ''),
|
(countServices > 0 ? ' ($countServices)' : ''),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@ mixin LocalizationsProvider on LocaleCodeAware {
|
||||||
static final Map<String, Map<String, String>> _localizedValues = {
|
static final Map<String, Map<String, String>> _localizedValues = {
|
||||||
'en': {
|
'en': {
|
||||||
// STARTER: lang key - do not remove comment
|
// STARTER: lang key - do not remove comment
|
||||||
'services': 'Services',
|
|
||||||
'invoice_task_timelog': 'Invoice Task Timelog',
|
'invoice_task_timelog': 'Invoice Task Timelog',
|
||||||
'invoice_task_timelog_help': 'Add time details to the invoice line items',
|
'invoice_task_timelog_help': 'Add time details to the invoice line items',
|
||||||
'auto_start_tasks_help': 'Start tasks before saving',
|
'auto_start_tasks_help': 'Start tasks before saving',
|
||||||
|
|
@ -4786,9 +4785,6 @@ mixin LocalizationsProvider on LocaleCodeAware {
|
||||||
String get invoiceTaskTimelogHelp =>
|
String get invoiceTaskTimelogHelp =>
|
||||||
_localizedValues[localeCode]['invoice_task_timelog_help'] ?? '';
|
_localizedValues[localeCode]['invoice_task_timelog_help'] ?? '';
|
||||||
|
|
||||||
String get services =>
|
|
||||||
_localizedValues[localeCode]['services'] ?? '';
|
|
||||||
|
|
||||||
|
|
||||||
String lookup(String key) {
|
String lookup(String key) {
|
||||||
final lookupKey = toSnakeCase(key);
|
final lookupKey = toSnakeCase(key);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue