Merge commit 'b5cb2f8b9c34ff2646ab60c22aa92b674daad64f' into v1.16.x

This commit is contained in:
Misty (Bot)
2021-01-21 00:43:52 +00:00
151 changed files with 1298 additions and 386 deletions

View File

@@ -17,6 +17,14 @@ checks:
similar-code:
config:
threshold: 65
plugins:
duplication:
enabled: true
config:
languages:
javascript:
mass_threshold: 110
count_threshold: 3
exclude_paths:
- "public/vendor/*"
- "test/*"

View File

@@ -1,3 +1,115 @@
#### v1.16.1 (2021-01-06)
##### Chores
* increase test timeout (0d7dfeeb)
* incrementing version number - v1.16.1-beta.0 (5fcf3ea6)
* add deprecation notice to topic thumb tpl value (05d8b3c3)
* minor reordering of lines (8e5a413e)
* incrementing version number - v1.16.0 (6d01fd50)
* update changelog for v1.16.0 (1437c62f)
* **deps:**
* update dependency eslint to v7.17.0 (18ae7cf7)
* update dependency eslint to v7.16.0 (2610dfcf)
* update actions/setup-node action to v2 (#9115) (55a55ea2)
* **api:** add deprecation notices re: #9123 (cdff8d28)
##### New Features
* #9173, show installed plugin versions in ./nodebb plugins (8c31afae)
* added note that you can now upload videos (4d6ddf6d)
* automatically attempt socket.io reconnection on ajaxify (e5edbc6f)
* #9135, don't try to reconnect forever (c1ecfd1e)
* add confirmation modal when assigning admin:admins-mods privilege (d90aa958)
* allow dashes in privilege group names (5b8558e9)
* allow multiple privileges to be defined for a given admin socket call (3aa5beb8)
* rename admin middleware header hook (fcc1e24a)
* explicitly add filter:admin/header.build hook (75b1bbd0)
* fix more tests, add more routes, update api test suite (cb32e32a)
* add registration/complete route, fix some other tests (14c51e3c)
* add missing schemas for various ACP settings routes (9de35ec5)
* add missing schema for category update and deletion (d6de9253)
* add schema for api ping routes (d85181e0)
* normalize paths before comparison (df8d62ba)
* additional test to ensure any new routes added to express have a corresponding schema doc (dbe85630)
* update html-to-text closes https://github.com/NodeBB/NodeBB/pull/8810 (a2152dd1)
* **api:**
* closes #9123 category and topic routes migrated to Write API (edb8da1e)
* #9123, migrate rest of the getObject controllers to Write API (9ecfac9b)
* #9123, migrate /api/post/pid/:pid to Write API (e267f295)
* group ownership API route, switch client-side to use API route (32e36f7b)
* add schema for groups update route (98550d61)
* added schema for email unsubscribe token (4fc13377)
* **acp:**
* admin tags privilege (223f0a55)
* admins-mods privilege (fb46a8d9)
* added new admin privilege for groups management (da191341)
##### Bug Fixes
* #9130, remove timestamp prefix from thumbnail names in API response (171017c3)
* #9166 missing relative path in topic thumbs modal and topic list (b9ba44ed)
* #9163, fix total connection count on ACP (1968bf50)
* genericise .necro-post, bump persona to latest (041d45c3)
* #9126, skip base64 and long values (33290850)
* #9127, use assets path (3121215e)
* inability for admins with setting privilege to save plugin settings (a555f024)
* #9149, server-side handling of disableChatMessageEditing (895e3d93)
* #9149, incorrect client-side `disableChatMessageEditing` value for admins/gmods (d27815a8)
* #9151, dont use service worker for posts requests (20c1b684)
* #9150, fix selector so it doesn't add img-responsive to profile pics (183cabe9)
* tests (28740360)
* dont show deleted posts in navigator (931105e6)
* bug in api path existence test (501a7b77)
* #9136, fix move topic/post timeout errors (2ef72a94)
* bad assignment logic in middleware.renderHeader (34ccabe3)
* #9113, wrong path separator used in thumbs.get (da4f9118)
* email testing and settings change from ACP (2be396ff)
* removing ability to specify deprecated topic 'thumb' on topic creation (713f029d)
* #9129, event is fired on socket.io (b369dc88)
* subfolder handling in tests (bbd97ccb)
* .flat() not defined in v10, added debug router to exclusion list (6062039d)
* all tests, wrap up work (f416dc17)
* two more routes (9c2de86a)
* api tests (b9a61d2d)
* don't return deleted: 0 for ephemeral groups (600807fb)
* send fewer items to client-side for ACP settings/email page (438fa5c8)
* errors in write-api schema (c079051b)
* broken tests from last round of fixes (990f1077)
* bad error message for request body api test (a9629357)
* modify backreference test to not check router.all() calls (7fc329de)
* add missing token generation route to write api spec (eef052c1)
* trigger action:posts.edited (b7b588f5)
* **deps:**
* update dependency autoprefixer to v10.2.0 (e445ae5a)
* update socket.io packages to v3.0.5 (fd045c67)
* update dependency nodebb-theme-persona to v10.3.16 (87e333b4)
* update dependency benchpressjs to v2.4.0 (4524f825)
* update dependency nodebb-theme-persona to v10.3.15 (189be9e0)
* update dependency nodebb-widget-essentials to v5.0.2 (1dd1d3b0)
* update dependency nodebb-widget-essentials to v5.0.1 (#9144) (f55dddb2)
* update dependency nodebb-plugin-composer-default to v6.5.5 (6d980d26)
* update dependency sharp to v0.27.0 (4919e596)
* update dependency nodebb-theme-persona to v10.3.12 (37b35f7d)
* update dependency nodebb-theme-persona to v10.3.11 (db4c6863)
* **tests:** handle nested allOf blocks (77a5adb6)
* **api:**
* failing test due to missing file (3959a7bd)
* tests (80ee3dfb)
* **pwa:** #9127 service-worker.js missing on subfolder installs (b8d4709e)
##### Refactors
* **openapi:** update TopicObject component to reference TopicObjectSlim in its schema (fb3f3f72)
* **api:**
* deprecated groups update socket in favour of API lib (1cd2689c)
* update group deletion calls to use write API (e640a41a)
* schema backreference test to use map instead of reduce, properly check write-api routes (878ee067)
##### Tests
* changed test a bit to see what is going on (5f038dff)
#### v1.16.0 (2020-12-17)
##### Breaking Changes

View File

@@ -2,7 +2,7 @@
"name": "nodebb",
"license": "GPL-3.0",
"description": "NodeBB Forum",
"version": "1.16.1",
"version": "1.16.2-beta.0",
"homepage": "http://www.nodebb.org",
"repository": {
"type": "git",
@@ -39,11 +39,11 @@
"ace-builds": "^1.4.9",
"archiver": "^5.0.0",
"async": "^3.2.0",
"autoprefixer": "10.2.0",
"autoprefixer": "10.2.1",
"bcryptjs": "2.4.3",
"benchpressjs": "2.4.0",
"body-parser": "^1.19.0",
"bootbox": "4.4.0",
"bootbox": "5.5.2",
"bootstrap": "^3.4.1",
"chart.js": "^2.9.3",
"cli-graph": "^3.2.2",
@@ -101,8 +101,8 @@
"nodebb-plugin-spam-be-gone": "0.7.7",
"nodebb-rewards-essentials": "0.1.4",
"nodebb-theme-lavender": "5.0.17",
"nodebb-theme-persona": "10.3.17",
"nodebb-theme-slick": "1.3.7",
"nodebb-theme-persona": "10.3.19",
"nodebb-theme-slick": "1.3.8",
"nodebb-theme-vanilla": "11.3.10",
"nodebb-widget-essentials": "5.0.2",
"nodemailer": "^6.4.6",
@@ -128,11 +128,11 @@
"sharp": "0.27.0",
"sitemap": "^6.1.0",
"slideout": "1.0.1",
"socket.io": "3.0.5",
"socket.io": "3.1.0",
"socket.io-adapter-cluster": "^1.0.1",
"socket.io-client": "3.0.5",
"socket.io-client": "3.1.0",
"socket.io-redis": "6.0.1",
"sortablejs": "1.10.2",
"sortablejs": "1.13.0",
"spdx-license-list": "^6.1.0",
"spider-detector": "2.0.0",
"textcomplete": "^0.17.1",
@@ -146,6 +146,7 @@
"winston": "3.3.3",
"xml": "^1.0.1",
"xregexp": "^4.3.0",
"yargs": "16.2.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
@@ -153,12 +154,12 @@
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"coveralls": "3.1.0",
"eslint": "7.17.0",
"eslint": "7.18.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"grunt": "1.3.0",
"grunt-contrib-watch": "1.1.0",
"husky": "4.3.6",
"husky": "4.3.8",
"jsdom": "16.4.0",
"lint-staged": "10.5.3",
"mocha": "8.2.1",

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "لقد شاركت بالتصويت ، ألا تذكر؟",
"reputation-system-disabled": "نظام السمعة معطل",
"downvoting-disabled": "التصويتات السلبية معطلة",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Можете да изтривате съобщенията си в разговорите до %1 секунда/и след пускането им",
"chat-deleted-already": "Това съобщение вече е изтрито.",
"chat-restored-already": "Това съобщение вече е възстановено.",
"chat-room-does-not-exist": "Стаята за разговори не съществува.",
"already-voting-for-this-post": "Вече сте дали глас за тази публикация.",
"reputation-system-disabled": "Системата за репутация е изключена.",
"downvoting-disabled": "Отрицателното гласуване е изключено",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Опашка за публикации",
"description": "Няма публикации в опашката. <br> За да включите тази функционалност, идете в <a href=\"%1\">Настройки &rarr; Публикуване &rarr; Опашка за публикации</a> и включете <strong>Опашката за публикации</strong>.",
@@ -7,5 +8,11 @@
"content": "Съдържание",
"posted": "Публикувано",
"reply-to": "Отговор на „%1“",
"content-editable": "Можете да щракнете върху всеки от текстовете, за да ги редактирате преди публикуване."
"content-editable": "Щракнете върху съдържание, за да го редактирате",
"category-editable": "Щракнете върху категория, за да я редактирате",
"title-editable": "Щракнете върху заглавие, за да го редактирате",
"reply": "Отговор",
"topic": "Тема",
"accept": "Приемане",
"reject": "Отказване"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "সম্মাননা ব্যাবস্থা নিস্ক্রীয় রাখা হয়েছে",
"downvoting-disabled": "ঋণাত্মক ভোট নিস্ক্রীয় রাখা হয়েছে।",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Je vám umožněno odstranit konverzační zprávy pod dobu %1 sekund/y po jejich odeslání",
"chat-deleted-already": "Tato konverzační zpráva již byla odstraněna.",
"chat-restored-already": "Tato konverzační zpráva již byla obnovena.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Již jste v tomto příspěvku hlasoval.",
"reputation-system-disabled": "Systém reputací je zakázán.",
"downvoting-disabled": "Systém nesouhlasu je zakázán",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Fronta příspěvků",
"description": "Nejsou žádné příspěvky ve frontě. Pro povolení této funkčnosti, přejděte do <a href=\"%1\">Nastavení Příspěvky Fronta příspěvků</a> a povolte <strong>Fronta příspěvků</strong>.",
@@ -7,5 +8,11 @@
"content": "Obsah",
"posted": "Přidáno",
"reply-to": "Odpovědět na \"%1\"",
"content-editable": "Kvůli úpravám a před odesláním příspěvku můžete klikat na obsah."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Vurderingssystem er slået fra.",
"downvoting-disabled": "Nedvurdering er slået fra",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Du darfst Chat-Nachrichten nur bis zu %1 Sekunde(n) nach der erstellung löschen",
"chat-deleted-already": "Diese Chatnachricht wurde bereits gelöscht.",
"chat-restored-already": "Diese Chatnachricht wurde bereits wiederhergestellt.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Du hast diesen Beitrag bereits bewertet.",
"reputation-system-disabled": "Das Reputationssystem ist deaktiviert.",
"downvoting-disabled": "Downvotes sind deaktiviert.",

View File

@@ -62,7 +62,7 @@
"downvoters": "Downvoter",
"downvoted": "Negativ bewertet",
"views": "Aufrufe",
"posters": "Posters",
"posters": "Kommentatoren",
"reputation": "Ansehen",
"lastpost": "Letzter Beitrag",
"firstpost": "Erster Beitrag",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Beitragswarteschlange",
"description": "Es gibt keine Beiträge in der Warteschlange. <br> Um dieses Feature zu aktivieren, gehe auf <a href=\"%1\">Einstellungen &rarr; Posts &rarr; Beitragswarteschlange</a> und aktiviere <strong>Beitragswarteschlange</strong>.",
@@ -7,5 +8,11 @@
"content": "Inhalt",
"posted": "Gepostet",
"reply-to": "Auf \"%1\" antworten",
"content-editable": "Du kannst auf den einzelnen Inhalt klicken um ihn zu ändern bevor du ihn postest."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Το σύστημα φήμης έχει απενεργοποιηθεί.",
"downvoting-disabled": "Η καταψήφιση έχει απενεργοποιηθεί",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -158,6 +158,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Reputation system is disabled.",

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Reputation system is disabled.",
"downvoting-disabled": "Downvoting is disabled",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Reputation system is disabled.",
"downvoting-disabled": "Downvoting is disabled",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Sólo se te permite borrar mensajes de chat durante %1 segundo(s) después de enviar el mensaje",
"chat-deleted-already": "Este mensaje de chat ya ha sido borrado.",
"chat-restored-already": "Este mensaje de chat ya ha sido restaurado.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Ya has votado a este mensaje.",
"reputation-system-disabled": "El sistema de reputación está deshabilitado.",
"downvoting-disabled": "La votación negativa está deshabilitada.",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Cola de Mensajes",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Contenido",
"posted": "Publicado",
"reply-to": "Responder a %1",
"content-editable": "Puedes hacer click en contenido individual para editar antes de enviarlo."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Sa oled juba hääletanud sellel postitusel.",
"reputation-system-disabled": "Reputatsiooni süsteem ei ole aktiveeritud",
"downvoting-disabled": "Negatiivsete häälte andmine ei ole võimaldatud",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "شما قادر هستید پیام های چت را فقط بعد از %1 ثانیه پاک کنید",
"chat-deleted-already": "این پیام قبلا حذف شده است",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "شما قبلا به این پست رای داده اید.",
"reputation-system-disabled": "سیستم اعتبار غیر فعال شده است",
"downvoting-disabled": "رأی منفی غیر فعال شده است",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Reputation system is disabled.",
"downvoting-disabled": "Downvoting is disabled",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Vous n'êtes autorisé à supprimer des messages que pendant %1 seconde(s) après les avoir postés",
"chat-deleted-already": "Ce message a déjà été supprimé.",
"chat-restored-already": "Ce message de discussion a déjà été restauré.",
"chat-room-does-not-exist": "Le salon de discussion n'existe pas.",
"already-voting-for-this-post": "Vous avez déjà voté pour ce message.",
"reputation-system-disabled": "Le système de réputation est désactivé",
"downvoting-disabled": "Les votes négatifs ne sont pas autorisés",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "File dattente des messages",
"description": "Aucun messages dans la file d'attente. <br> Pour activer cette fonctionnalité, accédez aux <a href=\"%1\">Paramètres &rarr; Messages &rarr; File d'attente </a> et activez <strong>la file d'attente.",
@@ -7,5 +8,11 @@
"content": "Contenu",
"posted": "Posté",
"reply-to": "Répondre à \"%1\"",
"content-editable": "Vous pouvez cliquer sur le contenu pour le modifier avant de le poster."
"content-editable": "Cliquez sur le contenu pour modifier",
"category-editable": "Cliquez sur la catégorie pour modifier",
"title-editable": "Cliquez sur le titre pour modifier",
"reply": "Répondre",
"topic": "Sujet",
"accept": "Accepter",
"reject": "Refuser"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Xa votache esta mensaxe.",
"reputation-system-disabled": "O sistema de reputación está deshabilitado",
"downvoting-disabled": "Os votos negativos están deshabilitados",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -1,10 +1,10 @@
{
"rewards": "תגמולים",
"condition-if-users": "אם משתמש",
"condition-is": "Is:",
"condition-is": "לערך:",
"condition-then": "תגמל ב:",
"max-claims": "מספר פעמים בה ניתן לדרוש תגמול",
"zero-infinite": "הזן 0 לאינסוף",
"zero-infinite": "הזן 0 ללא הגבלה",
"delete": "מחק",
"enable": "הפעל",
"disable": "השבת",

View File

@@ -19,7 +19,7 @@
"settings/general": "כללי",
"settings/homepage": "דף הבית",
"settings/navigation": "ניווט",
"settings/reputation": "מוניטין ודיווחים",
"settings/reputation": "דיווחים ומוניטין",
"settings/email": "דוא\"ל",
"settings/user": "משתמשים",
"settings/group": "קבוצות",
@@ -27,7 +27,7 @@
"settings/uploads": "העלאות",
"settings/languages": "שפות",
"settings/post": "פוסטים",
"settings/chat": "צ'אטים",
"settings/chat": "צ'אט",
"settings/pagination": "עמודים",
"settings/tags": "תגיות",
"settings/notifications": "התראות",

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "הנך רשאי למחוק הודעת צ'אט עד %1 דק(ות) מרגע פרסום התגובה.",
"chat-deleted-already": "הודעות הצ'אט הזו כבר נמחקה.",
"chat-restored-already": "הודעות הצ'אט הזו כבר שוחזרה.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "הצבעת כבר בנושא זה",
"reputation-system-disabled": "מערכת המוניטין לא פעילה.",
"downvoting-disabled": "היכולת להצביע נגד לא פעילה",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "פוסטים ממתינים",
"description": "אין פוסטים בתור. <br> כדי לאפשר את תור ההרשמה, גשו ל<a href=\"%1\">הגדרות &rarr; פוסט &rarr; תור פוסטים</a> ואפשרו את <strong>תור פוסט</strong>.",
@@ -7,5 +8,11 @@
"content": "תוכן",
"posted": "נשלח",
"reply-to": "תגובה ל %1",
"content-editable": "אתה יכול ללחוץ על התוכן כדי לערוך אותו."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Već ste glasali za ovu objavu",
"reputation-system-disabled": "Sistem reputacije onemogućen.",
"downvoting-disabled": "Oduzimanje glasova je onemogućeno",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Hírnév funkció kikapcsolva.",
"downvoting-disabled": "Leszavazás funkció kikapcsolva",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Hozzászólási várósor",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Tartalom",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Sistem reputasi ditiadakan.",
"downvoting-disabled": "Downvoting ditiadakan",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Sei l'unico che ha il permesso di eliminare i messaggi per %1 secondi(o) dopo il loro invio",
"chat-deleted-already": "Il messaggio è già stato eliminato.",
"chat-restored-already": "Questo messaggio della chat è già stato ripristinato.",
"chat-room-does-not-exist": "La stanza chat non esiste.",
"already-voting-for-this-post": "Hai già votato per questo post",
"reputation-system-disabled": "Il sistema di reputazione è disabilitato.",
"downvoting-disabled": "Votata negativamente è disabilitato",

View File

@@ -13,7 +13,7 @@
"filter-active": "Ci sono uno o più filtri attivi in questa lista di segnalazioni",
"filter-reset": "Rimuovi Filtri",
"filters": "Opzioni Filtri",
"filter-reporterId": "Segnalatore UID",
"filter-reporterId": "UID segnalatore",
"filter-targetUid": "UID segnalato",
"filter-type": "Tipo Segnalazione",
"filter-type-all": "Tutto il Contenuto",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post in attesa",
"description": "Non ci sono post nella coda della post. <br> Per abilitare questa funzione, vai in <a href=\"%1\">Impostazioni &rarr; Post &rarr; Codice post</a> e abilita <strong>Post in attesa</strong>.",
@@ -7,5 +8,11 @@
"content": "Contenuto",
"posted": "Pubblicato",
"reply-to": "Rispondi a \"%1\"",
"content-editable": "Puoi cliccare su singoli contenuti per modificarli prima della pubblicazione."
"content-editable": "Clicca sul contenuto da modificare",
"category-editable": "Clicca sulla categoria da modificare",
"title-editable": "Clicca sul titolo da modificare",
"reply": "Rispondi",
"topic": "Discussione",
"accept": "Accetta",
"reject": "Rifiuta"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "投稿後、あなたは %1秒間(s)だけチャットメッセージを削除することを許可されています",
"chat-deleted-already": "このチャットメッセージは既に削除されています",
"chat-restored-already": "このチャットメッセージは既に削除されています",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "あなたはすでにこの投稿を評価しました。",
"reputation-system-disabled": "Reputation system is disabled.",
"downvoting-disabled": "Downvoting is disabled",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "채팅 메시지를 게시한 뒤 %1초 뒤부터 삭제가 가능합니다.",
"chat-deleted-already": "이미 삭제된 대화 메시지입니다.",
"chat-restored-already": "이 채팅 메시지는 이미 복원되었습니다.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "이미 이 포스트에 투표하셨습니다.",
"reputation-system-disabled": "평판 시스템이 비활성화되어있습니다.",
"downvoting-disabled": "비추천 기능이 비활성 상태입니다.",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "게시 대기열",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "컨텐츠",
"posted": "작성됨",
"reply-to": "'%1'에 대한 답글",
"content-editable": "게시하기 전에 콘텐츠를 클릭하여 편집 할 수 있습니다."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Trinti žinutes galima tik %1 sekundę(-es/-ių) po paskelbimo",
"chat-deleted-already": "Ši žinutė buvo pašalinta",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Jūs jau balsavote už šį pranešimą.",
"reputation-system-disabled": "Reputacijos sistema išjungta.",
"downvoting-disabled": "Downvoting yra išjungtas",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Pēc publicēšanas ir atļauts tikai %1 sekundes laika izdzēst sarunu",
"chat-deleted-already": "Saruna jau ir izdzēsta.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Tu jau balsoji par šo rakstu.",
"reputation-system-disabled": "Ranga punktu sistēma ir atspējota.",
"downvoting-disabled": "Balsošana \"pret\" ir atspējota",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Rakstu apstiprināšanas rinda",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Saturs",
"posted": "Datums",
"reply-to": "Atbildēt \"%1\"",
"content-editable": "Pirms publicēšanas var noklikšķināt uz saturu, lai to rediģētu."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Sistem reputasi dilumpuhkan.",
"downvoting-disabled": "Undi turun dilumpuhkan",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Ryktesystemet er deaktivert.",
"downvoting-disabled": "Nedstemming er deaktivert",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Het is slechts toegestaan om binnen %1 seconde(n) na plaatsen van het chat bericht, deze te verwijderen.",
"chat-deleted-already": "Dit chat bericht is al verwijderd.",
"chat-restored-already": "Dit chat bericht is al hersteld.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Je hebt al gestemd voor deze post.",
"reputation-system-disabled": "Reputatie systeem is uitgeschakeld.",
"downvoting-disabled": "Negatief stemmen is uitgeschakeld",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Berichtenwachtrij",
"description": "Er zijn geen berichten in de wachtrij. <br> Om deze functionaliteit in te schakelen, ga naar <a href=\"%1\">Instellingen &rarr; Bericht &rarr; Berichtenwachtrij</a> en schakel <strong>Berichtenwachtrij</strong> in.",
@@ -7,5 +8,11 @@
"content": "Inhoud",
"posted": "Geplaatst",
"reply-to": "Antwoord naar \"%1\"",
"content-editable": "Je kunt op individuele inhoud klikken om dit aan te passen voor het plaatsen."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Możesz skasować komunikat czatu tylko przez %1 sekund(y) po napisaniu.",
"chat-deleted-already": "Ten komunikat czatu jest już skasowany",
"chat-restored-already": "Ta wiadomość została już przywrócona",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Już zagłosowałeś na ten post",
"reputation-system-disabled": "System reputacji jest wyłączony.",
"downvoting-disabled": "Negatywna ocena postów jest wyłączona",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Kolejka postów",
"description": "Nie ma żadnych postów w kolejce. <br> Aby włączyć  funkcję, idź do: Ustawienia &rarr; Post &rarr; Kolejka postów</a> i włącz <strong>kolejkę postów</strong>.",
@@ -7,5 +8,11 @@
"content": "Zawartość",
"posted": "Napisano",
"reply-to": "Odpowiedz do \"%1\"",
"content-editable": "Możesz kliknąć na danej treści, by edytować ją przed publikacją."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Você só pode deletar mensagens de chat %1 segundo(s) após postar",
"chat-deleted-already": "Essa mensagem de chat já foi deletada",
"chat-restored-already": "Essa mensagem de chat já foi restaurada.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Você já votou neste post.",
"reputation-system-disabled": "O sistema de reputação está desabilitado.",
"downvoting-disabled": "Negativação está desabilitada",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Fila de Posts",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Conteúdo",
"posted": "Postado",
"reply-to": "Resposta para \"%1\"",
"content-editable": "Você pode clicar em um post individual para editar antes de postar."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Só tens permissão para apagar mensagens do chat %1 segundo(s) depois de publicares",
"chat-deleted-already": "Esta mensagem já foi apagada.",
"chat-restored-already": "Esta mensagem já foi restaurada.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Já votaste nesta publicação.",
"reputation-system-disabled": "O sistema de reputação está desativado.",
"downvoting-disabled": "Os votos negativos estão desativados",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Publicações por Aprovar",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Conteúdo",
"posted": "Publicada",
"reply-to": "Responder a \"%1\"",
"content-editable": "Podes clicar no conteúdo da publicação para o editares antes de a publicares."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Sistemul de reputație este dezactivat.",
"downvoting-disabled": "Votarea negativă este dezactivată",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -9,7 +9,7 @@
"private": "Закрытая",
"edit": "Редактировать",
"delete": "Удалить",
"privileges": "Privileges",
"privileges": "Права доступа",
"download-csv": "CSV",
"search-placeholder": "Поиск",
"create": "Создать группу",

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Вам разрешено удалять сообщения чата за% 1 секунду после публикации",
"chat-deleted-already": "Это сообщение чата уже удалено.",
"chat-restored-already": "Это сообщение чата уже было восстановлено.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Вы уже проголосовали за это сообщение.",
"reputation-system-disabled": "Система репутации отключена.",
"downvoting-disabled": "Понижение рейтинга отключено",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Очередь на публикацию",
"description": "В очереди на публикацию нет сообщений. <br> Чтобы включить эту функцию, перейдите в <a href=\"%1\">Настройки &rarr; Сообщения &rarr; Очередь на публикацию</a> и включите <strong>Очередь на публикацию</strong>.",
@@ -7,5 +8,11 @@
"content": "Содержимое",
"posted": "Время",
"reply-to": "Ответ \"%1\"",
"content-editable": "Вы можете отредактировать содержимое сообщения перед публикацией"
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Ibijyanye n'itangwa ry'amanota ntibyemerewe. ",
"downvoting-disabled": "Kwambura amanota ntibyemerewe",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "You have already voted for this post.",
"reputation-system-disabled": "Reputation system is disabled.",
"downvoting-disabled": "Downvoting is disabled",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Je Vám umožnené odstrániť správy konverzácie po dobu %1 sekúnd po ich odoslaní",
"chat-deleted-already": "Táto správa konverzácie už bola odstránená.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Za tento príspevok ste už hlasovali.",
"reputation-system-disabled": "Systém reputácie je zablokovaný.",
"downvoting-disabled": "Hlasovanie proti je zablokované",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Príspevky vo fronte",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Obsah",
"posted": "Pridané",
"reply-to": "Odpovedať na \"%1\"",
"content-editable": "Kvôli úpravám a pred odoslaním príspevku môžete klikať na obsah."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Za to objavo ste že glasovali.",
"reputation-system-disabled": "Sistem za ugled je onemogočen.",
"downvoting-disabled": "Negativno glasovanje je onemogočeno.",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Време у којем вам је дозвољено брисање порука ћаскања након објављивања: %1 сек.",
"chat-deleted-already": "Ова порука ћаскања је већ избрисана.",
"chat-restored-already": "Ова порука ћаскања је већ обновљена.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Већ сте гласали за ову поруку.",
"reputation-system-disabled": "Угледи су онемогућени.",
"downvoting-disabled": "Негативно гласање је онемогућено",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Садржај",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Du kan endast radera chattmeddelanden %1 sekunder efter att du skrivit dem",
"chat-deleted-already": "Detta chattmeddelande har redan raderats.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Du har redan röstat på det här inlägget.",
"reputation-system-disabled": "Ryktessystemet är inaktiverat.",
"downvoting-disabled": "Nedröstning är inaktiverat",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "You are only allowed to delete chat messages for %1 second(s) after posting",
"chat-deleted-already": "This chat message has already been deleted.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "คุณได้โหวตโพสต์นี้แล้ว",
"reputation-system-disabled": "ระบบชื่อเสียงถูกปิดใช้งาน",
"downvoting-disabled": "\"การโหวตลง\" ถูกปิดใช้งาน",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Gönderildikten sonra yalnızca %1 saniye mesajı(ları) silmene izin verilir",
"chat-deleted-already": "Bu sohbet mesajı zaten silinmiş.",
"chat-restored-already": "Bu sohbet mesajı zaten geri yüklendi.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Bu gönderi için zaten oy verdin.",
"reputation-system-disabled": "İtibar sistemi devre dışı.",
"downvoting-disabled": "Aşagı oylama kapatılmış",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "İleti Kuyruğu",
"description": "İleti kuyruğunda hiçbir ileti bulunmamaktadır. <br> Bu özelliği aktifleştirmek için, şuraya gidin <a href=\"%1\">Ayarlar &rarr; İleti &rarr; İleti Kuyruğu</a> ve şu özelliği aktifleştirin: <strong>İleti Kuyruğu</strong>.",
@@ -7,5 +8,11 @@
"content": "İçerik",
"posted": "Gönderildi",
"reply-to": "\"%1\"'e Cevap Ver",
"content-editable": "Göndermeden önce her bir içeriğe tıklayıp düzenleyebilirsiniz."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Ви можете видаляти повідомлення чату лише через %1 секунд після публікації",
"chat-deleted-already": "Це повідомлення чату вже було видалено.",
"chat-restored-already": "Це чат повідомлення вже було відновлене",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Ви вже проголосували за цей пост.",
"reputation-system-disabled": "Система репутацій вимкнена.",
"downvoting-disabled": "Голосування проти вимкнено",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Черга Постів",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Зміст",
"posted": "Опубліковано",
"reply-to": "Відповідь для \"%1\"",
"content-editable": "Ви можете натиснути на окремий вміст, щоб редагувати його перед публікацією."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "Bạn chỉ được phép xóa cuộc trò chuyện này sau %1 giây(s) sau khi viết bài.",
"chat-deleted-already": "Cuộc trò chuyện này đã được xóa.",
"chat-restored-already": "This chat message has already been restored.",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "Bạn đã bỏ phiếu cho bài viết này",
"reputation-system-disabled": "Hệ thống tín nhiệm đã bị vô hiệu hóa.",
"downvoting-disabled": "Downvote đã bị tắt",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "Post Queue",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
@@ -7,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "您只能在发布 %1 秒后删除聊天信息",
"chat-deleted-already": "聊天消息已经被删除",
"chat-restored-already": "此聊天消息已经恢复。\n",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "您已为此帖回复投过票了。",
"reputation-system-disabled": "声望系统已禁用。",
"downvoting-disabled": "踩已被禁用",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "发布队列",
"description": "发布队列中暂无新帖。启用此特性,请前往设置&rarr;发布&rarr;发布队列,然后启用发布队列。",
@@ -7,5 +8,11 @@
"content": "内容",
"posted": "发布",
"reply-to": "回复\"%1\"",
"content-editable": "发帖前,您可以点击内容进行编辑。"
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -133,6 +133,7 @@
"chat-delete-duration-expired": "您只能在發佈 %1 秒後刪除聊天訊息",
"chat-deleted-already": "聊天訊息已經被刪除",
"chat-restored-already": "此聊天訊息已經恢復。",
"chat-room-does-not-exist": "Chat room does not exist.",
"already-voting-for-this-post": "您已讚過此貼文回覆了。",
"reputation-system-disabled": "聲望系統已停用。",
"downvoting-disabled": "倒讚已被停用",

View File

@@ -1,3 +1,4 @@
{
"post-queue": "貼文隊列",
"description": "貼文隊列中暫無新貼文。啟用此功能,請前往設定&rarr;貼文&rarr;貼文隊列,然後啟用貼文隊列。",
@@ -7,5 +8,11 @@
"content": "內容",
"posted": "發佈",
"reply-to": "回覆\"%1\"",
"content-editable": "發文前,您可以點擊內容進行編輯。"
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -58,4 +58,5 @@ get:
type: string
title:
type: string
- $ref: ../../../components/schemas/Breadcrumbs.yaml#/Breadcrumbs
- $ref: ../../../components/schemas/CommonProps.yaml#/CommonProps

View File

@@ -42,6 +42,8 @@ tags:
paths:
/ping:
$ref: 'write/ping.yaml'
/utilities/login:
$ref: 'write/login.yaml'
/users/:
$ref: 'write/users.yaml'
/users/{uid}:
@@ -102,10 +104,16 @@ paths:
$ref: 'write/posts/pid.yaml'
/posts/{pid}/state:
$ref: 'write/posts/pid/state.yaml'
/posts/{pid}/move:
$ref: 'write/posts/pid/move.yaml'
/posts/{pid}/vote:
$ref: 'write/posts/pid/vote.yaml'
/posts/{pid}/bookmark:
$ref: 'write/posts/pid/bookmark.yaml'
/posts/{pid}/diffs:
$ref: 'write/posts/pid/diffs.yaml'
/posts/{pid}/diffs/{since}:
$ref: 'write/posts/pid/diffs/since.yaml'
/admin/settings/{setting}:
$ref: 'write/admin/settings/setting.yaml'
/files/:

View File

@@ -0,0 +1,30 @@
post:
tags:
- utilities
summary: verify login credentials
description: |
This route accepts a username/password or email/password pair (dependent on forum settings), returning a standard user object if credentials are validated successfully.
requestBody:
content:
application/json:
schema:
type: object
properties:
username:
type: string
example: admin
password:
type: string
example: '123456'
responses:
'200':
description: credentials successfully validated
content:
application/json:
schema:
type: object
properties:
status:
$ref: ../components/schemas/Status.yaml#/Status
response:
$ref: ../components/schemas/UserObject.yaml#/UserObjectSlim

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