21 lines
733 B
Dart
21 lines
733 B
Dart
class LikedTendersStrings {
|
||
LikedTendersStrings._();
|
||
|
||
static const likedTenders = 'Liked tenders';
|
||
static const filter = 'Filter';
|
||
static const selectDateRange = 'Select date range';
|
||
static const status = 'Status';
|
||
static const all = 'All';
|
||
static const dislikeTenders = 'Dislike tenders';
|
||
static const tendersSubmitted = 'Tenders submitted';
|
||
static const confirm = 'Confirm';
|
||
static const startDate = 'YYYY/MM/DD';
|
||
static const endDate = 'YYYY/MM/DD';
|
||
static const approvedTenders = 'Approved tenders';
|
||
static const noLikedTenders = 'You haven’t liked any tenders yet!';
|
||
static const page = 'Page';
|
||
static const selectPage = 'Select Page';
|
||
static const of = 'Of';
|
||
static const apply = 'Apply';
|
||
}
|