Files
hum-flutter/lib/core/constants/app_text.dart
2025-12-12 14:31:36 -05:00

66 lines
2.2 KiB
Dart

const appTitle = 'HUM';
// GENERAL
const doneLabel = 'Done';
const doneCancel = 'Cancel';
const doneBack = 'Back';
// HOME PAGE
const homeViewSearchPlaceholder = 'Ask me anything...';
const homeViewVoiceTitle = 'Tap the image, chat with HUM AI';
const homeViewVoiceMessage = 'Your intelligent rental marketplace';
const homeBTNBrowse = 'Show Listings';
const homeViewAI = 'HUM AI';
const homeViewGrid = 'GRID';
const homeViewMap = 'SHOW MAP';
const homeViewIdeas = [
'💡 Ask: "Find gaming gear near me"',
'💡 Ask: "What is trending in electronics"',
'💡 Try: "Show me constructions tools."',
'💡 Try: "I need camera gear for a wedding"',
];
// HOME FILTERS
const filterLocation = 'Location';
const filterLocationPlaceholder = 'Type a city or location...';
const filterDates = 'Dates';
const filterLabelStartDate = 'Start Date';
const filterLabelEndDate = 'End Date';
const filterPricing = 'Price';
// LISTINGS
const listingAddTitle = 'Add Your Item';
const listingAddMessage =
"Snatch a photo, we'll fill in the details for you. You can edit before posting.";
const listingTakePhoto = 'Take a photo';
const listingTakePhotoDescription = 'Use your camera';
const listingChoosePhoto = 'Choose from Library';
const listingChoosePhotoDescription = 'Select existing photo';
const listingLabelFeatures = 'Features';
const listingLabelOwner = 'Owner';
const listingLabelCondition = 'Condition: ';
const listingConditionGood = 'Good';
const listingActionMessage = 'Message';
const listingActionRent = 'Rent';
// AUTH
const authTitleSignIn = 'Welcome Back';
const authTitleSignUp = 'Create Account';
const authPlaceholderDisplayName = 'Display Name';
const authPlaceholderEmail = 'Email';
const authPlaceholderPassword = 'Password';
const authSignIn = 'Sign In';
const authSignUp = 'Sign Up';
const authModeSignUp = 'Need an account? Sign Up';
const authModeSignIn = 'Got an account? Sign In';
const authSignGoogle = 'Sign in with Google';
const authSignApple = 'Sign in with Apple';
// PROFILE
const profileTitle = 'Profile';
const profileBtnSignOut = 'Sign Out';
const profileStatRental = 'Rentals';
const profileStatListings = 'Listings';
const profileStatEarnings = 'Earnings';
const profileStatFavorites = 'Favorites';