Add i18n foundation (fa-IR/en-US) and localize landing + auth.

Introduce path-prefixed locale routing under app/[lang] with a middleware
that detects locale from cookie/Accept-Language (default fa-IR) and
redirects. Add fa-IR (source of truth) and en-US dictionaries, a server
getDictionary, a client I18nProvider/useT, locale-aware Link + router
helpers, and a language switcher. The root [lang] layout sets html
lang/dir and the per-locale font (Peyda for fa, Inter for en).

Landing sections and the login/register/auth shell now read all copy from
the dictionaries; dashboard localization follows in a later commit.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
keyhan
2026-06-11 12:05:03 +03:30
parent 2b16846f67
commit 34993d417f
48 changed files with 785 additions and 200 deletions
+163
View File
@@ -0,0 +1,163 @@
import type { Dictionary } from './fa';
// English (en-US) dictionary. Must mirror the shape of fa.ts (the source of truth).
const en: Dictionary = {
common: {
appName: 'Abrban',
login: 'Sign in',
register: 'Sign up',
logout: 'Sign out',
signOut: 'Sign out',
dashboard: 'Dashboard',
backHome: 'Back to home',
loading: 'Loading…',
save: 'Save',
cancel: 'Cancel',
delete: 'Delete',
edit: 'Edit',
create: 'Create',
back: 'Back',
search: 'Search',
confirm: 'Confirm',
close: 'Close',
yes: 'Yes',
no: 'No',
currency: 'Toman',
currencyShort: 'T',
},
language: {
label: 'Language',
},
meta: {
title: 'Abrban | Cloud infrastructure, in your control',
description:
'Abrban — a self-service cloud platform on Kubernetes. Ship your app in seconds: managed databases, custom domains, automatic SSL and live logs.',
},
roles: {
admin: 'Admin',
technical: 'Technical',
sales: 'Sales',
},
landing: {
badge: 'Self-service cloud platform',
hero: {
title: 'Abrban',
tagline: 'Cloud infrastructure, in your control',
subtitle:
'Ship your app to Kubernetes in seconds — no server hassle, no DevOps complexity.',
ctaPrimary: 'Start for free',
ctaSecondary: 'Sign in',
scrollHint: 'Dive into the clouds',
},
value: {
lead: 'A ',
highlight: 'self-service PaaS',
tail: ' on Kubernetes — all the power of cloud infrastructure, without the storm of complexity.',
body: 'Abrban handles the hard DevOps layers for you, so you can focus only on your product.',
},
how: {
title: 'As simple as three steps',
steps: [
{ n: '1', title: 'Hand us your code', desc: 'Connect your repository or app.' },
{ n: '2', title: 'We build it', desc: 'Abrban automatically builds and deploys to Kubernetes.' },
{ n: '3', title: 'Go live', desc: 'Domain and SSL are ready; your app goes live.' },
],
},
features: {
title: 'Everything you need to build',
subtitle: 'A complete toolkit to ship and maintain your app.',
items: [
{ title: 'Lightning deploys', desc: 'Ship Node.js, Laravel and WordPress with one click; automatic build and release.' },
{ title: 'Managed databases', desc: 'PostgreSQL, MySQL, Redis, RabbitMQ and Elasticsearch — ready and reliable.' },
{ title: 'Automatic SSL', desc: 'Connect a custom domain; SSL certificates are issued and renewed automatically.' },
{ title: 'Preview links', desc: 'Get a stable TLS Preview URL for every deploy and test fast.' },
{ title: 'Live logs', desc: 'Follow build and runtime logs live, the moment they happen.' },
{ title: 'Snapshots & backups', desc: 'Snapshot your app state and restore it whenever you want.' },
{ title: 'Transparent billing', desc: 'Prepaid wallet, precise invoices and real-time usage — no surprises.' },
{ title: 'Persian support', desc: 'A support team and ticketing system, in Persian and always by your side.' },
],
},
trust: {
title: 'Why teams trust Abrban',
items: [
{ kpi: '< 60 sec', label: 'Average deploy time' },
{ kpi: '99.9%', label: 'Infrastructure uptime' },
{ kpi: 'Auto TLS', label: 'Security by default' },
{ kpi: 'Iran-native', label: 'Optimized for Iranian users' },
],
},
finalCta: {
titleLead: 'The sky is clear; its time to ',
titleHighlight: 'go live',
titleTail: ' with your app.',
body: 'Create your account now and experience your first deploy.',
ctaPrimary: 'Get started now',
ctaSecondary: 'Dashboard',
},
footer: {
copyright: '© Abrban — All rights reserved',
},
},
auth: {
backHome: 'Back to home',
login: {
title: 'Welcome back',
subtitle: 'Sign in to your Abrban account',
altPrompt: 'Dont have an account yet?',
altLabel: 'Sign up',
email: 'Email',
password: 'Password',
submit: 'Sign in',
submitting: 'Signing in…',
success: 'Signed in successfully!',
error: 'Sign in failed',
},
register: {
title: 'Create account',
subtitle: 'Ship your first app in a few minutes',
altPrompt: 'Already have an account?',
altLabel: 'Sign in',
firstName: 'First name',
firstNamePlaceholder: 'e.g. Ali',
lastName: 'Last name',
lastNamePlaceholder: 'e.g. Rezaei',
email: 'Email',
password: 'Password',
passwordPlaceholder: 'At least 8 characters',
submit: 'Create account',
submitting: 'Creating account…',
success: 'Account created successfully!',
error: 'Sign up failed',
},
},
nav: {
sectionAdmin: 'Admin',
sectionTechnical: 'Technical',
sectionSales: 'Sales',
walletBalanceTitle: 'Wallet balance',
dashboard: 'Dashboard',
applications: 'Applications',
services: 'Databases & Services',
logs: 'Logs',
newDeploy: 'New Deploy',
wallet: 'Wallet',
invoices: 'Invoices',
tickets: 'Tickets',
users: 'Users',
allApplications: 'All Applications',
billingPlans: 'Billing Plans',
clusters: 'Clusters',
clusterPools: 'Cluster Pools',
allTickets: 'All Tickets',
technicalTickets: 'Technical Tickets',
salesTickets: 'Sales Tickets',
},
};
export default en;