Skip to content

Commit

Permalink
fix: Enhance Arabic Compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
BasselArt committed Dec 31, 2024
1 parent 6220200 commit 9e68a53
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions locale/ar/client.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"menu.sitesettings": "إعدادات الموقع",
"modal.changeemail.header": "تأكيد بريدك الإلكتروني الجديد",
"modal.changeemail.text": "لقد أرسلنا للتو رابط تأكيد إلى <0>{0}</0>. <1/> انقر على الرابط لتحديث بريدك الإلكتروني.",
"modal.completeprofile.header": "إكمال ملفك الشخصي",
"modal.completeprofile.header": "أكمل ملفك الشخصي",
"modal.completeprofile.name.placeholder": "الاسم الثنائي",
"modal.completeprofile.text": "لأن هذه هي المرة الأولى التي تسجل فيها الدخول، يرجى إدخال اسمك الحقيقي.",
"modal.deleteaccount.header": "حذف الحساب",
Expand Down Expand Up @@ -146,7 +146,7 @@
"showpost.postsearch.numofvotes": "{0} صوت",
"showpost.postsearch.query.placeholder": "ابحث عن المساهمة الأصلية...",
"showpost.responseform.message.mergedvotes": "ستدمج الأصوات من هذه المساهمة في المساهمة الأصلية.",
"showpost.responseform.text.placeholder": "ما الذي يحدث مع هذه المساهمة؟ دع مستخدميك يعرفون ما هي خططك...",
"showpost.responseform.text.placeholder": "ما هي التحديثات على هذه المساهمة؟ دع مستخدميك يعرفون ما هي خططك...",
"showpost.votespanel.more": "+{extraVotesCount} أكثر",
"showpost.votespanel.seedetails": "شاهد التفاصيل",
"signin.message.email": "أدخل عنوان بريدك الإلكتروني لتسجيل الدخول",
Expand Down
2 changes: 1 addition & 1 deletion public/pages/Error/Error.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const ErrorPage = (props: ErrorPageProps) => {
<div id="p-error" className="container page">
<div className="w-max-7xl mx-auto">
<div className="h-20 text-center mb-4">
<TenantLogo size={100} useFiderIfEmpty={true} />
<TenantLogo size={1000} useFiderIfEmpty={true} />
</div>
<h1 className="text-display">Shoot! Well, this is unexpected…</h1>
<p>An error has occurred and we&apos;re working to fix the problem!</p>
Expand Down
2 changes: 1 addition & 1 deletion public/pages/Error/components/ErrorPageWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const ErrorPageWrapper = (props: ErrorPageWrapperProps) => {
<div id={props.id} className="container page">
<div className="w-max-7xl mx-auto text-center mt-8">
<div className="h-20 mb-4">
<TenantLogo size={100} useFiderIfEmpty={true} />
<TenantLogo size={1000} useFiderIfEmpty={true} />
</div>
{props.children}
{props.showHomeLink && fider.session.tenant && (
Expand Down
2 changes: 1 addition & 1 deletion public/pages/SignIn/CompleteSignInProfile.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const CompleteSignInProfilePage = (props: CompleteSignInProfilePageProps) => {
<div id="p-complete-profile" className="page container w-max-6xl">
<div>
<div className="h-20 text-center mb-4">
<TenantLogo size={100} />
<TenantLogo size={1000} />
</div>

<p className="text-title">
Expand Down
2 changes: 1 addition & 1 deletion public/pages/SignIn/SignIn.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const SignInPage = () => {
return (
<div id="p-signin" className="page container w-max-6xl">
<div className="h-20 text-center mb-4">
<TenantLogo size={100} />
<TenantLogo size={1000} />
</div>
<div className="text-center w-max-4xl mx-auto mb-4">{fider.session.tenant.isPrivate ? <Private /> : <Locked />}</div>

Expand Down
2 changes: 1 addition & 1 deletion public/pages/SignUp/PendingActivation.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const PendingActivation = () => {
<div id="p-notinvited" className="container page">
<div className="w-max-7xl mx-auto text-center mt-8">
<div className="h-20 mb-4">
<TenantLogo size={100} useFiderIfEmpty={true} />
<TenantLogo size={1000} useFiderIfEmpty={true} />
</div>
<h1 className="text-display uppercase">
<Trans id="page.pendingactivation.title">Your account is pending activation</Trans>
Expand Down

0 comments on commit 9e68a53

Please sign in to comment.