All checks were successful
- Fix platform-grouped merchant sidebar menu with core items at root level - Add merchant store management (detail page, create store, team page) - Fix store settings 500 error by removing dead stripe/API tab - Move onboarding translations to module-owned locale files - Fix onboarding banner i18n with server-side rendering + context inheritance - Refactor login language selectors to use languageSelector() function (LANG-002) - Move HTTPException handling to global exception handler in merchant routes (API-003) - Add language selector to all login pages and portal headers - Fix customer module: drop order stats from customer model, add to orders module - Fix admin menu config visibility for super admin platform context - Fix storefront auth and layout issues - Add missing i18n translations for onboarding steps (en/fr/de/lb) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
101 lines
3.5 KiB
JSON
101 lines
3.5 KiB
JSON
{
|
|
"loyalty": {
|
|
"module": {
|
|
"name": "Loyalty Programs",
|
|
"description": "Stamp-based and points-based loyalty programs with wallet integration"
|
|
},
|
|
"program": {
|
|
"title": "Loyalty Program",
|
|
"create": "Create Program",
|
|
"edit": "Edit Program",
|
|
"activate": "Activate",
|
|
"deactivate": "Deactivate",
|
|
"type": {
|
|
"stamps": "Stamps",
|
|
"points": "Points",
|
|
"hybrid": "Hybrid"
|
|
}
|
|
},
|
|
"card": {
|
|
"title": "Loyalty Card",
|
|
"number": "Card Number",
|
|
"qr_code": "QR Code",
|
|
"enroll": "Enroll Customer",
|
|
"deactivate": "Deactivate Card"
|
|
},
|
|
"stamp": {
|
|
"title": "Stamps",
|
|
"add": "Add Stamp",
|
|
"redeem": "Redeem Reward",
|
|
"count": "{current} of {target}",
|
|
"until_reward": "{count} until reward"
|
|
},
|
|
"points": {
|
|
"title": "Points",
|
|
"earn": "Earn Points",
|
|
"redeem": "Redeem Points",
|
|
"balance": "{count} points",
|
|
"per_euro": "{points} points per euro"
|
|
},
|
|
"pin": {
|
|
"title": "Staff PINs",
|
|
"create": "Create PIN",
|
|
"edit": "Edit PIN",
|
|
"unlock": "Unlock PIN",
|
|
"locked": "PIN locked until {time}"
|
|
},
|
|
"wallet": {
|
|
"google": "Add to Google Wallet",
|
|
"apple": "Add to Apple Wallet"
|
|
},
|
|
"stats": {
|
|
"title": "Statistics",
|
|
"total_cards": "Total Cards",
|
|
"active_cards": "Active Cards",
|
|
"stamps_issued": "Stamps Issued",
|
|
"rewards_redeemed": "Rewards Redeemed"
|
|
},
|
|
"errors": {
|
|
"program_not_found": "Loyalty program not found",
|
|
"program_inactive": "Loyalty program is not active",
|
|
"card_not_found": "Loyalty card not found",
|
|
"card_inactive": "Loyalty card is not active",
|
|
"cooldown": "Please wait {minutes} minutes before next stamp",
|
|
"daily_limit": "Daily stamp limit of {limit} reached",
|
|
"insufficient_stamps": "Need {required} stamps, have {current}",
|
|
"insufficient_points": "Need {required} points, have {current}",
|
|
"pin_required": "Staff PIN is required",
|
|
"pin_invalid": "Invalid staff PIN",
|
|
"pin_locked": "PIN locked due to too many failed attempts"
|
|
}
|
|
},
|
|
"permissions": {
|
|
"view_programs": "View Programs",
|
|
"view_programs_desc": "View loyalty programs and details",
|
|
"manage_programs": "Manage Programs",
|
|
"manage_programs_desc": "Create and configure loyalty programs",
|
|
"view_rewards": "View Rewards",
|
|
"view_rewards_desc": "View loyalty rewards and redemptions",
|
|
"manage_rewards": "Manage Rewards",
|
|
"manage_rewards_desc": "Create and manage loyalty rewards"
|
|
},
|
|
"menu": {
|
|
"loyalty": "Loyalty",
|
|
"loyalty_programs": "Loyalty Programs",
|
|
"programs": "Programs",
|
|
"analytics": "Analytics",
|
|
"dashboard": "Dashboard",
|
|
"terminal": "Terminal",
|
|
"customer_cards": "Customer Cards",
|
|
"statistics": "Statistics",
|
|
"overview": "Overview",
|
|
"settings": "Settings"
|
|
},
|
|
"onboarding": {
|
|
"create_program": {
|
|
"title": "Create a loyalty program",
|
|
"description": "Set up your first stamp or points program"
|
|
}
|
|
}
|
|
}
|