919b9fb2ed
- Removed unused mobile route for completion of documents. - Updated app routes to reflect the removal of the mobile route. - Enhanced the desktop and mobile pages for completion of documents with improved layout and added TabletDesktopAppbar. - Introduced meeting time handling in TenderDetailActions, integrating new bottom sheet and dialog components for better user interaction. - Added meeting time state management in TenderDetailViewModel. - Cleaned up deprecated files related to meeting time selection.
43 lines
2.0 KiB
Dart
43 lines
2.0 KiB
Dart
class TenderDetailsStrings {
|
||
TenderDetailsStrings._();
|
||
|
||
static const String tenderDetailTitle = 'Tender Detail';
|
||
static const String tenderStatusOpen = 'Open';
|
||
static const String tenderIdLabel = 'ID';
|
||
static const String tenderDeadlineLabel = 'Deadline';
|
||
static const String tenderApprovalText = 'For approval';
|
||
static const String tenderSubmissionText = 'For submission';
|
||
static const String tenderClientLabel = 'Client';
|
||
static const String tenderDeliveryLocationsLabel = 'Delivery Locations';
|
||
static const String tenderReferenceNumberLabel = 'Reference Number';
|
||
static const String tenderLocationLabel = 'Locations';
|
||
static const String tenderPdfDocument = 'PDF , Document';
|
||
static const String tenderMatchProfile = 'Match with your profile';
|
||
static const String tenderIncompleteResume = 'Incomplete Resume Information';
|
||
static const String tenderNoExperience =
|
||
'No experience in e-platform development';
|
||
static const String tenderSubmitButton = 'Submit';
|
||
static const String tenderAcceptButton = 'Accept';
|
||
static const String tenderRejectButton = 'Reject';
|
||
static const String tenderClientExample =
|
||
'Procurement Notice Procurement Notice';
|
||
static const String estimatedValue = 'Estimated Value ';
|
||
static const String duration = 'Duration';
|
||
static const String tenderSubmittedSuccessfully =
|
||
'tender submitted successfully!';
|
||
static const String tenderRejectedSuccessfully =
|
||
'tender rejected successfully!';
|
||
static const String tenderUnrejectedSuccessfully =
|
||
'tender unrejected successfully!';
|
||
static const String tenderUnsubmittedSuccessfully =
|
||
'tender unsubmitted successfully!';
|
||
static const String tenderNoData = 'No tender details available';
|
||
static const String meetingTime = 'Meeting Time';
|
||
static const String apply = 'Apply';
|
||
static const String pleaseReplyBy = 'If you’d like to join, Please Reply by ';
|
||
static const String lastDayToPrepareProposal =
|
||
'Last day to prepare proposal is ';
|
||
static const String meetingTimeSuccessfullySet =
|
||
'meeting time successfully set';
|
||
}
|