Merge branch 'master' into webpack5

This commit is contained in:
Barış Soner Uşaklı
2022-02-17 11:23:42 -05:00
103 changed files with 337 additions and 69 deletions

View File

@@ -1,3 +1,71 @@
#### v1.19.3 (2022-02-16)
##### Chores
* **i18n:**
* fallback strings for new resources: nodebb.admin-settings-uploads (4043f179)
* fallback strings for new resources: nodebb.user (775d9077)
* **deps:**
* update dependency lint-staged to v12.3.4 (9577ef8d)
* update commitlint monorepo to v16.2.1 (2290cee5)
* update dependency eslint to v8.9.0 (763cd193)
* remove punycode dep (e9cb1452)
* incrementing version number - v1.19.2 (e49b31f0)
* update changelog for v1.19.2 (f012984d)
##### New Features
* delete diffs on post purge, closes #10291 (e9e48a75)
* closes #10296 (58b5781c)
* deleting a user upload dissociates from posts, and vice versa (d5ed8736)
* #10276, dont change/revert theme if its current (398d25c2)
##### Bug Fixes
* #10302, fix regression (503e27f7)
* one last try (9205169f)
* doggy.gif (2f64d633)
* one more fix (cfdfbf32)
* dupe key errors (770fcd9e)
* #10292, delete missing fields (dbf7a458)
* local deleteUploads() method in `src/user/delete.js` to call `User.deleteUpload()` (b9edee14)
* #10144, automatically delete uploads from disk on post purge, ACP option to keep uploads on disk if desired (84dfda59)
* four-space indents in package.json (9aa3e442)
* #10289, remove lodash dependency in src/cli/package-install.js (81fa2e22)
* non-functional upgrade script (1c7fb8fe)
* language keys (350052ec)
* #10273, properly calculate item count for best/controversial (d70ce3a9)
* **deps:**
* update dependency nodebb-plugin-emoji to v3.5.16 (#10297) (b47ca86d)
* update dependency nodebb-plugin-markdown to v9.0.7 (#10293) (5b0d4a8e)
* update dependency nodebb-plugin-emoji to v3.5.14 (#10295) (7af057fa)
* update dependency nodebb-plugin-mentions to v3.0.5 (#10294) (55a98183)
* update dependency winston to v3.6.0 (#10285) (22da7a10)
* update dependency nodebb-plugin-markdown to v9.0.6 (3225a1af)
* update dependency nodebb-plugin-spam-be-gone to v0.7.13 (#10280) (3dc108d3)
* update dependency nodebb-plugin-emoji to v3.5.12 (#10279) (2c0b6322)
* update dependency nodebb-plugin-emoji to v3.5.11 (#10274) (766ef4e5)
##### Refactors
* lazy load slugify (946d351f)
* .deleteUpload() to accept array of paths (7ef9c7d2)
* fix user uploads paths, and associate uid with user uploads (ea36016d)
* change the post uploads' hash seeds to have the `files/` prefix (6489e9fd)
* abstract some common code out to local utility methods (aad0c5fd)
* move post upload tests to its own file (d92da828)
* remove extra zset remove, closes #10277 (489c0d30)
##### Code Style Changes
* linting errors (5d7e1ebc)
##### Tests
* fix topic thumb tests and topic thumbs to work properly with post upload assoc. (fb78570c)
* user uploads.js tests (8c2752ba)
* testing user upload methods, already fixed one bug (11275d68)
#### v1.19.2 (2022-02-09)
##### Chores

View File

@@ -2,7 +2,7 @@
"name": "nodebb",
"license": "GPL-3.0",
"description": "NodeBB Forum",
"version": "1.19.2",
"version": "1.19.3",
"homepage": "http://www.nodebb.org",
"repository": {
"type": "git",
@@ -57,7 +57,7 @@
"csurf": "1.11.0",
"daemon": "1.1.0",
"diff": "5.0.0",
"express": "4.17.2",
"express": "4.17.3",
"express-session": "1.17.2",
"express-useragent": "1.0.15",
"file-loader": "6.2.0",
@@ -96,10 +96,10 @@
"nodebb-plugin-spam-be-gone": "0.7.13",
"nodebb-rewards-essentials": "0.2.1",
"nodebb-theme-lavender": "5.3.2",
"nodebb-theme-persona": "11.3.38",
"nodebb-theme-persona": "11.3.40",
"nodebb-theme-slick": "1.4.23",
"nodebb-theme-vanilla": "12.1.17",
"nodebb-widget-essentials": "5.0.7",
"nodebb-widget-essentials": "5.0.9",
"nodemailer": "6.7.2",
"nprogress": "0.2.0",
"passport": "0.5.2",

View File

@@ -23,7 +23,7 @@
"close": "أغلق",
"pagination": "الصفحات",
"pagination.out_of": "%1 من %2",
"pagination.enter_index": "أدخل الرقم التسلسلي",
"pagination.enter_index": "Go to post index",
"header.admin": "مدير النظام",
"header.categories": "الأقسام",
"header.recent": "حديث",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Затваряне",
"pagination": "Странициране",
"pagination.out_of": "%1 от %2",
"pagination.enter_index": "Въведете номер",
"pagination.enter_index": "Към публикация номер",
"header.admin": "Администратор",
"header.categories": "Категории",
"header.recent": "Скорошни",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 по-рано",
"first-post": "Първа публикация",
"last-post": "Последна публикация",
"go-to-my-next-post": "Към следващата ми публикация",
"no-more-next-post": "Нямате повече публикации в тази тема",
"post-quick-reply": "Пускане на бърза публикация"
}

View File

@@ -23,7 +23,7 @@
"close": "বন্ধ",
"pagination": "পাতা নং",
"pagination.out_of": "%2 এর মাঝে %1",
"pagination.enter_index": "সূচক লিখুন",
"pagination.enter_index": "Go to post index",
"header.admin": "অ্যাডমিন",
"header.categories": "বিভাগ",
"header.recent": "সাম্প্রতিক",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Zrušit",
"pagination": "Stránkování",
"pagination.out_of": "%1 z %2",
"pagination.enter_index": "Zadejte index",
"pagination.enter_index": "Go to post index",
"header.admin": "Administrace",
"header.categories": "Kategorie",
"header.recent": "Nejnovější",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 dříve",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Luk",
"pagination": "Sidetal",
"pagination.out_of": "%1 ud af %2",
"pagination.enter_index": "Indtast indeks",
"pagination.enter_index": "Go to post index",
"header.admin": "Administrator",
"header.categories": "Kategorier",
"header.recent": "Seneste",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Schließen",
"pagination": "Seitennummerierung",
"pagination.out_of": "%1 von %2",
"pagination.enter_index": "Seitenzahl eingeben",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Kategorien",
"header.recent": "Aktuell",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 früher",
"first-post": "Erster Beitrag",
"last-post": "Letzter Beitrag",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Beitrag schnell Beantworten"
}

View File

@@ -23,7 +23,7 @@
"close": "Κλείσιμο",
"pagination": "Σελιδοποίηση",
"pagination.out_of": "%1 από %2",
"pagination.enter_index": "Εισαγωγή Σελίδας",
"pagination.enter_index": "Go to post index",
"header.admin": "Διαχειριστής",
"header.categories": "Κατηγορίες",
"header.recent": "Πρόσφατα",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -28,7 +28,7 @@
"pagination": "Pagination",
"pagination.out_of": "%1 out of %2",
"pagination.enter_index": "Enter index",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Categories",

View File

@@ -207,5 +207,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Close",
"pagination": "Pagination",
"pagination.out_of": "%1 out of %2",
"pagination.enter_index": "Enter index",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Categories",
"header.recent": "Recent",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Shoot down",
"pagination": "Pagination",
"pagination.out_of": "%1 out of %2",
"pagination.enter_index": "Enter index",
"pagination.enter_index": "Go to post index",
"header.admin": "Captains only",
"header.categories": "Categories",
"header.recent": "Recent",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Cerrar",
"pagination": "Paginación",
"pagination.out_of": "%1 de %2",
"pagination.enter_index": "Introduzca el número",
"pagination.enter_index": "Go to post index",
"header.admin": "Administración",
"header.categories": "Categorías",
"header.recent": "Recientes",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 antes",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Sulge",
"pagination": "Lehekülgede numeratsioon",
"pagination.out_of": "%1 kõigist %2-st",
"pagination.enter_index": "Sisetage indeks",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Kategooriad",
"header.recent": "Hiljutised",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "بستن",
"pagination": "صفحه‌بندی",
"pagination.out_of": "%1 از %2",
"pagination.enter_index": "شماره را وارد کنید",
"pagination.enter_index": "Go to post index",
"header.admin": "مدیر",
"header.categories": "دسته‌بندی‌ها",
"header.recent": "تازه‌ها",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 قبل",
"first-post": "اولین پست",
"last-post": "آخرین پست",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Sulje",
"pagination": "Sivutus",
"pagination.out_of": "%1/%2",
"pagination.enter_index": "Syötä indeksi",
"pagination.enter_index": "Go to post index",
"header.admin": "Ylläpitäjä",
"header.categories": "Kategoriat",
"header.recent": "Viimeisimmät",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 aiempi",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Fermer",
"pagination": "Pagination",
"pagination.out_of": "%1 sur %2",
"pagination.enter_index": "Entrer un numéro de page",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Catégories",
"header.recent": "Récent",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "il y a %1",
"first-post": "Premier message",
"last-post": "Dernier message",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Réponse rapide"
}

View File

@@ -23,7 +23,7 @@
"close": "Pechar ",
"pagination": "Paxinación",
"pagination.out_of": "%1 de %2",
"pagination.enter_index": "Introduce unha referencia",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Categorías",
"header.recent": "Recentes",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -4,8 +4,8 @@
"acp-title": "%1 | לוח בקרה למנהל NodeBB",
"settings-header-contents": "תוכן",
"changes-saved": "Changes Saved",
"changes-saved-message": "Your changes to the NodeBB configuration have been saved.",
"changes-not-saved": "Changes Not Saved",
"changes-not-saved-message": "NodeBB encountered a problem saving your changes. (%1)"
"changes-saved": "שינויים שנשמרו",
"changes-saved-message": "השינויים שלך בתצורת NodeBB נשמרו.",
"changes-not-saved": "השינויים לא נשמרו",
"changes-not-saved-message": "NodeBB נתקל בעיה בשמירת השינויים שלך. (%1)"
}

View File

@@ -13,7 +13,7 @@
"headers.acao-help": "כדי למנוע גישה לכל האתרים, השאר ריק",
"headers.acao-regex-help": "הכנס תבנית טקסט (Regex) כאן כדי לאפשר קריאה דינאמית מאתרים חיצוניים. אם ברצונך לחסום כל גישה חיצונית, השאר ריק.",
"headers.acac": "אתרים אשר אל בקשות אליהם, יתווספו גם נתוני כניסה כגוןCookie וכו'. ( Access-Control-Allow-Credentials)",
"headers.acam": "Access-Control-Allow-Methods",
"headers.acam": "שיטות אפשריות בבקרת גישה",
"headers.acah": "Access-Control-Allow-Headers",
"headers.coep": "Cross-Origin-Embedder-Policy",
"headers.coep-help": "When enabled (default), will set the header to <code>require-corp</code>",

View File

@@ -23,7 +23,7 @@
"close": "סגור",
"pagination": "הגדרות עמוד",
"pagination.out_of": "%1 מתוך %2",
"pagination.enter_index": "הכניסו אינדקס",
"pagination.enter_index": "Go to post index",
"header.admin": "ניהול",
"header.categories": "קטגוריות",
"header.recent": "פוסטים אחרונים",

View File

@@ -1,6 +1,6 @@
{
"chat.chatting_with": "שוחח עם",
"chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
"chat.placeholder": "הקלד את הודעת הצ'אט כאן, ניתן לגרור ולשחרר תמונות, בסיום הקש אנטר כדי לשלוח.",
"chat.scroll-up-alert": "אתה מסתכל על הודעות ישנות. לחץ כאן למעבר להודעה האחרונה.",
"chat.send": "שלח",
"chat.no_active": "אין לך צ'אטים פעילים",
@@ -68,8 +68,8 @@
"bootbox.ok": "אישור",
"bootbox.cancel": "בטל",
"bootbox.confirm": "אשר",
"bootbox.submit": "Submit",
"bootbox.send": "Send",
"bootbox.submit": "שליחה",
"bootbox.send": "שלח",
"cover.dragging_title": "מיקום תמונת נושא",
"cover.dragging_message": "גרור תמונת נושא למיקום הרצוי ולחץ על \"שמור\"",
"cover.saved": "תמונת הנושא והמיקום נשמר",

View File

@@ -15,7 +15,7 @@
"topic": "נושא",
"accept": "אשר",
"reject": "דחה",
"remove": "Remove",
"remove": "הסרה",
"notify": "Notify",
"notify-user": "Notify User"
"notify-user": "שלח התראה למשתמש"
}

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "לפני %1 ",
"first-post": "פוסט ראשון",
"last-post": "פוסט אחרון",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "רשום תשובה מהירה"
}

View File

@@ -184,7 +184,7 @@
"consent.export_posts": "יצוא פוסטים (CVS.)",
"consent.export-posts-success": "ייצוא הפוסטים מתבצע כעת. תקבל התראה כאשר הייצוא יסתיים.",
"emailUpdate.intro": "אנא הכנס את כתובת הדוא\"ל שלך. הפורום משתמש בדוא\"ל שלך לשליחת תקציר מתוזמן והתראות, כמו כן לשחזור חשבון במקרה ששוכחים את הסיסמה.",
"emailUpdate.optional": "<strong>This field is optional</strong>. You are not obligated to provide your email address, but without a validated email you will not be able to recover your account or login with your email.",
"emailUpdate.required": "<strong>This field is required</strong>.",
"emailUpdate.optional": "שדה זה הוא אופציונלי. אינך מחויב לספק את כתובת הדוא\"ל שלך, אך ללא דוא\"ל מאומת לא תוכל לשחזר את חשבונך או להתחבר באמצעות הדוא\"ל שלך.",
"emailUpdate.required": "זהו שדה חובה",
"emailUpdate.change-instructions": "מייל אימות יישלח לכתובת דוא\"ל שהכנסת עם קישור ייחודי. לחיצה על הקישור יאמת את בעלותך על הדוא\"ל ותקבל גישה לחשבונך. בכל זמן, תוכל לעדכן את כתובת הדוא\"ל שלך בדף החשבון שלך."
}

View File

@@ -5,7 +5,7 @@
"most_flags": "הכי הרבה דיווחי משתמשים",
"search": "חיפוש",
"enter_username": "הכנס שם משתמש לחיפוש",
"search-user-for-chat": "Search a user to start chat",
"search-user-for-chat": "חפש משתמש כדי להתחיל איתו צאט",
"load_more": "טען עוד",
"users-found-search-took": "%1 משתמשים נמצאו! החיפוש ערך %2 שניות.",
"filter-by": "פלטר על-פי",

View File

@@ -23,7 +23,7 @@
"close": "Zatvori",
"pagination": "Stranice",
"pagination.out_of": "%1 od %2",
"pagination.enter_index": "Unesi index",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Kategorije",
"header.recent": "Posljednje",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Bezárás",
"pagination": "Lapozás",
"pagination.out_of": "%1 / %2",
"pagination.enter_index": "Írj be egy számot",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Kategóriák",
"header.recent": "Legutóbbi",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 korábban",
"first-post": "Első bejegyzés",
"last-post": "Utolsó bejegyzés",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Tutup",
"pagination": "Halaman",
"pagination.out_of": "%1 dari %2",
"pagination.enter_index": "Masukkan index",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Kategori",
"header.recent": "Terbaru",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Chiudi",
"pagination": "Impaginazione",
"pagination.out_of": "%1 di %2",
"pagination.enter_index": "Inserisci un numero di pagina",
"pagination.enter_index": "Go to post index",
"header.admin": "Amministratore",
"header.categories": "Categorie",
"header.recent": "Recenti",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 precedente",
"first-post": "Primo post",
"last-post": "Ultimo post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Invia una risposta rapida"
}

View File

@@ -23,7 +23,7 @@
"close": "閉じる",
"pagination": "ページ",
"pagination.out_of": "%2件中%1件目",
"pagination.enter_index": "Enter index",
"pagination.enter_index": "Go to post index",
"header.admin": "管理",
"header.categories": "カテゴリ",
"header.recent": "最近",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "닫기",
"pagination": "페이지",
"pagination.out_of": "현재: %1 / 전체: %2",
"pagination.enter_index": "이동할 포스트 번호 입력",
"pagination.enter_index": "Go to post index",
"header.admin": "관리자",
"header.categories": "카테고리",
"header.recent": "최근",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 이전",
"first-post": "첫 포스트",
"last-post": "마지막 포스트",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "빠른 답글"
}

View File

@@ -23,7 +23,7 @@
"close": "Uždaryti",
"pagination": "Numeracija",
"pagination.out_of": "%1 iš %2",
"pagination.enter_index": "Įrašykite indeksą",
"pagination.enter_index": "Go to post index",
"header.admin": "Administratorius",
"header.categories": "Kategorijos",
"header.recent": "Naujausi",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Aizvērt",
"pagination": "Dalīšana pa lapām",
"pagination.out_of": "%1 no %2",
"pagination.enter_index": "Ievadīt numuru",
"pagination.enter_index": "Go to post index",
"header.admin": "Administrācija",
"header.categories": "Kategorijas",
"header.recent": "Nesenie",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Tutup",
"pagination": "Mukasurat",
"pagination.out_of": "%1 daripada %2",
"pagination.enter_index": "Masukkan indeks",
"pagination.enter_index": "Go to post index",
"header.admin": "Pentadbir",
"header.categories": "Kategori",
"header.recent": "Terkini",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Lukk",
"pagination": "Paginering",
"pagination.out_of": "%1 ut av %2",
"pagination.enter_index": "Skriv indeks",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Kategorier",
"header.recent": "Seneste",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 tidligere",
"first-post": "Første innlegg",
"last-post": "Seneste innlegg",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Sluiten",
"pagination": "Paginering",
"pagination.out_of": "%1 van %2",
"pagination.enter_index": "Vul index in",
"pagination.enter_index": "Go to post index",
"header.admin": "Beheer",
"header.categories": "Categorieën",
"header.recent": "Recent",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 eerder",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Zamknij",
"pagination": "Numerowanie stron",
"pagination.out_of": "%1 z %2",
"pagination.enter_index": "Wpisz indeks.",
"pagination.enter_index": "Go to post index",
"header.admin": "Administracja",
"header.categories": "Kategorie",
"header.recent": "Ostatnie",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 wcześniej",
"first-post": "Pierwszy post",
"last-post": "Ostatni post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Wyślij szybką odpowiedź"
}

