diff --git a/src/components/internationalization/ar.json b/src/components/internationalization/ar.json
index 59249bc..a39fefd 100644
--- a/src/components/internationalization/ar.json
+++ b/src/components/internationalization/ar.json
@@ -744,6 +744,27 @@
"benefit1": "احصل على توصيات الخبراء خلال 24 ساعة",
"benefit2": "خارطة طريق مخصصة للمشروع والجدول الزمني",
"benefit3": "الوصول المباشر إلى استشاريينا الكبار",
- "submit": "احصل على مساعدة الخبراء"
+ "submit": "احصل على مساعدة الخبراء",
+ "projectTypes": {
+ "website": "تطوير موقع إلكتروني",
+ "ecommerce": "منصة تجارة إلكترونية",
+ "mobile": "تطبيق جوال",
+ "custom": "برنامج مخصص",
+ "consulting": "استشارات تقنية"
+ },
+ "budgets": {
+ "lt1000": "أقل من 1,000$",
+ "1000to5000": "1,000$ - 5,000$",
+ "5000to10000": "5,000$ - 10,000$",
+ "gt10000": "10,000$ فأكثر"
+ },
+ "timelines": {
+ "asap": "في أقرب وقت",
+ "oneMonth": "خلال شهر",
+ "oneToThreeMonths": "1-3 أشهر",
+ "threeToSixMonths": "3-6 أشهر"
+ },
+ "toggleMonthlyAria": "تبديل الفوترة الشهرية",
+ "toggleYearlyAria": "تبديل الفوترة السنوية"
}
}
\ No newline at end of file
diff --git a/src/components/internationalization/en.json b/src/components/internationalization/en.json
index aeac459..3010eeb 100644
--- a/src/components/internationalization/en.json
+++ b/src/components/internationalization/en.json
@@ -744,6 +744,27 @@
"benefit1": "Get expert recommendations within 24 hours",
"benefit2": "Personalized project roadmap and timeline",
"benefit3": "Direct access to our senior consultants",
- "submit": "Get Expert Help"
+ "submit": "Get Expert Help",
+ "projectTypes": {
+ "website": "Website Development",
+ "ecommerce": "E-commerce Platform",
+ "mobile": "Mobile Application",
+ "custom": "Custom Software",
+ "consulting": "Technical Consulting"
+ },
+ "budgets": {
+ "lt1000": "Less than $1,000",
+ "1000to5000": "$1,000 - $5,000",
+ "5000to10000": "$5,000 - $10,000",
+ "gt10000": "$10,000+"
+ },
+ "timelines": {
+ "asap": "ASAP",
+ "oneMonth": "Within 1 month",
+ "oneToThreeMonths": "1-3 months",
+ "threeToSixMonths": "3-6 months"
+ },
+ "toggleMonthlyAria": "Toggle monthly billing",
+ "toggleYearlyAria": "Toggle yearly billing"
}
}
\ No newline at end of file
diff --git a/src/components/marketing/expert-modal.tsx b/src/components/marketing/expert-modal.tsx
index 29ccd02..af3c847 100644
--- a/src/components/marketing/expert-modal.tsx
+++ b/src/components/marketing/expert-modal.tsx
@@ -159,11 +159,11 @@ export function ExpertModal({ isOpen, onClose }: ExpertModalProps) {
- Website Development
- E-commerce Platform
- Mobile Application
- Custom Software
- Technical Consulting
+ {t.expert.projectTypes.website}
+ {t.expert.projectTypes.ecommerce}
+ {t.expert.projectTypes.mobile}
+ {t.expert.projectTypes.custom}
+ {t.expert.projectTypes.consulting}
{errors.projectType && (
@@ -179,10 +179,10 @@ export function ExpertModal({ isOpen, onClose }: ExpertModalProps) {
- Less than $1,000
- $1,000 - $5,000
- $5,000 - $10,000
- $10,000+
+ {t.expert.budgets.lt1000}
+ {t.expert.budgets["1000to5000"]}
+ {t.expert.budgets["5000to10000"]}
+ {t.expert.budgets.gt10000}
@@ -194,10 +194,10 @@ export function ExpertModal({ isOpen, onClose }: ExpertModalProps) {
- ASAP
- Within 1 month
- 1-3 months
- 3-6 months
+ {t.expert.timelines.asap}
+ {t.expert.timelines.oneMonth}
+ {t.expert.timelines.oneToThreeMonths}
+ {t.expert.timelines.threeToSixMonths}
diff --git a/src/components/marketing/pricing/billing-toggle.tsx b/src/components/marketing/pricing/billing-toggle.tsx
index 39ce58d..57521db 100644
--- a/src/components/marketing/pricing/billing-toggle.tsx
+++ b/src/components/marketing/pricing/billing-toggle.tsx
@@ -21,12 +21,12 @@ export function BillingToggle({ isYearly, onChange }: BillingToggleProps) {
"min-w-[80px] px-3 md:min-w-[148px] md:px-6",
isYearly ? "text-muted-foreground hover:text-foreground" : "text-foreground",
)}
- aria-label="Toggle monthly billing"
+ aria-label={t.expert.toggleMonthlyAria}
>
{t.marketing.pricing.constants.monthly.toUpperCase()}
);
-
+
const yearlyButton = (
{t.marketing.pricing.constants.yearly.toUpperCase()}