50e4f43738
Implement company AI onboarding/recommendation models, services, repository, and tender UI integration with supporting tests. Co-authored-by: Cursor <cursoragent@cursor.com>
49 lines
2.1 KiB
Dart
49 lines
2.1 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';
|
||
|
||
// 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 =
|
||
'We’re 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';
|
||
}
|