Files
tm_app/lib/core/constants/strings.dart
T

117 lines
4.8 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';
//forgot password
static const String forgotPasswordTitle = 'Forgot Password';
static const String forgotPasswordSubtitle =
'Enter your registered email and company ID and submit your request.';
static const String emailAddressHint = 'Email Address';
static const String backToSignInButton = 'Back to Sign In';
static const String resetLink = 'Reset Link';
//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';
static const filter = 'Filter';
static const selectDateRange = 'Select date range';
static const status = 'Status';
static const all = 'All';
static const likeTenders = 'Like tenders';
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';
// 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 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';
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';
}