View File

@@ -23,7 +23,7 @@
"close": "Fechar",
"pagination": "Paginação",
"pagination.out_of": "%1 de %2",
"pagination.enter_index": "Digite o índice",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Categorias",
"header.recent": "Recente",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 mais cedo",
"first-post": "Primeiro post",
"last-post": "Último post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Fechar",
"pagination": "Paginação",
"pagination.out_of": "%1 de %2",
"pagination.enter_index": "Introduz o index",
"pagination.enter_index": "Go to post index",
"header.admin": "Administrador",
"header.categories": "Categorias",
"header.recent": "Recentes",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 antes",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Închide",
"pagination": "Paginație",
"pagination.out_of": "%1 din %2",
"pagination.enter_index": "Introdu index",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Categorii",
"header.recent": "Recente",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Закрыть",
"pagination": "Разбивка на страницы",
"pagination.out_of": "%1 из %2",
"pagination.enter_index": "Перейти на...",
"pagination.enter_index": "Go to post index",
"header.admin": "Админка",
"header.categories": "Категории",
"header.recent": "Последние",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "на %1 раньше",
"first-post": "Первое сообщение",
"last-post": "Последнее сообщение",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Funga",
"pagination": "Umubare wa Paji",
"pagination.out_of": "%1 muri %2",
"pagination.enter_index": "Shyiramo umubare",
"pagination.enter_index": "Go to post index",
"header.admin": "Ubuyobozi",
"header.categories": "Ibyiciro",
"header.recent": "Ibiheruka",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Serra",
"pagination": "Paginatzione",
"pagination.out_of": "%1 out of %2",
"pagination.enter_index": "Enter index",
"pagination.enter_index": "Go to post index",
"header.admin": "Amministradore",
"header.categories": "Categories",
"header.recent": "Ùrtimos",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Zatvoriť",
"pagination": "Stránkovanie",
"pagination.out_of": "%1 z %2",
"pagination.enter_index": "Zadajte záznam",
"pagination.enter_index": "Go to post index",
"header.admin": "Správca",
"header.categories": "Kategórie",
"header.recent": "Nedávne",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Zapri",
"pagination": "Oštevilčenje strani",
"pagination.out_of": "%1 od %2",
"pagination.enter_index": "Vnesi številko",
"pagination.enter_index": "Go to post index",
"header.admin": "Skrbnik",
"header.categories": "Kategorije",
"header.recent": "Nedavno",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "Prva objava",
"last-post": "Zadnja obava",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Objavi hitri odgovor"
}

