Skip to content

Commit

Permalink
fix: add Arabic font support and SVG upload
Browse files Browse the repository at this point in the history
  • Loading branch information
BasselArt committed Dec 31, 2024
1 parent b033467 commit 850e562
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/tasks/status_change.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func NotifyAboutStatusChange(post *entity.Post, prevStatus enum.PostStatus) work
}

author := c.User()
title := fmt.Sprintf("**%s** changed status of **%s** to **%s**", author.Name, post.Title, post.Status.Name())
title := fmt.Sprintf("**%s** غير حالة **%s** إلى **%s**", author.Name, post.Title, i18n.T(c, fmt.Sprintf("enum.poststatus.%s", post.Status.Name())))
link := fmt.Sprintf("/posts/%d/%s", post.Number, post.Slug)
for _, user := range users {
if user.ID != author.ID {
Expand Down
6 changes: 3 additions & 3 deletions locale/ar/client.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"home.lonely.text": "لم يتم نشر أي مساهمات حتى الآن.",
"home.postfilter.label.view": "عرض",
"home.postfilter.option.mostdiscussed": "الأكثر مناقشة",
"home.postfilter.option.mostwanted": "الأكثر تصويتا",
"home.postfilter.option.mostwanted": "الأكثر تصويتاً",
"home.postfilter.option.myvotes": "تصويتاتي",
"home.postfilter.option.recent": "الأحدث",
"home.postfilter.option.trending": "الشائع",
Expand All @@ -47,7 +47,7 @@
"home.similar.subtitle": "صوت على المساهمات الموجودة إذا كانت مشابهة لمساهمتك.",
"home.similar.title": "مساهمات مشابهة",
"home.tagsfilter.label.with": "مع",
"home.tagsfilter.selected.none": "أي وسم",
"home.tagsfilter.selected.none": "أي تصنيف",
"label.actions": "إجراءات",
"label.avatar": "الصورة الرمزية",
"label.custom": "مخصص",
Expand Down Expand Up @@ -157,7 +157,7 @@
"signin.message.onlyadmins": "حاليًا مسموح فقط بتسجيل الدخول إلى حساب مسؤول",
"signin.message.private.text": "إذا كان لديك حساب أو دعوة، يمكنك استخدام الخيارات التالية لتسجيل الدخول.",
"signin.message.private.title": "<0>{0}</0> مساحة خاصة، يجب عليك تسجيل الدخول للمساهمة والتصويت.",
"{count, plural, one {# tag} other {# tags}}": "{count, plural, one {# وسم} other {# وسوم}}",
"{count, plural, one {# tag} other {# tags}}": "{count, plural, one {# تصنيف} other {# تصنيفات}}",
"modal.signin.message.email": "أدخل عنوان بريدك الإلكتروني للمتابعة.",
"modal.signin.message.facebook": "انقر فوق الزر أدناه للمتابعة.",
"modal.signin.message.google": "انقر فوق الزر أدناه للمتابعة.",
Expand Down

0 comments on commit 850e562

Please sign in to comment.