Files
tm_app/lib/views/tenders/strings/tenders_strings.dart
T
amirrezaghabeli e03c87f99d Add board navigation and assets
- Introduced new board-related assets in AssetsManager.
- Updated NetworkManager to increase connection and receive timeouts to 20 seconds.
- Added BoardRouteData for navigation to the BoardScreen.
- Updated app routes to include the new board route.
- Modified DesktopNavigationWidget to include a navigation item for the board.
- Added a new string constant for the board label in TendersStrings.
2025-11-10 16:14:50 +03:30

31 lines
1.2 KiB
Dart

class TendersStrings {
TendersStrings._();
static const String tendersTitle = 'Tenders';
static const String tenderSeeMore = 'See More';
static const String reject = 'Reject';
static const String submit = 'Submit';
static const String dislike = 'Dislike';
static const String like = 'Like';
static const String tenderDeadlineLabel = 'Deadline :';
static const String contracts = 'Contracts';
static const String notifications = 'Notifications';
static const String of = 'Of';
static const String page = 'Page';
static const String all = 'All';
static const String read = 'Read';
static const String selectDataRange = 'Select date range';
static const String unread = 'Unread';
static const String search = 'Search';
static const String status = 'Status';
static const String confirm = 'Confirm';
static const String filter = 'Filter';
static const String endDate = 'end Date';
static const String startDate = 'Start Date';
static const String sort = 'Sort';
static const String mostOfTheTime = 'Most of the time';
static const String minimumTime = 'Minimum time';
static const String tenderBudgetLabel = 'Budget :';
static const String board = 'Board';
}