View File

@@ -23,7 +23,7 @@
"close": "Затвори",
"pagination": "Нумерисање страница",
"pagination.out_of": "%1 од %2",
"pagination.enter_index": "Унесите индекс",
"pagination.enter_index": "Go to post index",
"header.admin": "Админ",
"header.categories": "Категорије",
"header.recent": "Недавно",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 раније",
"first-post": "Прва порука",
"last-post": "Последња порука",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Објави брзи одговор"
}

View File

@@ -23,7 +23,7 @@
"close": "Stäng",
"pagination": "Siduppdelning",
"pagination.out_of": "%1 av %2",
"pagination.enter_index": "Skriv in index ",
"pagination.enter_index": "Go to post index",
"header.admin": "Admin",
"header.categories": "Kategorier",
"header.recent": "Senaste",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 tidigare",
"first-post": "Första inlägget",
"last-post": "Sista inlägget",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Gör ett snabbsvar"
}

View File

@@ -23,7 +23,7 @@
"close": "ปิด",
"pagination": "การแบ่งหน้า",
"pagination.out_of": "%1 จาก %2",
"pagination.enter_index": "กรอกหมายเลข",
"pagination.enter_index": "Go to post index",
"header.admin": "ผู้ดูแลระบบ",
"header.categories": "หมวดหมู่",
"header.recent": "ล่าสุด",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 earlier",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "Kapat",
"pagination": "Sayfalara numara koyma",
"pagination.out_of": "%1 - %2",
"pagination.enter_index": "İndex gir",
"pagination.enter_index": "Go to post index",
"header.admin": "Yönetim",
"header.categories": "Kategoriler",
"header.recent": "Güncel",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 önce",
"first-post": "İlk ileti",
"last-post": "Son ileti",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Hızlı yanıt gönder"
}

