Merge pull request #80 from FRE-Informatica/fix/fd-1057
FIX/FD-1057 - Inconsistências de tradução entre cabeçalho-item para menu-pagina
This commit is contained in:
commit
7aac65b289
|
@ -107,7 +107,7 @@ class ProvisionalHistoryState extends State<ProvisionalHistoryPage> {
|
|||
Widget _title(BuildContext context, FlutterFlowTheme theme) {
|
||||
return Text(
|
||||
FFLocalizations.of(context).getVariableText(
|
||||
ptText: 'Histórico Provisório',
|
||||
ptText: 'Consultar Agendas',
|
||||
enText: 'Provisional History',
|
||||
),
|
||||
style: theme.headlineMedium.override(
|
||||
|
|
|
@ -51,7 +51,9 @@ class _DeliveryScheduleState extends State<DeliverySchedule> {
|
|||
),
|
||||
title: Text(
|
||||
FFLocalizations.of(context).getVariableText(
|
||||
enText: 'Delivery Schedule', ptText: 'Agendar Entregas'),
|
||||
enText: 'Delivery Schedule',
|
||||
ptText: 'Agendar Entregas',
|
||||
),
|
||||
style: FlutterFlowTheme.of(context).headlineMedium.override(
|
||||
fontFamily: 'Nunito',
|
||||
color: FlutterFlowTheme.of(context).primaryText,
|
||||
|
|
|
@ -35,7 +35,7 @@ class MenuEntry implements BaseModule {
|
|||
key: 'FRE-HUB-AGE-PROV-DELIVERY',
|
||||
icon: Icons.sports_motorsports_outlined,
|
||||
name: FFLocalizations.of(navigatorKey.currentContext!).getVariableText(
|
||||
ptText: 'Agendar Delivery',
|
||||
ptText: 'Agendar Entregas',
|
||||
enText: 'Schedule Delivery',
|
||||
),
|
||||
route: '/deliverySchedule',
|
||||
|
@ -61,16 +61,6 @@ class MenuEntry implements BaseModule {
|
|||
route: '/scheduleCompleteVisitPage',
|
||||
types: [MenuEntryType.Home, MenuEntryType.Drawer],
|
||||
),
|
||||
MenuEntry(
|
||||
key: 'FRE-HUB-PROVISIONAL-HISTORY',
|
||||
icon: Icons.person_search_outlined,
|
||||
name: FFLocalizations.of(navigatorKey.currentContext!).getVariableText(
|
||||
ptText: 'Consultar Agendas',
|
||||
enText: 'Provisional History',
|
||||
),
|
||||
route: '/provisionalHistoryPage',
|
||||
types: [MenuEntryType.Home, MenuEntryType.Drawer],
|
||||
),
|
||||
MenuEntry(
|
||||
key: 'FRE-HUB-RESIDENTS',
|
||||
icon: Icons.groups,
|
||||
|
@ -179,6 +169,16 @@ class MenuEntry implements BaseModule {
|
|||
route: '/liberationHistory',
|
||||
types: [MenuEntryType.Home, MenuEntryType.Drawer],
|
||||
),
|
||||
MenuEntry(
|
||||
key: 'FRE-HUB-PROVISIONAL-HISTORY',
|
||||
icon: Icons.person_search_outlined,
|
||||
name: FFLocalizations.of(navigatorKey.currentContext!).getVariableText(
|
||||
ptText: 'Consultar Agendas',
|
||||
enText: 'Provisional History',
|
||||
),
|
||||
route: '/provisionalHistoryPage',
|
||||
types: [MenuEntryType.Home, MenuEntryType.Drawer],
|
||||
),
|
||||
MenuEntry(
|
||||
key: 'FRE-HUB-MESSAGES',
|
||||
icon: Icons.chat_outlined,
|
||||
|
|
Loading…
Reference in New Issue