From 64735232cd880693836c791d4597afb2dfd0f5ba Mon Sep 17 00:00:00 2001 From: Bassel Al Sheikh Ali Date: Tue, 31 Dec 2024 07:58:26 +0300 Subject: [PATCH] fix: add Arabic font support and SVG upload --- app/handlers/images.go | 3 +-- locale/ar/client.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/app/handlers/images.go b/app/handlers/images.go index 63e7a9d45..3fe232065 100644 --- a/app/handlers/images.go +++ b/app/handlers/images.go @@ -198,8 +198,7 @@ func Favicon() web.HandlerFunc { opts := []imagic.ImageOperation{} if size > 0 { - opts = append(opts, imagic.Padding(size*10/100)) - opts = append(opts, imagic.Resize(size)) + opts = append(opts, imagic.FitToWidth(size)) } if c.QueryParam("bg") != "" { diff --git a/locale/ar/client.json b/locale/ar/client.json index 771f169ad..1ae471288 100644 --- a/locale/ar/client.json +++ b/locale/ar/client.json @@ -22,7 +22,7 @@ "enum.poststatus.started": "بدأ العمل", "error.expired.text": "الرابط الذي نقرت عليه قد انتهت صلاحيته.", "error.expired.title": "منتهي الصلاحية", - "error.forbidden.text": "أنت غير مخول لعرض هذه الصفحة.", + "error.forbidden.text": "أنت غير مخول لعرض هذه الصفحة، قد يكون حسابك محظور.", "error.forbidden.title": "ممنوع", "error.internalerror.text": "حدث خطأ ونحن نعمل على إصلاح المشكلة! سنكون في الخدمة قريباً.", "error.internalerror.title": "عفواً! هذا غير متوقع...",