View File

@@ -23,7 +23,7 @@
"close": "Закрити",
"pagination": "Розбиття на сторінки",
"pagination.out_of": "%1 із %2",
"pagination.enter_index": "Уведіть номер",
"pagination.enter_index": "Go to post index",
"header.admin": "Адмін",
"header.categories": "Категорії",
"header.recent": "Недавні",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 раніше",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -2,7 +2,7 @@
"posts": "Bài Đăng",
"private": "Đặt tệp tải lên ở chế độ riêng tư",
"strip-exif-data": "Tách Dữ Liệu EXIF",
"preserve-orphaned-uploads": "Keep uploaded files on disk after a post is purged",
"preserve-orphaned-uploads": "Giữ các tệp đã tải lên trên đĩa sau khi bài đăng được xóa",
"private-extensions": "Phần mở rộng tệp để đặt ở chế độ riêng tư",
"private-uploads-extensions-help": "Nhập danh sách phần mở rộng tệp tại đây phân tách bằng dấu phẩy để đặt ở chế độ riêng tư (VD: <code>pdf,xls,doc</code>). Để trống có nghĩa là mọi tệp đều riêng tư.",
"resize-image-width-threshold": "Chỉnh kích cỡ ảnh nếu chúng rộng hơn chiều rộng đã đặt",

