92 lines
3.6 KiB
Dart
92 lines
3.6 KiB
Dart
class AppStrings {
|
|
AppStrings._();
|
|
|
|
static const String noData = 'No data';
|
|
|
|
// 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 likedTenders = 'Liked Tenders';
|
|
static const String yourTenders = 'Your tenders';
|
|
static const String recommendation = 'Recommendation';
|
|
static const String welcome = 'Welcome';
|
|
static const String tenderDeadline = 'Deadline';
|
|
static const String recommendedTenders = 'Recommended Tenders';
|
|
|
|
//Tenders
|
|
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';
|
|
|
|
//profile
|
|
static const String profile = 'Profile';
|
|
static const String settings = 'Settings';
|
|
static const String appTheme = 'App Theme';
|
|
static const String companyName = 'Company Name';
|
|
static const String nationalId = 'National ID';
|
|
static const String registrationNumber = 'Registration No.';
|
|
static const String businessType = 'Business Type';
|
|
static const String founded = 'Founded';
|
|
static const String logout = 'Logout';
|
|
|
|
//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 tenderClientExample =
|
|
'Procurement Notice Procurement Notice';
|
|
|
|
static const String estimatedValue = 'Estimated Value ';
|
|
static const String duration = 'Duration';
|
|
}
|