82 lines
4.6 KiB
Dart
82 lines
4.6 KiB
Dart
class AppStrings {
|
||
AppStrings._();
|
||
// App Titles
|
||
static const String appName = 'My Awesome App';
|
||
static const String loginTitle = 'Welcome Back';
|
||
|
||
// Labels and Buttons
|
||
static const String signupButton = 'Create Account';
|
||
static const String forgotPassword = 'Forgot Password?';
|
||
static const String emailHint = 'Email address';
|
||
static const String passwordHint = 'Password';
|
||
|
||
// Error Messages
|
||
static const String loginFailed =
|
||
'Login failed. Please check your credentials.';
|
||
static const String networkError = 'Network error. Please try again.';
|
||
|
||
//Login
|
||
static const signInTitle = 'Sign In';
|
||
static const signInSubtitle = 'Enter valid username & password to continue';
|
||
static const usernameLabel = 'User Name';
|
||
static const passwordLabel = 'Password';
|
||
static const loginButton = 'Login';
|
||
|
||
//Home
|
||
static const String home = 'Home';
|
||
static const String partnership = 'Partnership';
|
||
static const String selfApply = 'Self-apply';
|
||
static const String contracting = 'Contracting';
|
||
static const String tenderSubmitted = 'Tenders submitted';
|
||
static const String approvedTenders = 'Approved tenders';
|
||
static const String tenderValue = 'Tender Value';
|
||
static const String thunderStatus = 'Thunder status';
|
||
static const String yourTenders = 'Your tenders';
|
||
static const String welcome = 'Welcome';
|
||
|
||
//Tenders
|
||
static const String tendersTitle = 'Tenders';
|
||
static const String tenderSeeMore = 'See More';
|
||
|
||
//profile
|
||
static const String profile = 'Profile';
|
||
|
||
//your tenders
|
||
static const String yourTendersTitle = 'Your tenders';
|
||
|
||
// Tender Detail Page
|
||
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 tenderLocationCountry = 'UK';
|
||
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 tenderRejectButton = 'Reject';
|
||
static const String tenderDateExample = '2025-05-21';
|
||
static const String tenderTitleExample =
|
||
'Operation, support and further development of open e-platform Operation, support and further development of open e-platform';
|
||
static const String tenderIdExample = 'JNDFKMDV-100-JF';
|
||
static const String tenderApprovalDateExample = '2025-05-21';
|
||
static const String tenderSubmissionDateExample = '2025-05-21';
|
||
static const String tenderClientExample =
|
||
'Procurement Notice Procurement Notice';
|
||
static const String tenderDeliveryLocationExample = 'Norrbotten County';
|
||
static const String tenderReferenceNumberExample = 'KLF 2025/120';
|
||
static const String tenderDescriptionExample =
|
||
'Luleå Municipality is procuring on behalf of Norrbotten’s e-board (all municipalities in Norrbotten)...';
|
||
static const String tenderMatchPercentageExample = '75%';
|
||
static const String locationDescription =
|
||
'Luleå Municipality is procuring on behalf of Norrbotten’s e-board (all municipalities in Norrbotten).
The procurement includes operation, support, and further development of the existing open e-platform.
No additional information, amendments, or answers to questions will be provided after June 16.o additional information, amendments, or answers to questions will be provided after June 16.o additional information, amendments, or answers to questions will be provided after June 16.website: www.tenders.com Lorem ipsum is amet Luleå Municipality is procuring on behalf of Norrbotten’s e-board (all municipalities in Norrbotten).
The procurement includes operation, support, and further development of the existing open e-platform.
No additional information, amendments, or answers to questions will be provided after June 16. o additional information, amendments, or answers to questions will be provided after June 16. o additional information, amendments, or answers to questions will be provided after June 16.website: www.tenders.com';
|
||
}
|