View File

@@ -23,7 +23,7 @@
"close": "Đóng",
"pagination": "Phân trang",
"pagination.out_of": "%1 trong số %2",
"pagination.enter_index": "Nhập chỉ mục",
"pagination.enter_index": "Đi đến chỉ mục bài đăng",
"header.admin": "Quản trị viên",
"header.categories": "Chuyên mục",
"header.recent": "Gần đây",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 trước đó",
"first-post": "Bài viết đầu tiên",
"last-post": "Bài viết cuối cùng",
"go-to-my-next-post": "Đi tới bài kế tiếp của tôi",
"no-more-next-post": "Bạn không có bài viết nào khác trong chủ đề này",
"post-quick-reply": "Đăng trả lời nhanh"
}

View File

@@ -23,7 +23,7 @@
"close": "关闭",
"pagination": "分页",
"pagination.out_of": "%1 / %2",
"pagination.enter_index": "输入索引",
"pagination.enter_index": "Go to post index",
"header.admin": "管理",
"header.categories": "版块",
"header.recent": "最新",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 前",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -23,7 +23,7 @@
"close": "關閉",
"pagination": "分頁",
"pagination.out_of": "%1 / %2",
"pagination.enter_index": "輸入索引",
"pagination.enter_index": "Go to post index",
"header.admin": "管理",
"header.categories": "版面",
"header.recent": "最新",

View File

@@ -181,5 +181,7 @@
"timeago_earlier": "%1 前",
"first-post": "First post",
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
"post-quick-reply": "Post quick reply"
}

View File

@@ -383,13 +383,13 @@ define('forum/topic/postTools', [
slug = '[[global:guest]]';
}
}
if (slug && slug !== '[[global:former_user]]' && slug !== '[[global:guest]]') {
slug = '@' + slug;
}
resolve(slug);
});
return;
}
if (post.length && post.attr('data-uid') !== '0') {
slug = '@' + slug;
}
resolve(slug);
});

Some files were not shown because too many files have changed in this diff Show More