Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Refactor/app shell #92

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
fulleni merged 26 commits into main from refactor/app-shell
Sep 25, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
c2eb002
feat(l10n): add Arabic and English translations for about icon and cl...
fulleni Sep 25, 2025
3a32342
feat(app_shell): enhance navigation rail and simplify app bar
fulleni Sep 25, 2025
c7ada33
refactor(app_configuration): improve app configuration page layout
fulleni Sep 25, 2025
97ebae9
refactor(content_management): improve code formatting and structure
fulleni Sep 25, 2025
61187cf
style: format
fulleni Sep 25, 2025
d966b03
style: format
fulleni Sep 25, 2025
619dc4b
feat(settings): add about icon to settings page
fulleni Sep 25, 2025
9a4b38a
feat(ui): add about icon widget
fulleni Sep 25, 2025
2c5b818
feat(ui): add user navigation rail footer widget
fulleni Sep 25, 2025
241696a
feat(shared): add exports for new widgets
fulleni Sep 25, 2025
066fed5
refactor(app_shell): restructure navigation rail and app bar
fulleni Sep 25, 2025
6f532dd
feat(app_configuration): move about icon to app bar title
fulleni Sep 25, 2025
86b857e
feat(ui): add about icon to app bar titles and update user navigation...
fulleni Sep 25, 2025
a64cdab
style(app_configuration): adjust title spacing and remove font style
fulleni Sep 25, 2025
f972771
style(content_management): increase spacing between title and icon
fulleni Sep 25, 2025
d314ad0
style(settings): increase spacing between title and icon
fulleni Sep 25, 2025
6f87789
feat(AboutIcon): customize icon color and size
fulleni Sep 25, 2025
657623e
feat(app_shell): refactor navigation rail and add settings/logout tiles
fulleni Sep 25, 2025
11a5173
refactor: remove unused UserNavigationRailFooter widget
fulleni Sep 25, 2025
850f704
feat(navigator): extend navigator in more screen sizes
fulleni Sep 25, 2025
e8150dc
refactor(widgets): remove unused export
fulleni Sep 25, 2025
3c38f6d
style: misc
fulleni Sep 25, 2025
02502fb
style(content_management): decrease column spacing in headlines page
fulleni Sep 25, 2025
e51691f
style(content_management): improve layout and spacing of action buttons
fulleni Sep 25, 2025
ff69e0d
style(content_management): adjust padding for filter pages
fulleni Sep 25, 2025
016306c
style(spacing): adjust spacing between title and About icon
fulleni Sep 25, 2025
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
Next Next commit
feat(l10n): add Arabic and English translations for about icon and cl...
...ose button
- Add Arabic translations for "aboutIconTooltip" and "closeButtonText" in app_ar.arb
- Add English translations for "aboutIconTooltip" and "closeButtonText" in app_en.arb
- Include descriptions for new translations to provide context for translators
  • Loading branch information
fulleni committed Sep 25, 2025
commit c2eb002ebe2adb770b453f709f6c4744d9ab85be
12 changes: 12 additions & 0 deletions lib/l10n/app_localizations.dart
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -2713,6 +2713,18 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'No results found with current filters. Try resetting them.'**
String get noResultsWithCurrentFilters;

/// Tooltip for the information icon that shows page description.
///
/// In en, this message translates to:
/// **'About this page'**
String get aboutIconTooltip;

/// Text for the close button in a dialog.
///
/// In en, this message translates to:
/// **'Close'**
String get closeButtonText;
}

class _AppLocalizationsDelegate
Expand Down
6 changes: 6 additions & 0 deletions lib/l10n/app_localizations_ar.dart
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -1448,4 +1448,10 @@ class AppLocalizationsAr extends AppLocalizations {
@override
String get noResultsWithCurrentFilters =>
'لم يتم العثور على نتائج باستخدام الفلاتر الحالية. حاول إعادة تعيينها.';

@override
String get aboutIconTooltip => 'حول هذه الصفحة';

@override
String get closeButtonText => 'إغلاق';
}
6 changes: 6 additions & 0 deletions lib/l10n/app_localizations_en.dart
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -1453,4 +1453,10 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get noResultsWithCurrentFilters =>
'No results found with current filters. Try resetting them.';

@override
String get aboutIconTooltip => 'About this page';

@override
String get closeButtonText => 'Close';
}
8 changes: 8 additions & 0 deletions lib/l10n/arb/app_ar.arb
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -1835,5 +1835,13 @@
"noResultsWithCurrentFilters": "لم يتم العثور على نتائج باستخدام الفلاتر الحالية. حاول إعادة تعيينها.",
"@noResultsWithCurrentFilters": {
"description": "Message displayed when no results are found due to active filters, prompting the user to reset them."
},
"aboutIconTooltip": "حول هذه الصفحة",
"@aboutIconTooltip": {
"description": "Tooltip for the information icon that shows page description."
},
"closeButtonText": "إغلاق",
"@closeButtonText": {
"description": "Text for the close button in a dialog."
}
}
8 changes: 8 additions & 0 deletions lib/l10n/arb/app_en.arb
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -1831,5 +1831,13 @@
"noResultsWithCurrentFilters": "No results found with current filters. Try resetting them.",
"@noResultsWithCurrentFilters": {
"description": "Message displayed when no results are found due to active filters, prompting the user to reset them."
},
"aboutIconTooltip": "About this page",
"@aboutIconTooltip": {
"description": "Tooltip for the information icon that shows page description."
},
"closeButtonText": "Close",
"@closeButtonText": {
"description": "Text for the close button in a dialog."
}
}

AltStyle によって変換されたページ (->オリジナル) /