Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/uni_app/lib/generated/intl/messages_en.dart
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,9 @@ class MessageLookup extends MessageLookupByLibrary {
"leave_feedback": MessageLookupByLibrary.simpleMessage("Leave feedback"),
"lectures": MessageLookupByLibrary.simpleMessage("Lectures"),
"library": MessageLookupByLibrary.simpleMessage("Library"),
"library_building": MessageLookupByLibrary.simpleMessage(
"Library Building",
Comment thread
mariana2103 marked this conversation as resolved.
Outdated
),
"library_occupation": MessageLookupByLibrary.simpleMessage(
"Library Occupation",
),
Expand Down
3 changes: 3 additions & 0 deletions packages/uni_app/lib/generated/intl/messages_pt_PT.dart
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,9 @@ class MessageLookup extends MessageLookupByLibrary {
"leave_feedback": MessageLookupByLibrary.simpleMessage("Feedback"),
"lectures": MessageLookupByLibrary.simpleMessage("Aulas"),
"library": MessageLookupByLibrary.simpleMessage("Biblioteca"),
"library_building": MessageLookupByLibrary.simpleMessage(
"Edifício da Biblioteca",
Comment thread
mariana2103 marked this conversation as resolved.
Outdated
),
"library_occupation": MessageLookupByLibrary.simpleMessage(
"Ocupação da Biblioteca",
),
Expand Down
10 changes: 10 additions & 0 deletions packages/uni_app/lib/generated/l10n.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions packages/uni_app/lib/l10n/intl_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,8 @@
"@available_elements": {},
"library": "Library",
"@library": {},
"library_building": "Library Building",
"@library_building": {},
"restaurants": "Restaurants",
"@restaurants": {},
"tomorrows_meals": "Tomorrow's Menu",
Expand Down
2 changes: 2 additions & 0 deletions packages/uni_app/lib/l10n/intl_pt_PT.arb
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,8 @@
"@available_elements": {},
"library": "Biblioteca",
"@library": {},
"library_building": "Edifício da Biblioteca",
"@library_building": {},
"restaurants": "Restaurantes",
"@restaurants": {},
"tomorrows_meals": "Menu de Amanhã",
Expand Down
7 changes: 7 additions & 0 deletions packages/uni_app/lib/view/faculty/widgets/service_cards.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ class AllServiceCardsState extends State<AllServiceCards> {
final width = MediaQuery.of(context).size.width;

final services = <Widget>[
ServicesCard(
name: S.of(context).library,
openingHours: const ['8:30h - 19:30h'],
location: S.of(context).library_building,
telephone: '+351 225 081 442',
email: 'biblioteca@fe.up.pt',
),
ServicesCard(
name: S.of(context).goi,
openingHours: const ['9:30h - 15:30h'],
Expand Down
Loading