summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorLanre Adelowo <adelowomailbox@gmail.com>2019-02-13 16:45:19 +0100
committertechknowlogick <matti@mdranta.net>2019-02-13 10:45:19 -0500
commitf2256d988132c973dc12b3b62adc15964d910e88 (patch)
tree5efeb1279ee02fe353b1250013bedbde3f246ea0 /routers
parent23414ac2a1d83f91ff47c5d8bbedebe709b1f408 (diff)
downloadgitea-f2256d988132c973dc12b3b62adc15964d910e88.tar.gz
gitea-f2256d988132c973dc12b3b62adc15964d910e88.zip
make sure labels are actually returned (#6053)
Diffstat (limited to 'routers')
-rw-r--r--routers/api/v1/repo/issue_label.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/routers/api/v1/repo/issue_label.go b/routers/api/v1/repo/issue_label.go
index 715dd0ed77..d496f5bde6 100644
--- a/routers/api/v1/repo/issue_label.go
+++ b/routers/api/v1/repo/issue_label.go
@@ -51,6 +51,11 @@ func ListIssueLabels(ctx *context.APIContext) {
return
}
+ if err := issue.LoadAttributes(); err != nil {
+ ctx.Error(500, "LoadAttributes", err)
+ return
+ }
+
apiLabels := make([]*api.Label, len(issue.Labels))
for i := range issue.Labels {
apiLabels[i] = issue.Labels[i].APIFormat()
-update-ca-cert-bundle'>automated/noid/stable30-update-ca-cert-bundle Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/apps/theming/l10n/ar.js
blob: c88b7be872d376bf7f01a3bf1aec0ed0f637915c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
OC.L10N.register(
    "theming",
    {
    "Loading preview…" : "جار تحميل المعاينة ...",
    "Saved" : "تم الحفظ",
    "Admin" : "ادارة",
    "a safe home for all your data" : "مكان آمن لكل معلوماتك",
    "The given name is too long" : "هذا الاسم أطول مما يجب",
    "The given web address is too long" : "هذا العنوان أطول مما يجب",
    "The given slogan is too long" : "هذا الشعار أطول مما يجب",
    "The given color is invalid" : "هناك خطأ في اللون",
    "No file uploaded" : "لم يتم رفع الملف",
    "Unsupported image type" : "صيغة الصورة غير مقبولة",
    "You are already using a custom theme" : "انت تستعمل قالب مخصص",
    "Theming" : "تخصيص القالب",
    "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "السمات تجعل من الممكن بسهولة تخصيص الشكل والمظهر لنموذجك ودعم العملاء. سيكون هذا مرئيا لجميع المستخدمين.",
    "Name" : "الاسم",
    "Reset to default" : "اعادة تعيين الافتراضيات",
    "Web address" : "عنوان صفحة أنترنت",
    "Web address https://…" : "عنوان صفحة أنترنت https://",
    "Slogan" : "شعار",
    "Color" : "لون",
    "Logo" : "العلامة",
    "Upload new logo" : "رفع شعار جديد",
    "Login image" : "صورة الدخول",
    "Upload new login background" : "تحميل خلفية جديدة للدخول",
    "Remove background image" : "إزالة صورة الخلفية",
    "reset to default" : "إلغاء كل التغييرات",
    "Log in image" : "صورة الدخول"
},
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");