Files
tm_app/lib/views/tenders/strings/tenders_strings.dart
T
AmirReza Jamali 50e4f43738 feat: add AI recommendations flow for tenders
Implement company AI onboarding/recommendation models, services, repository, and tender UI integration with supporting tests.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-16 11:47:52 +03:30

49 lines
2.1 KiB
Dart
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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';
// Recommended (AI) tab
static const String allTab = 'All';
static const String recommendedTab = 'Recommended';
static const String recommendedMatchLabel = 'Match';
static const String recommendedRankPrefix = '#';
static const String recommendedStillLearningTitle =
'Were still learning about your company';
static const String recommendedStillLearningBody =
'Recommendations will appear here once we finish analyzing your company. Check back soon.';
static const String recommendedEmptyTitle = 'No recommendations yet';
static const String recommendedEmptyBody =
'Add your company documents or website to get personalized tender recommendations.';
static const String recommendedError =
'Could not load recommendations. Please try again.';
static const String recommendedFallbackNotice =
'Showing keyword-based suggestions while AI recommendations are unavailable.';
static const String retry = 'Retry';
}