Merge commit '7de8b732c040228838ae2f999f823849f2386ad0' into v1.15.x

This commit is contained in:
Misty (Bot)
2020-11-26 01:11:07 +00:00
409 changed files with 2208 additions and 1280 deletions

View File

@@ -1,3 +1,80 @@
#### v1.15.2 (2020-11-18)
##### Chores
* incrementing version number - v1.15.2-beta.1 (20c05e80)
* remove debug log (0a0b4661)
* incrementing version number - v1.15.2-beta.0 (996174a1)
* **deps:** update dependency smtp-server to v3.8.0 (5f5f0edb)
##### Documentation Changes
* openapi schema for user/group exist check, session deletion (bcccb331)
##### New Features
* #5274 (4e9b10ab)
* #4456 (fb567a7a)
* #8475, allow flagging self posts (a6afcfd5)
* #7550, show message if post is queued when js is disabled (120999bf)
* #8171, add oldCategory if topic is moved (35f932cd)
* #8204, separate notification type for group chats (b44ddecd)
* add test for custom translations (7928036a)
* https://github.com/NodeBB/NodeBB/issues/8147 (1d6bcbeb)
* invites regardless of registration type, invite privilege, groups to join on acceptance (#8786) (3ccebf11)
* add nodejs version to issue template (29c2ca94)
* allow groups to specify which cids to show member posts from (#8875) (8518404e)
* **api:** account deletion routes for the Write API (#8881) (a0b7a823)
* **deps:** benchpressjs@2.2.1 (#8887) (d30ea256)
##### Bug Fixes
* #6407, fix feeds (fa4177c3)
* navigation highlight (62b62821)
* benchpress warnings (a87ccccc)
* benchpress warnings (dfdc0c42)
* internal helper method hasGlobalPrivilege, DRY (e1d7c4d8)
* spec (2f4653a3)
* #8884, remove header/footer cache (e4d2764d)
* check tid in event handlers client side (9dac9630)
* #8883 (f14e42d8)
* #8872 missing admin/menu language key+fallback (fdab76f8)
* run every hour, dont show message if average_time is 0 (51b7eca1)
* add back test timeout for exports (b3e00489)
* pass length to messaging checkContent hook (dc9668e4)
* **deps:**
* update dependency nodebb-theme-persona to v10.2.74 (#8905) (5f6137f0)
* update dependency nodebb-theme-persona to v10.2.73 (#8904) (c2019b7b)
* update dependency nodebb-plugin-composer-default to v6.4.7 (#8902) (b7b1f203)
* update dependency nodebb-theme-persona to v10.2.72 (#8903) (bee8cfe4)
* update dependency nodebb-theme-vanilla to v11.3.3 (422aa7f0)
* update dependency nodebb-theme-persona to v10.2.71 (3b6e71d5)
* update dependency nodebb-theme-persona to v10.2.70 (d6dd1cb6)
* update dependency nodebb-theme-slick to v1.3.2 (2ce1fcd3)
* update dependency nodebb-theme-vanilla to v11.3.2 (9f2d0d42)
* update dependency nodebb-theme-persona to v10.2.69 (15810643)
* update dependency sharp to v0.26.3 (84d54577)
* update dependency nodebb-plugin-mentions to v2.13.5 (dde9f189)
* update dependency json2csv to v5.0.5 (b63b7ae5)
* update dependency benchpressjs to v2.2.2 (d1e804aa)
* update dependency nodebb-theme-vanilla to v11.3.1 (#8878) (85aaeded)
* update dependency nodebb-theme-slick to v1.3.1 (bbfb276a)
* update dependency nodebb-theme-persona to v10.2.68 (ec70329a)
* update dependency nodebb-plugin-spam-be-gone to v0.7.6 (#8877) (45922fae)
* update dependency nodebb-plugin-spam-be-gone to v0.7.5 (#8876) (48e82520)
* update dependency nodebb-plugin-spam-be-gone to v0.7.4 (#8874) (eab27f23)
##### Refactors
* client-side handlers for user invitations (d83eb7f8)
* async/await controllers/index.js (5598130a)
* less dupe code (8fbe8324)
##### Tests
* new api test to ensure each path's parameters are defined in context (97842c43)
* updated test name to be more specific (319cfeaa)
#### v1.15.1 (2020-11-11)
##### Chores

View File

@@ -89,6 +89,7 @@ module.exports = function (grunt) {
clientUpdated: {
files: [
'public/src/**/*.js',
'public/vendor/**/*.js',
...clientUpdated,
'node_modules/benchpressjs/build/benchpress.js',
],
@@ -143,8 +144,17 @@ module.exports = function (grunt) {
if (worker) {
worker.kill();
}
const execArgv = [];
const inspect = process.argv.find(a => a.startsWith('--inspect'));
if (inspect) {
execArgv.push(inspect);
}
worker = fork('app.js', args, {
env: env,
env,
execArgv,
});
}

View File

@@ -114,6 +114,7 @@
"email:smtpTransport:pool": false,
"hideFullname": 0,
"hideEmail": 0,
"showFullnameAsDisplayName": 0,
"allowGuestHandles": 0,
"guestsIncrementTopicViews": 1,
"allowGuestReplyNotifications": 1,

View File

@@ -2,7 +2,7 @@
"name": "nodebb",
"license": "GPL-3.0",
"description": "NodeBB Forum",
"version": "1.15.2",
"version": "1.15.3-beta.0",
"homepage": "http://www.nodebb.org",
"repository": {
"type": "git",
@@ -39,7 +39,7 @@
"ace-builds": "^1.4.9",
"archiver": "^5.0.0",
"async": "^3.2.0",
"autoprefixer": "^10.0.0",
"autoprefixer": "10.0.2",
"bcryptjs": "2.4.3",
"benchpressjs": "2.2.2",
"body-parser": "^1.19.0",
@@ -92,7 +92,7 @@
"@nodebb/bootswatch": "3.4.2",
"@nodebb/mubsub": "1.7.1",
"@nodebb/socket.io-adapter-mongo": "3.1.1",
"nconf": "^0.10.0",
"nconf": "^0.11.0",
"nodebb-plugin-composer-default": "6.4.7",
"nodebb-plugin-dbsearch": "4.1.2",
"nodebb-plugin-emoji": "^3.3.0",
@@ -103,9 +103,9 @@
"nodebb-plugin-spam-be-gone": "0.7.6",
"nodebb-rewards-essentials": "0.1.4",
"nodebb-theme-lavender": "5.0.14",
"nodebb-theme-persona": "10.2.74",
"nodebb-theme-slick": "1.3.2",
"nodebb-theme-vanilla": "11.3.3",
"nodebb-theme-persona": "10.2.88",
"nodebb-theme-slick": "1.3.3",
"nodebb-theme-vanilla": "11.3.4",
"nodebb-widget-essentials": "4.1.2",
"nodemailer": "^6.4.6",
"nprogress": "0.2.0",
@@ -114,7 +114,7 @@
"passport-local": "1.0.0",
"pg": "^8.0.2",
"pg-cursor": "^2.1.9",
"postcss": "8.1.7",
"postcss": "8.1.10",
"postcss-clean": "1.1.0",
"promise-polyfill": "^8.1.3",
"prompt": "^1.0.0",
@@ -157,14 +157,14 @@
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"coveralls": "3.1.0",
"eslint": "7.13.0",
"eslint": "7.14.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.0",
"jsdom": "16.4.0",
"lint-staged": "10.5.1",
"lint-staged": "10.5.2",
"mocha": "8.2.1",
"mocha-lcov-reporter": "1.3.0",
"nyc": "15.1.0",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "السماح بحذف الحساب",
"hide-fullname": "إخفاء الإسم الكامل عن المستخدمين",
"hide-email": "إخفاء البريد الإلكتروني عن المستخدمين",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "القوالب",
"disable-user-skins": "منع المستخدمين من اختيار سمة مخصص",
"account-protection": "حماية الحساب",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "موضوع غير متواجد",
"invalid-pid": "رد غير موجود",
"invalid-uid": "مستخدم غير موجود",
"invalid-date": "A valid date must be provided",
"invalid-username": "اسم المستخدم غير مقبول",
"invalid-email": "البريد الاكتروني غير مقبول",
"invalid-fullname": "Invalid Fullname",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "هل أنت متأكد أنك تريد حذف هذه المشاركة؟",
"post_restore_confirm": "هل أنت متأكد أنك تريد استعادة هذه المشاركة؟",
"post_purge_confirm": "هل أنت متأكد أنك تريد تطهير هذه المشاركة؟",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "تحميل الفئات",
"confirm_move": "انقل",
"confirm_fork": "فرع",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Кодове",
"settings": "Settings",
"lead-text": "На тази страница можете да настроите достъпа до ППИ за писане в NodeBB.",
"intro": "По подразбиране ППИ за писане удостоверява потребителите чрез бисквитката им за сесията, но NodeBB поддържа и удостоверяване чрез метода „Bearer“, използвайки кодовете от тази страница.",
"docs": "Щракнете тук за достъп до пълната документация на ППИ",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "Потребителски ИД",
"uid-help-text": "Посочете потребителски ИД, който да бъде свързан с този код. Ако ИД е <code>0</code>, това ще се счита за <em>главен</em> код, който може да приема идентичността на всеки от другите потребители чрез параметъра <code>_uid</code>",
"description": "Описание",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Позволяване на изтриването на профила",
"hide-fullname": "Скриване на пълното име от потребителите",
"hide-email": "Скриване на е-пощата от потребителите",
"show-fullname-as-displayname": "Показване на цялото име на потребителя, ако е налично",
"themes": "Теми",
"disable-user-skins": "Потребителите да не могат да избират собствен облик",
"account-protection": "Защита на акаунта",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "Грешен идентификатор на тема",
"invalid-pid": "Грешен идентификатор на публикация",
"invalid-uid": "Грешен идентификатор на потребител",
"invalid-date": "Трябва да бъде посочена правилна дата",
"invalid-username": "Грешно потребителско име",
"invalid-email": "Грешна е-поща",
"invalid-fullname": "Грешно пълно име",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "Наистина ли искате да изтриете тази публикация?",
"post_restore_confirm": "Наистина ли искате да възстановите тази публикация?",
"post_purge_confirm": "Наистина ли искате да изчистите тази публикация?",
"pin-modal-expiry": "Дата на давност",
"pin-modal-help": "Ако желаете, тук можете да посочите дата на давност за закачените теми. Можете и да оставите полето празно, при което темата ще остане закачена, докато не бъде откачена ръчно.",
"load_categories": "Зареждане на категориите",
"confirm_move": "Преместване",
"confirm_fork": "Разделяне",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Allow account deletion",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "ভুল টপিক নাম্বার",
"invalid-pid": "ভুল পোস্ট নাম্বার",
"invalid-uid": "ভুল ব্যবহারকারী নাম্বার",
"invalid-date": "A valid date must be provided",
"invalid-username": "ভুল ইউজারনেম",
"invalid-email": "ভুল ইমেইল",
"invalid-fullname": "Invalid Fullname",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "আপনি নিশ্চিত যে আপনি এই পোষ্টটি মুছে ফেলতে চান ?",
"post_restore_confirm": "আপনি নিশ্চিত যে আপনি এই পোষ্টটি পুনরূূদ্ধার করতে চান ? ",
"post_purge_confirm": "আপনি নিশ্চিত যে আপনি এই পোষ্টটি পার্জ করতে চান ? ",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "ক্যাটাগরী লোড করা হচ্ছে",
"confirm_move": "সরান",
"confirm_fork": "ফর্ক",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Povolit smazání účtu",
"hide-fullname": "Skrýt jméno před uživateli",
"hide-email": "Skrýt e-mail před uživateli",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Motivy",
"disable-user-skins": "Zabránit uživateli ve výběru vlastního vzhledu",
"account-protection": "Ochrana účtu",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "Neplatné ID tématu",
"invalid-pid": "Neplatné ID příspěvku",
"invalid-uid": "Neplatné ID uživatele",
"invalid-date": "A valid date must be provided",
"invalid-username": "Neplatné uživatelské jméno",
"invalid-email": "Neplatný e-mail",
"invalid-fullname": "Neplatný celý název",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "Jste si jist/a, že chcete odstranit tento příspěvek?",
"post_restore_confirm": "Jste si jist/a, že chcete obnovit tento příspěvek?",
"post_purge_confirm": "Jste si jist/a, že chcete tento příspěvek vyčistit?",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "Načítání kategorií",
"confirm_move": "Přesunout",
"confirm_fork": "Rozdělit",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Allow account deletion",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "Ugyldig Tråd ID",
"invalid-pid": "Ugyldig Indlæg ID",
"invalid-uid": "Ugyldig Bruger ID",
"invalid-date": "A valid date must be provided",
"invalid-username": "Ugyldig Brugernavn",
"invalid-email": "Ugyldig Email",
"invalid-fullname": "Invalid Fullname",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "Er du sikker på at du vil slette dette indlæg?",
"post_restore_confirm": "Er du sikker på at du vil gendanne dette indlæg?",
"post_purge_confirm": "Er du sikker på at du vil udradere dette indlæg?",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "Indlæser kategorier",
"confirm_move": "Flyt",
"confirm_fork": "Fraskil",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "Von dieser Seite aus können Sie den Zugriff auf die Schreib-API in NodeBB konfigurieren.",
"intro": "Standardmäßig authentifiziert die <code>write-api</code> Nutzer anhand ihres Sitzungs-Cookies, aber NodeBB unterstützt auch die Bearer-Authentifizierung über Token, die über diese Seite generiert werden.",
"docs": "Klicken Sie hier, um auf die vollständige API-Spezifikation zuzugreifen",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "NutzerID",
"uid-help-text": "Geben Sie eine NutzerID an, die mit diesem Token verknüpft werden soll. Wenn die Benutzer-ID <code>0</code> lautet, wird sie als ein <em>master</em>-Token betrachtet, das die Identität anderer Benutzer auf der Grundlage des Parameters <code>_uid</code> annehmen kann.",
"description": "Beschreibung",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Erlaube löschen des Kontos",
"hide-fullname": "Den 'Kompletten Namen' von Benutzern verstecken",
"hide-email": "Die Email-Adresse von Benutzern verstecken",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Verhindere das Benutzer eigene Skins verwenden",
"account-protection": "Kontosicherheit",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "Ungültige Themen-ID",
"invalid-pid": "Ungültige Beitrags-ID",
"invalid-uid": "Ungültige Benutzer-ID",
"invalid-date": "A valid date must be provided",
"invalid-username": "Ungültiger Benutzername",
"invalid-email": "Ungültige E-Mail-Adresse",
"invalid-fullname": "Ungültiger Name",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "Sind Sie sicher, dass Sie diesen Beitrag löschen möchten?",
"post_restore_confirm": "Sind Sie sicher, dass Sie diesen Beitrag wiederherstellen möchten?",
"post_purge_confirm": "Sind Sie sicher, dass Sie diesen Beitrag endgültig löschen möchten?",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "Kategorien laden",
"confirm_move": "Verschieben",
"confirm_fork": "Aufspalten",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Allow account deletion",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "Άκυρο ID Θέματος",
"invalid-pid": "Άκυρο ID Δημοσίευσης",
"invalid-uid": "Άκυρο ID Χρήστη",
"invalid-date": "A valid date must be provided",
"invalid-username": "Άκυρο Όνομα Χρήστη",
"invalid-email": "Άκυρο Email",
"invalid-fullname": "Invalid Fullname",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "Είσαι σίγουρος/η πως θέλεις να διαγράψεις αυτή την δημοσίευση;",
"post_restore_confirm": "Είσαι σίγουρος/η πως θέλεις να επαναφέρεις αυτή την δημοσίευση;",
"post_purge_confirm": "Είσαι σίγουρος/η πως θέλεις να εκκαθαρίσεις αυτή την δημοσίευση;",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "Οι Κατηγορίες Φορτώνουν",
"confirm_move": "Μετακίνηση",
"confirm_fork": "Διαχωρισμός",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Allow account deletion",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

View File

@@ -11,6 +11,7 @@
"invalid-tid": "Invalid Topic ID",
"invalid-pid": "Invalid Post ID",
"invalid-uid": "Invalid User ID",
"invalid-date": "A valid date must be provided",
"invalid-username": "Invalid Username",
"invalid-email": "Invalid Email",

View File

@@ -103,6 +103,9 @@
"post_restore_confirm": "Are you sure you want to restore this post?",
"post_purge_confirm": "Are you sure you want to purge this post?",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "Loading Categories",
"confirm_move": "Move",
"confirm_fork": "Fork",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Allow account deletion",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "Invalid Topic ID",
"invalid-pid": "Invalid Post ID",
"invalid-uid": "Invalid User ID",
"invalid-date": "A valid date must be provided",
"invalid-username": "Invalid Username",
"invalid-email": "Invalid Email",
"invalid-fullname": "Invalid Fullname",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "Are you sure you want to delete this post?",
"post_restore_confirm": "Are you sure you want to restore this post?",
"post_purge_confirm": "Are you sure you want to purge this post?",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "Loading Categories",
"confirm_move": "Move",
"confirm_fork": "Fork",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Allow account deletion",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "Invalid Topic ID",
"invalid-pid": "Invalid Post ID",
"invalid-uid": "Invalid User ID",
"invalid-date": "A valid date must be provided",
"invalid-username": "Invalid Username",
"invalid-email": "Invalid Email",
"invalid-fullname": "Invalid Fullname",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "Are you sure you want to delete this post?",
"post_restore_confirm": "Are you sure you want to restore this post?",
"post_purge_confirm": "Are you sure you want to purge this post?",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "Loading Categories",
"confirm_move": "Move",
"confirm_fork": "Fork",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Permitir borrar cuenta",
"hide-fullname": "Esconder nombre completo de los usuarios",
"hide-email": "Esconder email de los usuarios",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Plantillas",
"disable-user-skins": "Impedir que los usuarios elijan plantilla",
"account-protection": "Protección de Cuenta",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "Identificador de tema no válido",
"invalid-pid": "Identificador de publicación no válido",
"invalid-uid": "Identificador de usuario no válido",
"invalid-date": "A valid date must be provided",
"invalid-username": "Nombre de usuario no válido",
"invalid-email": "Correo electrónico no válido",
"invalid-fullname": "Invalid Fullname",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "¿Estás seguro de que quieres eliminar este mensaje?",
"post_restore_confirm": "¿Estás seguro de que quieres restaurar este mensaje?",
"post_purge_confirm": "¡Estás seguro de que quieres purgar esta publicación?",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "Cargando categorías",
"confirm_move": "Mover",
"confirm_fork": "Dividir",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Allow account deletion",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "Vigane teema ID",
"invalid-pid": "Vigane postituse ID",
"invalid-uid": "Vigane kasutaja ID",
"invalid-date": "A valid date must be provided",
"invalid-username": "Vigane kasutajanimi",
"invalid-email": "Vigane emaili aadress",
"invalid-fullname": "Invalid Fullname",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "Oled kindel, et soovid kustutada selle postituse?",
"post_restore_confirm": "Oled kindel, et soovid taastada antud postituse?",
"post_purge_confirm": "Oled kindel, et soovid täielikult selle teema kustutada?",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "Laen kategooriaid",
"confirm_move": "Liiguta",
"confirm_fork": "Fork",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -4,7 +4,7 @@
"sorting.oldest-to-newest": "Oldest to Newest",
"sorting.newest-to-oldest": "Newest to Oldest",
"sorting.most-votes": "Most Votes",
"sorting.most-posts": "Most Posts",
"sorting.most-posts": "بیشترین پست",
"sorting.topic-default": "Default Topic Sorting",
"length": "Post Length",
"post-queue": "Post Queue",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Allow account deletion",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "شناسه موضوع نامعتبر است.",
"invalid-pid": "شناسه پست نامعتبر است.",
"invalid-uid": "شناسه کاربر نامعتبر است.",
"invalid-date": "A valid date must be provided",
"invalid-username": "نام کاربری نامعتبر است.",
"invalid-email": "ایمیل نامعتبر است.",
"invalid-fullname": "Invalid Fullname",

View File

@@ -25,7 +25,7 @@
"pagination.out_of": "%1 از %2",
"pagination.enter_index": "شماره را وارد کنید",
"header.admin": "مدیر",
"header.categories": "دسته بندیها",
"header.categories": "دستهبندیها",
"header.recent": "تازه‌ها",
"header.unread": "نخوانده‌ها",
"header.tags": "برچسب‌ها",
@@ -33,7 +33,7 @@
"header.top": "Top",
"header.users": "کاربران",
"header.groups": "گروه‌ها",
"header.chats": "چتها",
"header.chats": "چت ها",
"header.notifications": "آگاه‌سازی‌ها",
"header.search": "جستجو",
"header.profile": "نمایه",
@@ -56,13 +56,13 @@
"best": "بهترین",
"votes": "رای ها",
"x-votes": "%1 votes",
"voters": "Voters",
"voters": "رای دهندگان",
"upvoters": "موافقین",
"upvoted": "رای مثبت",
"downvoters": "مخالفین",
"downvoted": "رای منفی",
"views": "بازدیدها",
"posters": "Posters",
"posters": "کاربران",
"reputation": "اعتبار",
"lastpost": "Last post",
"firstpost": "First post",

View File

@@ -52,7 +52,7 @@
"composer.formatting.italic": "کج",
"composer.formatting.list": "فهرست",
"composer.formatting.strikethrough": "خط خورده",
"composer.formatting.code": "Code",
"composer.formatting.code": "کد",
"composer.formatting.link": "پیوند",
"composer.formatting.picture": "عکس",
"composer.upload-picture": "بارگذاری عکس",

View File

@@ -25,9 +25,9 @@
"upvoted_your_post_in_multiple": "<strong>%1</strong>و %2 دیگران به پست شما رای مثبت دادن در <strong>%3</strong>.",
"moved_your_post": "<strong>%1</strong> پست شما را به <strong>%2</strong> انتقال داده است",
"moved_your_topic": "<strong>%2</strong> <strong>%1</strong> را منتقل کرده است",
"user_flagged_post_in": "<strong>%1</strong> پست شما را در <strong>%2</strong> علامتدار کرده",
"user_flagged_post_in_dual": "<strong>%1</strong> و <strong>%2</strong> نشانه‌گذاری کرده اند پست را در <strong>%3</strong>",
"user_flagged_post_in_multiple": "<strong>%1</strong> و %2 نفر دیگر این پست را نشانه‌گذاری کرده در <strong>%3</strong>",
"user_flagged_post_in": "<strong>%1</strong> پستی را در <strong>%2</strong> گزارش کرده",
"user_flagged_post_in_dual": "<strong>%1</strong> و <strong>%2</strong> پستی را در <strong>%3</strong> گزارش کرده اند",
"user_flagged_post_in_multiple": "<strong>%1</strong> و %2 نفر دیگر این پست را در <strong>%3</strong> گزارش کرده اند",
"user_flagged_user": "<strong>%1</strong>کاربری را برای بررسی گزارش کرد (%2)",
"user_flagged_user_dual": "<strong>%1</strong>و <strong>%2</strong>کاربری را برای بررسی گزارش کردند (%3)",
"user_flagged_user_multiple": "<strong>%1</strong>و %2 دیگران کاربری را برای بررسی گزارش کردند (%3)",

View File

@@ -19,7 +19,7 @@
"users/sort-posts": "کاربران با بیش‌ترین پست",
"users/sort-reputation": "کاربران دارای بیشترین اعتبار",
"users/banned": "کاربران مسدود شده",
"users/most-flags": "بیشترین کاربران پرچم شده",
"users/most-flags": "بیشترین کاربران گزارش شده",
"users/search": "جستجوی کاربر",
"notifications": "آگاه‌سازی‌ها",
"tags": "برچسب‌ها",
@@ -31,7 +31,7 @@
"categories": "دسته‌بندی‌ها",
"groups": "گروه‌ها",
"group": "%1 گروه",
"chats": "چتها",
"chats": "چت ها",
"chat": "چت با %1",
"flags": "گزارش ها",
"flag-details": "جزئیات گزارش %1",
@@ -43,7 +43,7 @@
"account/following": "کاربرانی که %1 دنبال می‌کند",
"account/followers": "کاربرانی که %1 را دنبال می‌کنند",
"account/posts": "پست‌های %1",
"account/latest-posts": "Latest posts made by %1",
"account/latest-posts": "آخرین پست های %1",
"account/topics": "موضوع های %1",
"account/groups": "گروه‌های %1",
"account/watched_categories": "%1's Watched Categories",
@@ -53,10 +53,10 @@
"account/ignored": "تاپیک های نادیده گرفته شده توسط %1",
"account/upvoted": "رای مثبت داده شده به پست ها توسط %1",
"account/downvoted": "رای منفی داده شده به پست ها توسط %1",
"account/best": "بهترین پست های ارسال شده توسط %1",
"account/best": "بهترین پست های %1",
"account/blocks": "Blocked users for %1",
"account/uploads": "Uploads by %1",
"account/sessions": "Login Sessions",
"account/sessions": "Session های ورود",
"confirm": "ایمیل تایید شد",
"maintenance.text": "%1 در حال حاضر تحت تعمیر و نگهدارییست. لطفا زمان دیگری مراجعه کنید.",
"maintenance.messageIntro": "علاوه بر این، مدیر این پیام را گذاشته است:",

View File

@@ -4,5 +4,5 @@
"enter_tags_here": "برچسب‌ها را اینجا وارد کنید، هر کدام بین %1 و %2 کاراکتر.",
"enter_tags_here_short": "برچسب‌ها را وارد کنید...",
"no_tags": "هنوز برچسبی وجود ندارد.",
"select_tags": "Select Tags"
"select_tags": "انتخاب تگ ها"
}

View File

@@ -16,7 +16,7 @@
"last_reply_time": "آخرین پاسخ",
"reply-as-topic": "پاسخ به موضوع",
"guest-login-reply": "وارد شوید تا پست بفرستید",
"login-to-view": "🔒 Log in to view",
"login-to-view": "🔒 برای مشاهده وارد شوید ",
"edit": "ویرایش",
"delete": "حذف",
"purge": "پاک کردن",
@@ -60,7 +60,7 @@
"not-watching.description": "به من پس از ارسال هر پاسخی جدیدی اطلاع نده.<br/>تاپیک به صورت خوانده نشده قرار بگیرد ولی نادیده گرفته نشود.",
"ignoring.description": "به من پس از ارسال هر پاسخی جدیدی اطلاع نده.<br/>دیگر تاپیک را به صورت خوانده نشده نشان نده.",
"thread_tools.title": "ابزارهای موضوع",
"thread_tools.markAsUnreadForAll": "برای همه به عنوان خوانده نشده علامت بزن",
"thread_tools.markAsUnreadForAll": "برای همه کاربران نخوانده شده علامت بزن",
"thread_tools.pin": "سنجاق زدن موضوع",
"thread_tools.unpin": "برداشتن سنجاق موضوع",
"thread_tools.lock": "قفل کردن موضوع",
@@ -80,15 +80,17 @@
"thread_tools.purge_confirm": "آیا مطمئنید که میمید این موضوع را پاکسازی کنید؟",
"thread_tools.merge_topics": "ادغام موضوع ها",
"thread_tools.merge": "ادغام",
"topic_move_success": "This topic will be moved to \"%1\" shortly. Click here to undo.",
"topic_move_multiple_success": "تاپیک به %1 منتقل خواهد شد. برای جلوگیری از منتقل شدن کلیک کنید.",
"topic_move_all_success": "All topics will be moved to \"%1\" shortly. Click here to undo.",
"topic_move_success": "تاپیک به \"%1\" منتقل خواهد شد. برای جلوگیری از انتقال کلیک کنید.",
"topic_move_multiple_success": "تاپیک ها به \"%1\" منتقل خواهد شد. برای جلوگیری از انتقال کلیک کنید.",
"topic_move_all_success": "تمام تاپیک ها به \"%1\" منتقل خواهند شد. برای جلوگیری از انتقال کلیک کنید.",
"topic_move_undone": "Topic move undone",
"topic_move_posts_success": "Posts will be moved shortly. Click here to undo.",
"topic_move_posts_success": "پست ها منتقل خواهند شد. برای جلوگیری از انتقال کلیک کنید.",
"topic_move_posts_undone": "Post move undone",
"post_delete_confirm": "آیا از پاک کردن این پست اطمینان دارید؟",
"post_restore_confirm": "آیا از بازگردانی این پست اطمینان دارید؟",
"post_purge_confirm": "آیا از پاک کردن این پست اطمینان دارید؟",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "بارگذاری دسته‌ها",
"confirm_move": "جابه‌جا کردن",
"confirm_fork": "شاخه ساختن",
@@ -112,14 +114,14 @@
"merge_topics_instruction": "تاپیک های مورد نظر برای ادغام را انتخاب کنید یا آن ها را جستجو کنید",
"merge-topic-list-title": "لیست تاپیک هایی که با هم ادغام می شوند",
"merge-options": "تنظیمات ادغام",
"merge-select-main-topic": "Select the main topic",
"merge-new-title-for-topic": "New title for topic",
"merge-select-main-topic": "تاپیک اصلی را انتخاب کنید",
"merge-new-title-for-topic": "عنوان جدید برای تاپیک",
"move_posts_instruction": "پست های مورد نظر را انتخاب کنید سپس به تاپیک مقصد بروید و گزینه جابه‌جا کردن را بزنید.",
"change_owner_instruction": "Click the posts you want to assign to another user",
"composer.title_placeholder": "عنوان موضوعتان را اینجا بنویسید...",
"composer.handle_placeholder": "Enter your name/handle here",
"composer.discard": "دور بیانداز",
"composer.submit": "بفرست",
"composer.discard": "انصراف",
"composer.submit": "ارسال",
"composer.replying_to": "پاسخ به %1",
"composer.new_topic": "موضوع تازه",
"composer.uploading": "بارگذاری...",
@@ -137,7 +139,7 @@
"oldest_to_newest": "قدیمی‌ترین به جدید‌ترین",
"newest_to_oldest": "جدید‌ترین به قدیمی‌ترین",
"most_votes": "بیشترین رای ها",
"most_posts": "Most Posts",
"most_posts": "بیشترین پست",
"stale.title": "آیا مایلید به جای آن یک موضوع جدید ایجاد کنید؟",
"stale.warning": "موضوعی که شما در حال پاسخگویی به آن هستید قدیمی می باشد. آیا میلید به جای آن یک موضوع جدید ایجاد کنید و در آن به این موضوع ارجاع دهید؟",
"stale.create": "ایجاد یک موضوع جدید",

View File

@@ -8,8 +8,8 @@
"email": "رایانامه",
"confirm_email": "تأیید ایمیل",
"account_info": "اطلاعات شناسه کاربری",
"admin_actions_label": "Administrative Actions",
"ban_account": "مسدود کردن",
"admin_actions_label": "اقدامات مدیریتی",
"ban_account": "اخراج کاربر",
"ban_account_confirm": "از مسدود کردن این کاربر اطمینان دارید؟",
"unban_account": "آزاد کردن حساب کاربری",
"delete_account": "حذف حساب کاربری",
@@ -143,8 +143,8 @@
"sso.dissociate-confirm-title": "Confirm Dissociation",
"sso.dissociate-confirm": "Are you sure you wish to dissociate your account from %1?",
"info.latest-flags": "آخرین نشانه گذاری‌ها",
"info.no-flags": "هیچ پست‌ نشانه‌گذاری شده یافت نشد",
"info.ban-history": "تاریخچه مسدودیت اخیر",
"info.no-flags": "پست گزارش شده ای یافت نشد",
"info.ban-history": "تاریخچه مسدودیت های اخیر",
"info.no-ban-history": "این کاربر هرگز مسدود نشده است",
"info.banned-until": "مسدود شده تا %1",
"info.banned-expiry": "Expiry",
@@ -152,7 +152,7 @@
"info.banned-reason-label": "دلیل",
"info.banned-no-reason": "هیچ دلیلی ارایه نشد.",
"info.username-history": "تاریخچه نام کاربری",
"info.email-history": "تاریخچه رایانامه",
"info.email-history": "تاریخچه ایمیل",
"info.moderation-note": "یادداشت مدیر",
"info.moderation-note.success": "یادداشت مدیر ذخیره شد",
"info.moderation-note.add": "افزودن یادداشت",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Allow account deletion",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "Virheellinen aiheen ID",
"invalid-pid": "Virheellinen viestin ID",
"invalid-uid": "Virheellinen käyttäjän ID",
"invalid-date": "A valid date must be provided",
"invalid-username": "Virheellinen käyttäjänimi",
"invalid-email": "Virheellinen sähköpostiosoite",
"invalid-fullname": "Kokonimi on virheellinen",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "Haluatko varmasti poistaa tämän viestin?",
"post_restore_confirm": "Haluatko varmasti palauttaa tämän viestin?",
"post_purge_confirm": "Oletko varma, että haluat poistaa pysyvästi tämän viestin?",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "Ladataan aihealueita",
"confirm_move": "Siirrä",
"confirm_fork": "Haaroita",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "À partir de cette page, vous pouvez configurer l'accès à l'API d'écriture dans NodeBB.",
"intro": "Par défaut, l'API d'écriture authentifie les utilisateurs en fonction de leur cookie de session, mais NodeBB prend également en charge l'authentification du porteur via des tokens générés via cette page.",
"docs": "Cliquez ici pour accéder à la spécification complète de l'API",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "ID Utilisateur",
"uid-help-text": "Spécifiez un ID utilisateur à associer à ce token. Si l'ID utilisateur est 0, il sera considéré comme un token <code>maître<em>, qui peut prendre l'identité d'autres utilisateurs en fonction du paramètre <code>_uid</code>",
"description": "Description",

View File

@@ -36,6 +36,6 @@
"subscriptions.disable": "Désactiver les actualités du forum ",
"subscriptions.hour": "Heure d'envoi",
"subscriptions.hour-help": "Veuillez entrer un nombre représentant l'heure à laquelle envoyer les emails de résumé (c'est à dire <code>0</code> pour minuit, <code>17</code> pour 5:00 pm). Gardez à l'esprit qu'il s'agit de l'heure du serveur, et peut ne pas correspondre à votre heure locale.<br /> L'heure du serveur est : <span id=\"serverTime\"></span><br /> Le prochain mail de resumé sera envoyé à <span id=\"nextDigestTime\"></span>",
"notifications.settings": "Email notification settings",
"notifications.remove-images": "Remove images from email notifications"
"notifications.settings": "Paramètres de notification par e-mail",
"notifications.remove-images": "Supprimer les images des notifications par e-mail"
}

View File

@@ -1,7 +1,7 @@
{
"settings": "Settings",
"settings": "Paramètres",
"handles.enabled": "Autoriser les invités à poster",
"handles.enabled-help": "Cette option affiche un nouveau champ qui permet aux invités de choisir un nom qui sera associé à chaque message qu'ils rédigent. Si désactivé, il seront simplement nommés \"Invité\".",
"topic-views.enabled": "Autoriser les invités à augmenter le nombre de consultations de sujets",
"reply-notifications.enabled": "Allow guests to generate reply notifications"
"reply-notifications.enabled": "Autoriser les invités à générer des notifications de réponse"
}

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Autoriser la suppression des comptes",
"hide-fullname": "Masquer le nom complet aux utilisateurs",
"hide-email": "Masquer les emails aux utilisateurs",
"show-fullname-as-displayname": "Afficher le nom complet de l'utilisateur en tant que nom d'affichage si disponible",
"themes": "Thèmes",
"disable-user-skins": "Empêcher les utilisateurs de choisir un skin personnalisé",
"account-protection": "Protection du compte",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "ID de sujet invalide",
"invalid-pid": "ID de message invalide",
"invalid-uid": "ID d'utilisateur invalide",
"invalid-date": "Une date valide doit être fournie",
"invalid-username": "Nom d'utilisateur invalide",
"invalid-email": "Email invalide",
"invalid-fullname": "Nom erroné ",

View File

@@ -67,7 +67,7 @@
"sort-upvotes": "Demandes positives",
"sort-replies": "Réponses",
"modal-title": "Report Content",
"modal-title": "Contenu du rapport",
"modal-body": "Veuillez saisir le motif de votre signalement pour %1 %2 et sélectionner le bouton ci-dessous le plus approprié.",
"modal-reason-spam": "Spam",
"modal-reason-offensive": "Choquant",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "Êtes-vous sûr de bien vouloir supprimer ce message ?",
"post_restore_confirm": "Êtes-vous sûr de bien vouloir restaurer ce message ?",
"post_purge_confirm": "Êtes-vous sûr de bien vouloir supprimer définitivement ce sujet ?",
"pin-modal-expiry": "Date d'expiration",
"pin-modal-help": "Vous pouvez éventuellement définir une date d'expiration pour le(s) sujet(s) épinglé(s) ici. Vous pouvez également laisser ce champ vide pour que le sujet reste épinglé jusqu'à ce qu'il soit supprimé manuellement.",
"load_categories": "Chargement des catégories en cours",
"confirm_move": "Déplacer",
"confirm_fork": "Scinder",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Allow account deletion",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "Identificador de Tema Inválido",
"invalid-pid": "Identificador de Publicación Inválido",
"invalid-uid": "Identificador de Usuario Inválido",
"invalid-date": "A valid date must be provided",
"invalid-username": "Nome de Usuario Inválido",
"invalid-email": "Enderezo electrónico inválido",
"invalid-fullname": "Invalid Fullname",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "Estás seguro de que desexas eliminar esta publicación?",
"post_restore_confirm": "Estás seguro de que desexas restaurar esta publicación?",
"post_purge_confirm": "Estás seguro de que desexas purgar esta publicación??",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "Cargando categorías",
"confirm_move": "Mover",
"confirm_fork": "Dividir",

View File

@@ -24,9 +24,9 @@
"updates": "עדכונים",
"running-version": "הפורום מעודכן ל<strong>גרסה <span id=\"version\">%1</span></strong>",
"keep-updated": "תוודא תמיד שהפורום שלך עדכני, בכדי שעדכוני אבטחה ותיקוני באגים יהיו מעודכנים.",
"keep-updated": "לעדכוני אבטחה מעודכנים ותיקוני באגים, וודא שהפורום שלך עדכני לגרסה האחרונה.",
"up-to-date": "<p>אתה <strong>מעודכן<i class=\"fa fa-check\"></i></strong></p>",
"upgrade-available": "<p>גרסה חדשה (v%1) שוחרר. שקול <a href=\"https://docs.nodebb.org/configuring/upgrade/\" target=\"_blank\">האם לעדכן את הפורום שלך</a>.</p>",
"upgrade-available": "<p>גרסה חדשה (v%1) שוחררה. שקול <a href=\"https://docs.nodebb.org/configuring/upgrade/\" target=\"_blank\">האם לעדכן את הפורום שלך</a>.</p>",
"prerelease-upgrade-available": "<p>זוהי גירסת קדם-הפצה מיושנת של NodeBB. גרסה חדשה (v%1) שוחרר. שקול <a href=\"https://docs.nodebb.org/configuring/upgrade/\" target=\"_blank\">האם לעדכן את ה-NodeBB שלך</a>.</p>",
"prerelease-warning": "<p>זוהי <strong>גירסת קדם-הפצה</strong> של NodeBB. באגים בלתי צפויים עלולים להתרחש. <i class=\"fa fa-exclamation-triangle\"></i> </p>",
"running-in-development": "<span>הפורום פועל במצב פיתוח. הפורום עשוי להיות חשוף לפגיעות פוטנציאליות; פנה אל מנהל המערכת שלך.</span>",

View File

@@ -1,44 +1,44 @@
{
"name": "שם קבוצה",
"badge": "Badge",
"properties": "Properties",
"description": "תאור קבוצה",
"badge": "תגית",
"properties": "נתוני קבוצה",
"description": יאור קבוצה",
"member-count": "מספר חברים",
"system": "System",
"hidden": "Hidden",
"private": "Private",
"system": "מערכת",
"hidden": "מוסתר",
"private": "פרטי",
"edit": "ערוך",
"delete": "Delete",
"privileges": "Privileges",
"download-csv": "CSV",
"delete": "מחק",
"privileges": "זכויות",
"download-csv": "הורד CSV",
"search-placeholder": "חפש",
"create": "צור קבוצה",
"description-placeholder": "תאור קצר על הקבוצה שלך",
"create-button": "צור",
"alerts.create-failure": "<strong>Uh-Oh</strong><p>There was a problem creating your group. Please try again later!</p>",
"alerts.create-failure": "<strong>Uh-Oh</strong><p>יצירת הקבוצה נכשלה. נסה שוב מאוחר יותר!</p>",
"alerts.confirm-delete": "האם אתה בטוח שאתה רוצה למחוק את הקבוצה?",
"edit.name": "שם",
"edit.description": "תאור",
"edit.user-title": "הכותרת של החברים",
"edit.icon": "אייקון קבוצה",
"edit.label-color": "Group Label Color",
"edit.text-color": "Group Text Color",
"edit.show-badge": ראה תקציב",
"edit.private-details": "If enabled, joining of groups requires approval from a group owner.",
"edit.private-override": "Warning: Private groups is disabled at system level, which overrides this option.",
"edit.disable-join": "Disable join requests",
"edit.disable-leave": "Disallow users from leaving the group",
"edit.hidden": "נסתר",
"edit.hidden-details": "If enabled, this group will not be found in the groups listing, and users will have to be invited manually",
"edit.description": יאור",
"edit.user-title": "כותרת חברי הקבוצה",
"edit.icon": "סמליל קבוצה",
"edit.label-color": "צבע תווית קבוצה",
"edit.text-color": "צבע טקסט קבוצה",
"edit.show-badge": צג תג",
"edit.private-details": "אם אפשרות זו מופעלת, הצטרפות לקבוצות ידרוש אישור מבעל הקבוצה.",
"edit.private-override": "אזהרה: קבוצות פרטיות מושבתות ברמת המערכת, דבר העוקף אפשרות זו.",
"edit.disable-join": "השבת בקשות הצטרפות",
"edit.disable-leave": "משתמשים לא יוכלו לעזוב את הקבוצה",
"edit.hidden": "מוסתר",
"edit.hidden-details": "אם אפשרות זו מופעלת, קבוצה זו לא תימצא ברשימת הקבוצות, יהיה ניתן להזמין משתמשים רק באופן ידני",
"edit.add-user": "הוסף משתמש לקבוצה",
"edit.add-user-search": "חפש משתמשים",
"edit.members": "רשימת חברים",
"control-panel": "ממשק ניהול לקבוצות",
"edit.members": "רשימת חברי הקבוצה",
"control-panel": "ממשק ניהול קבוצות",
"revert": "בטל שינויים",
"edit.no-users-found": "לא נמצאו משתמשים",
"edit.confirm-remove-user": "האם אתה בטוח שאתה רוצה להסיר את המשתמש הזה?",
"edit.confirm-remove-user": "האם אתה בטוח שאתה רוצה להסיר משתמש זה?",
"edit.save-success": "השינויים נשמרו!"
}

View File

@@ -3,13 +3,13 @@
"admin": "מנהל",
"group-privileges": "הרשאות קבוצתיות",
"user-privileges": "הרשאות משתמש",
"edit-privileges": "Edit Privileges",
"edit-privileges": "עריכת הרשאות",
"chat": "צ'אט",
"upload-images": "העלאת תמונות",
"upload-files": "העלאת קבצים",
"signature": "חתימה",
"ban": "הרחקה",
"invite": "Invite",
"invite": "הזמנות",
"search-content": "חיפוש תוכן",
"search-users": "חיפוש משתמשים",
"search-tags": "חיפוש תגיות",
@@ -17,9 +17,9 @@
"view-tags": "צפייה בתגיות",
"view-groups": "צפייה בקבוצות",
"allow-local-login": "התחברות מקומית",
"allow-group-creation": "יצרת קבוצות",
"view-users-info": "צפיה במידע משתמש",
"find-category": "מציאת הקטגוריה",
"allow-group-creation": "יצירת קבוצות",
"view-users-info": "צפה במידע משתמש",
"find-category": "מציאת קטגוריה",
"access-category": "גישה לקטגוריה",
"access-topics": "גישה לנושאים",
"create-topics": "יצירת נושאים",
@@ -29,26 +29,26 @@
"view-edit-history": "הצגת היסטוריית עריכות",
"delete-posts": "מחיקת פוסטים",
"view_deleted": "הצגת פוסטים מחוקים",
"upvote-posts": "Upvote Posts",
"downvote-posts": "Downvote Posts",
"upvote-posts": "הצבעה לפוסטים",
"downvote-posts": "הצבעה נגד לפוסטים",
"delete-topics": "מחיקת נושא",
"purge": "Purge",
"moderate": "Moderate",
"purge": "מחיקה לצמיתות",
"moderate": "הרשאות מודרטור",
"admin-dashboard": "לוח מחוונים",
"admin-categories": "קטגוריות",
"admin-privileges": "הרשאות",
"admin-users": "משתמשים",
"admin-settings": "הגדרות",
"alert.confirm-moderate": "<strong>Are you sure you wish to grant the moderation privilege to this user group?</strong> This group is public, and any users can join at will.",
"alert.confirm-save": "Please confirm your intention to save these privileges",
"alert.saved": "Privilege changes saved and applied",
"alert.confirm-discard": "Are you sure you wish to discard your privilege changes?",
"alert.discarded": "Privilege changes discarded",
"alert.confirm-copyToAll": "Are you sure you wish to apply this privilege set to <strong>all categories</strong>?",
"alert.confirm-copyToAllGroup": "Are you sure you wish to apply this group's privilege set to <strong>all categories</strong>?",
"alert.confirm-copyToChildren": "Are you sure you wish to apply this privilege set to <strong>all descendant (child) categories</strong>?",
"alert.confirm-copyToChildrenGroup": "Are you sure you wish to apply this group's privilege set to <strong>all descendant (child) categories</strong>?",
"alert.no-undo": "<em>This action cannot be undone.</em>",
"alert.admin-warning": "Administrators implicitly get all privileges"
"alert.confirm-moderate": "<strong>האם אתה בטוח שברצונך להעניק הרשאות בינוניות לקבוצת משתמשים זו?</strong> הקבוצה היא ציבורית, וכל משתמש יכול להצטרף כרצונו.",
"alert.confirm-save": "נא אשר את הגדרת ההרשאות",
"alert.saved": "שינויי הרשאות נשמרו והוחלו",
"alert.confirm-discard": "האם אתה בטוח שברצונך לבטל את שינויי הרשאות שלך?",
"alert.discarded": "שינויי ההרשאות נמחקו",
"alert.confirm-copyToAll": "האם אתה בטוח שברצונך להחיל את קבוצת הרשאות זו <strong>לכל הקטגוריות</strong>?",
"alert.confirm-copyToAllGroup": "זהירות!! האם אתה בטוח שברצונך להחיל את הרשאות קבוצה זו <strong>לכל הקטגוריות</strong>?",
"alert.confirm-copyToChildren": "האם אתה בטוח שברצונך להחיל את קבוצת הרשאות זו <strong>לכל קטגוריות הצאצאים (ילדים)</strong>?",
"alert.confirm-copyToChildrenGroup": "האם אתה בטוח שברצונך להחיל את הרשאות קבוצה זו <strong>לכל קטגוריות הצאצאים (ילדים)</strong>?",
"alert.no-undo": "<em>לא ניתן לבטל פעולה זו.</em>",
"alert.admin-warning": "מנהלים מקבלים את כל ההרשאות"
}

View File

@@ -1,8 +1,8 @@
{
"dashboard": "Dashboard",
"dashboard": "לוח מחוונים",
"section-general": "כללי",
"section-manage": יהול",
"section-manage": הל",
"manage/categories": "קטגוריות",
"manage/privileges": "הרשאות",
"manage/tags": "תגיות",
@@ -17,68 +17,68 @@
"section-settings": "הגדרות",
"settings/general": "כללי",
"settings/homepage": "Home Page",
"settings/navigation": "Navigation",
"settings/reputation": "Reputation & Flags",
"settings/homepage": "דף הבית",
"settings/navigation": "ניווט",
"settings/reputation": "מוניטין ודגלים",
"settings/email": "דוא\"ל",
"settings/user": "Users",
"settings/group": "Groups",
"settings/guest": "אורח",
"settings/user": "משתמשים",
"settings/group": "קבוצות",
"settings/guest": "אורחים",
"settings/uploads": "העלאות",
"settings/languages": "Languages",
"settings/post": "Posts",
"settings/chat": "Chats",
"settings/pagination": "Pagination",
"settings/languages": "שפות",
"settings/post": "פוסטים",
"settings/chat": "צ'אטים",
"settings/pagination": "עימוד",
"settings/tags": "תגיות",
"settings/notifications": "התראות",
"settings/api": "API Access",
"settings/sounds": "Sounds",
"settings/social": "Social",
"settings/api": "גישת API",
"settings/sounds": "שמע",
"settings/social": "חברתי",
"settings/cookies": "עוגיות",
"settings/web-crawler": "Web Crawler",
"settings/web-crawler": "סורק רשת",
"settings/sockets": "Sockets",
"settings/advanced": "מתקדם",
"settings.page-title": "%1 Settings",
"settings.page-title": "%1 הגדרות",
"section-appearance": "Appearance",
"appearance/themes": "Themes",
"section-appearance": "מראה חיצוני",
"appearance/themes": "ערכות נושא",
"appearance/skins": "עיצובים",
"appearance/customise": "Custom Content (HTML/JS/CSS)",
"appearance/customise": "תוכן מותאם אישי (HTML/JS/CSS)",
"section-extend": "Extend",
"extend/plugins": "Plugins",
"extend/widgets": "Widgets",
"extend/rewards": "Rewards",
"extend/plugins": "תוספים",
"extend/widgets": "וידג'טים",
"extend/rewards": "תגמולים",
"section-social-auth": "Social Authentication",
"section-social-auth": "אימות חברתי",
"section-plugins": "תוספים",
"extend/plugins.install": "תוספים מותקנים",
"section-advanced": "מתקדם",
"advanced/database": "מסד נתונים",
"advanced/events": "Events",
"advanced/events": "ארועים",
"advanced/hooks": "Hooks",
"advanced/logs": "Logs",
"advanced/errors": "Errors",
"advanced/cache": "Cache",
"advanced/errors": "שגיאות",
"advanced/cache": "עוגיות",
"development/logger": "Logger",
"development/info": "Info",
"development/info": "מידע",
"rebuild-and-restart-forum": "Rebuild & Restart Forum",
"restart-forum": "Restart Forum",
"logout": "Log out",
"view-forum": "View Forum",
"rebuild-and-restart-forum": "בנה והפעל מחדש את הפורום",
"restart-forum": "הפעל מחדש את הפורום",
"logout": "התנתק",
"view-forum": "צפה בפורום",
"search.placeholder": "Press &quot;/&quot; to search for settings",
"search.no-results": "No results...",
"search.search-forum": "Search the forum for <strong></strong>",
"search.keep-typing": "Type more to see results...",
"search.start-typing": "Start typing to see results...",
"search.placeholder": "לחץ &quot;/&quot; בכדי לחפש הגדרה",
"search.no-results": "אין תוצאות...",
"search.search-forum": "חפש בפורום <strong></strong>",
"search.keep-typing": "הקלד עוד על מנת למצוא תוצאות...",
"search.start-typing": "התחל להקליד על מנת לראות תוצאות...",
"connection-lost": "Connection to %1 has been lost, attempting to reconnect...",
"connection-lost": "החיבור ל-%1 אבד, מנסה להתחבר מחדש...",
"alerts.version": "Running <strong>NodeBB v%1</strong>",
"alerts.version": "מריץ <strong>NodeBB v%1</strong>",
"alerts.upgrade": "שדרג ל v%1"
}

View File

@@ -1,12 +1,16 @@
{
"tokens": "Tokens",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "כברירת מחדל, ה- API של כתיבה מאמת משתמשים בהתבסס על קובץ ה-cookie של ההפעלה שלהם, אך NodeBB תומך גם באימות נושא באמצעות אסימונים שנוצרו באמצעות דף זה.",
"tokens": "טוקנים - Tokens",
"settings": "Settings",
"lead-text": "מעמוד זה תוכלו להגדיר גישת כתיבה ל-API ב- NodeBB.",
"intro": "כברירת מחדל, ה- API של כתיבה מאמת משתמשים בהתבסס על קובץ ה-cookie של ההפעלה שלהם, אך NodeBB תומך גם באימות נושא באמצעות טוקנים (אישורי אבטחה) שנוצרו באמצעות דף זה.",
"docs": "לחץ כאן כדי לגשת למפרט ה- API המלא",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "ID משתמש",
"uid-help-text": "ציין מזהה משתמש בכדי לשייך לטוקן זה. אם מזהה המשתמש הוא <code>0</code>, זה ייחשב כטוקן<em>ראשי</em>, שיכול לשער את זהותם של משתמשים אחרים על בסיס פרמטר<code>_uid</code> .",
"description": "תיאור",
"no-description": "לא צוין תיאור.",
"token-on-save": "Token will be generated once form is saved"
"token-on-save": "טוקן יוצר לאחר שמירת הטופס"
}

View File

@@ -7,15 +7,15 @@
"sorting.most-posts": "הכי הרבה פוסטים",
"sorting.topic-default": "מיון ברירת מחדל של נושאים",
"length": "אורך פוסט",
"post-queue": "Post Queue",
"restrictions": "Posting Restrictions",
"restrictions-new": "New User Restrictions",
"restrictions.post-queue": "Enable post queue",
"restrictions.post-queue-rep-threshold": "Reputation required to bypass post queue",
"restrictions.groups-exempt-from-post-queue": "Select groups that should be exempt from the post queue",
"restrictions-new.post-queue": "Enable new user restrictions",
"restrictions.post-queue-help": "Enabling post queue will put the posts of new users in a queue for approval",
"restrictions-new.post-queue-help": "Enabling new user restrictions will set restrictions on posts created by new users",
"post-queue": "תור פוסטים",
"restrictions": "הגבלות רישום",
"restrictions-new": "הגבלות משתמש חדש",
"restrictions.post-queue": "הפוך תור פוסט לזמין",
"restrictions.post-queue-rep-threshold": "מוניטין נדרש כדי לעקוף תור פוסט",
"restrictions.groups-exempt-from-post-queue": "בחר קבוצות פטורות מתור פוסטים",
"restrictions-new.post-queue": "הפיכת הגבלות משתמש חדשות לזמינות",
"restrictions.post-queue-help": "הפעלת תור פוסטים תכניס את ההודעות של משתמשים חדשים לתור לאישור",
"restrictions-new.post-queue-help": "הפעלת הגבלות משתמשים חדשים תגדיר הגבלות על פוסטים שנוצרו על-ידי משתמשים חדשים",
"restrictions.seconds-between": "מספר השניות בין פוסטים",
"restrictions.seconds-between-new": "שניות בין פוסטים עבור משתמשים חדשים",
"restrictions.rep-threshold": "סף המוניטין לפני ביטול המגבלות הללו",
@@ -34,8 +34,8 @@
"timestamp.cut-off-help": "Dates &amp; הזמנים יוצגו באופן יחסי (למשל \"לפני 3 שעות\" / \"לפני 5 ימים\"), לפי שעה ושפה מקומית. לאחר זמן זה, יוצג התאריך המקומי עצמו\n\t\t\t\t\t(לדוגמא, 5 בנובמבר 2016, 15:30).<br /><em>(ברירת מחדל: <code>30</code>, או חודש אחד). הגדר ל 0 כדי להציג תמיד תאריכים, השאר ריק כדי להציג תמיד זמנים יחסית.</em>",
"timestamp.necro-threshold": "סף ה-Necro (בימים)",
"timestamp.necro-threshold-help": "הודעה תוצג בין פוסטים אם הזמן ביניהם ארוך יותר מסף ה-necro . (ברירת מחדל: <code>7</code>, או שבוע אחד). כתוב 0 בכדי להפוך ללא זמין.</em>",
"timestamp.topic-views-interval": "Increment topic views interval (in minutes)",
"timestamp.topic-views-interval-help": "Topic views will only increment once every X minutes as defined by this setting.",
"timestamp.topic-views-interval": "מרווח תצוגות של נושא קבוע (בדקות)",
"timestamp.topic-views-interval-help": "תצוגות נושא יגדלו רק פעם ב- X דקות כפי שהוגדרו על-ידי הגדרה זו.",
"teaser": "פוסט טיזר",
"teaser.last-post": "Last &ndash; הצג את הפוסט האחרון, כולל הפוסט המקורי, אם אין תגובות",
"teaser.last-reply": "Last &ndash; הצג את התשובה האחרונה, או ציין \"ללא תשובות\" אם אין תשובות",
@@ -43,20 +43,20 @@
"unread": "הגדרות \"שלא נקראו\"",
"unread.cutoff": "ימי ניתוק שלא נקראו",
"unread.min-track-last": "פוסטים מינימליים בנושא לפני מעקב אחר קריאה אחרונה",
"recent": "Recent Settings",
"recent.max-topics": "Maximum topics on /recent",
"recent.categoryFilter.disable": "Disable filtering of topics in ignored categories on the /recent page",
"signature": "Signature Settings",
"signature.disable": "Disable signatures",
"signature.no-links": "Disable links in signatures",
"signature.no-images": "Disable images in signatures",
"signature.max-length": "Maximum Signature Length",
"composer": "Composer Settings",
"composer-help": "The following settings govern the functionality and/or appearance of the post composer shown\n\t\t\t\tto users when they create new topics, or reply to existing topics.",
"composer.show-help": "Show \"Help\" tab",
"composer.enable-plugin-help": "Allow plugins to add content to the help tab",
"composer.custom-help": "Custom Help Text",
"ip-tracking": "IP Tracking",
"ip-tracking.each-post": "Track IP Address for each post",
"enable-post-history": "Enable Post History"
"recent": "הגדרות פוסטים אחרונים",
"recent.max-topics": "מקסימום נושאים ב פוסטים אחרונים",
"recent.categoryFilter.disable": "הפיכת סינון נושאים ללא זמין בקטגוריות שהתעלמו מהן בדף פוסטים אחרונים",
"signature": "הגדרות חתימה",
"signature.disable": "השבת חתימות",
"signature.no-links": "השבת קישורים בחתימות",
"signature.no-images": "השבת תמונות בחתימות",
"signature.max-length": "אורך חתימה מרבי",
"composer": "הגדרות יצירת פוסט",
"composer-help": "ההגדרות הבאות חלות על הפונקציונליות ו/או המראה של יוצר הפוסט המוצג\n\t\t\t\tלמשתמשים בעת יצירת נושאים חדשים, או מענה לנושאים קיימים.",
"composer.show-help": "הצג כרטיסיית \"עזרה\"",
"composer.enable-plugin-help": "אפשר לתוסיפים להוסיף תוכן ללשונית עזרה",
"composer.custom-help": "טקסט עזרה מותאם אישית",
"ip-tracking": "IP מעקב",
"ip-tracking.each-post": "מעקב אחר כתובת IP על כל הודעה",
"enable-post-history": "הפוך היסטוריית פוסטים לזמינה"
}

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "אפשר מחיקת חשבונות",
"hide-fullname": "החבא שם מלא ממשתמשים",
"hide-email": "החבא כתובת מייל ממשתמשים",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "ערכות נושא",
"disable-user-skins": "אל תאפשר למשתמשים לבחור ערכת נושא",
"account-protection": "Account Protection",

View File

@@ -2,7 +2,7 @@
"category": "קטגוריה",
"subcategories": "קטגוריות משנה",
"new_topic_button": "נושא חדש",
"guest-login-post": "התחבר כדי לפרסם",
"guest-login-post": "התחבר בכדי לפרסם",
"no_topics": "<strong>קטגוריה זו ריקה מנושאים.</strong><br />למה שלא תנסה להוסיף נושא חדש?",
"browsing": "צופים בנושא זה כעת",
"no_replies": "אין תגובות",
@@ -15,8 +15,8 @@
"watching.description": "הצג נושאים בנושאים שלא נקראו ובנושאים אחרונים",
"not-watching.description": "הסתר בנושאים שלא נקראו, הצג בנושאים אחרונים",
"ignoring.description": "הסתר נושאים בנושאים שלא נקראו ובנושאים אחרונים",
"watching.message": "אתה כעת עוקב אחר עדכונים בקטגוריה זו וכל תת-הקטגוריות",
"notwatching.message": "אתה כעת לא עוקב מעדכונים בקטגוריה זו וכל תת-הקטגוריות",
"ignoring.message": "אתה כעת מתעלם מעדכונים בקטגוריה זו וכל תת-הקטגוריות",
"watched-categories": "קטגוריות נעקבות"
"watching.message": "בחרת לעקוב אחר עדכונים בקטגוריה זו וכל תת-הקטגוריות",
"notwatching.message": "בחרת לא לעקוב אחר עדכונים בקטגוריה זו וכל תת-הקטגוריות",
"ignoring.message": "בחרת להתעלם מעדכונים בקטגוריה זו וכל תת-הקטגוריות",
"watched-categories": "קטגוריות במעקב"
}

View File

@@ -9,6 +9,7 @@
"invalid-tid": "זהוי נושא שגוי",
"invalid-pid": "זהוי פוסט שגוי",
"invalid-uid": "זהוי משתמש שגוי",
"invalid-date": "A valid date must be provided",
"invalid-username": "שם משתמש שגוי",
"invalid-email": "אימייל שגוי",
"invalid-fullname": "שם מלא לא תקין",

View File

@@ -43,7 +43,7 @@
"notes": "הערות הסימון",
"add-note": "הוסף הערה",
"no-notes": "אין הערות",
"delete-note-confirm": "האם אתה בטוח שאתה רוצה למחוק את ההערה הזו?",
"delete-note-confirm": "האם אתה בטוח שאתה רוצה למחוק הערה זו?",
"note-added": "נוספה הערה",
"note-deleted": "ההערה נמחקה",

View File

@@ -82,7 +82,7 @@
"norecenttopics": "אין נושאים מהזמן החרון",
"recentposts": "פוסטים אחרונים",
"recentips": "כתובות IP שהתחברו למערכת לאחרונה",
"moderator_tools": "כלי מוד",
"moderator_tools": "כלי מודרטור",
"online": "מחובר",
"away": "לא נמצא",
"dnd": "נא לא להפריע",

View File

@@ -1,65 +1,65 @@
{
"groups": "קבוצות",
"view_group": "צפה בקבוצה",
"owner": "מנהל הקבוצה",
"view_group": "הצג קבוצה",
"owner": "מנהל קבוצה",
"new_group": "צור קבוצה חדשה",
"no_groups_found": "אין קבוצות לצפייה",
"no_groups_found": "אין קבוצות להצגה",
"pending.accept": "אשר",
"pending.reject": "דחה",
"pending.accept_all": "אשר הכל",
"pending.reject_all": "דחה הכל",
"pending.none": "אין משתמשים ממתינים כרגע",
"pending.none": "אין משתמשים בהמתנה כרגע",
"invited.none": "אין משתמשים מוזמנים כרגע",
"invited.uninvite": "בטל הזמנה",
"invited.search": "חפש משתמש להזמנה לקבוצה זו",
"invited.notification_title": "הוזמנת להצטרף ל<strong>%1</strong>",
"request.notification_title": "בקשת חברות קבוצתית מ<strong>%1</strong>",
"request.notification_title": "בקשת חברות בקבוצה מאת <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> ביקש להיות חבר ב<strong>%2</strong>",
"cover-save": "שמור",
"cover-saving": "שומר",
"details.title": "פרטי הקבוצה",
"details.title": "פרטי קבוצה",
"details.members": "רשימת חברי הקבוצה",
"details.pending": "חברי קבוצה הממתינים לאישור",
"details.invited": "חברים מוזמנים",
"details.has_no_posts": "חברי הקבוצה הזו לא העלו אף פוסט.",
"details.latest_posts": "פוסטים אחרונים",
"details.private": "פרטי",
"details.disableJoinRequests": "בטל בקשות הצטרפות",
"details.disableJoinRequests": "השבת בקשות הצטרפות",
"details.disableLeave": "אל תאפשר למשתמשים לעזוב את הקבוצה",
"details.grant": "הענק/בטל בעלות",
"details.kick": "גרש",
"details.kick_confirm": "האם אתה בטוח שאתה רוצה להסיר משתמש זה מהקבוצה?",
"details.add-member": "הוסף משתמש",
"details.owner_options": "ניהול הקבוצה",
"details.group_name": "שם הקבוצה",
"details.member_count": "כמות משתמשים",
"details.owner_options": "ניהול קבוצה",
"details.group_name": "שם קבוצה",
"details.member_count": "מספר חברים",
"details.creation_date": "תאריך יצירה",
"details.description": "תיאור",
"details.member-post-cids": "קטגוריות שמהם יוצגו פוסטים",
"details.member-post-cids": "קטגוריות מהם יוצגו פוסטים",
"details.member-post-cids-help": "<strong>הערה</strong>: אי בחירת קטגוריה תכלול את כל הקטגוריות. השתמש ב-<code>ctrl</code> ו-<code>shift</code> כדי לבחור אפשרויות מרובות.",
"details.badge_preview": "תצוגה מקדימה של הסמל",
"details.badge_preview": "תצוגה מקדימה של התג",
"details.change_icon": "שנה אייקון",
"details.change_label_colour": "Change Label Colour",
"details.change_text_colour": "Change Text Colour",
"details.badge_text": "טקסט הסמל",
"details.userTitleEnabled": "הצג סמל",
"details.private_help": "אם מאופשר, הצטרפות לקבוצות דורשות אישור מבעל הקבוצה",
"details.change_label_colour": "שנה צבע תווית",
"details.change_text_colour": "שנה צבע טקסט",
"details.badge_text": "טקסט תגית",
"details.userTitleEnabled": "הצג תגית",
"details.private_help": "אם אפשרות זו מופעלת, הצטרפות לקבוצות ידרוש אישור מבעל הקבוצה.",
"details.hidden": "מוסתר",
"details.hidden_help": "אם מאופשר, הקבוצה לא תופיע ברשימת הקבוצות, ומשתמשים יצטרכו להיות מוזמנים ידנית",
"details.hidden_help": "אם אפשרות זו מופעלת, קבוצה זו לא תימצא ברשימת הקבוצות, יהיה ניתן להזמין משתמשים רק באופן ידני",
"details.delete_group": "מחק קבוצה",
"details.private_system_help": "קבוצות פרטיות מבוטלות על ידי המערכת. אופציה זו אינה עושה דבר.",
"details.private_system_help": "קבוצות פרטיות מושבתות ברמת המערכת, אפשרות זו אינה עושה דבר",
"event.updated": "פרטי הקבוצה עודכנו",
"event.deleted": "קבוצת \"%1\" נמחקה",
"membership.accept-invitation": "קבל הזמנה",
"membership.accept.notification_title": "You are now a member of <strong>%1</strong>",
"membership.accept.notification_title": "אתה עכשיו חבר ב<strong>%1</strong>",
"membership.invitation-pending": "הזמנה ממתינה",
"membership.join-group": "הצטרף לקבוצה",
"membership.leave-group": "עזוב קבוצה",
"membership.leave.notification_title": "<strong>%1</strong> has left group <strong>%2</strong>",
"membership.leave.notification_title": "<strong>%1</strong> עזב את קבוצת <strong>%2</strong>",
"membership.reject": "דחה",
"new-group.group_name": "שם קבוצה",
"upload-group-cover": "העלה תמונת נושא לקבוצה",
"bulk-invite-instructions": "הזן רשימה מופרדת בפסיק של משתמשים שתרצה להזמין לקבוצה זו.",
"bulk-invite-instructions": "הזן רשימה מופרדת בפסיק של משתמשים אותם תרצה להזמין לקבוצה זו.",
"bulk-invite": "הזמן מספר משתמשים",
"remove_group_cover_confirm": "האם אתה בטוח שאתה רוצה להסיר את תמונת הקאבר?"
"remove_group_cover_confirm": "האם אתה בטוח שאתה רוצה להסיר תמונת נושא?"
}

View File

@@ -1,5 +1,5 @@
{
"chat.chatting_with": "לשוחח עם",
"chat.chatting_with": "שוחח עם",
"chat.placeholder": "הקלד את הודעת הצ'אט כאן, לחץ אנטר לשליחה",
"chat.scroll-up-alert": "אתה מסתכל על הודעות ישנות. לחץ כאן למעבר להודעה האחרונה.",
"chat.send": "שלח",
@@ -8,35 +8,35 @@
"chat.user_has_messaged_you": "ל%1 יש הודעה עבורך.",
"chat.see_all": "צפה בכל הצ'אטים",
"chat.mark_all_read": "סמן את כל הצ'אטים כ'נקראו'",
"chat.no-messages": "אנא בחר נמען על מנת לראות את היסטוריית הצ'אט איתו",
"chat.no-messages": "בחר משתמש על מנת לראות את שיחות הצ'אט שלכם",
"chat.no-users-in-room": "אין משתמשים בחדר הזה",
"chat.recent-chats": "צ'אטים אחרונים",
"chat.contacts": "אנשי קשר",
"chat.message-history": "היסטוריית הודעות",
"chat.message-deleted": "ההודעה נמחקה",
"chat.options": "אפשרויות לשיחה",
"chat.pop-out": "הוצא את חלון הצ'אט",
"chat.options": "אפשרויות צ'אט",
"chat.pop-out": "מזער חלונית צ'אט",
"chat.minimize": "צמצם",
"chat.maximize": "הרחב",
"chat.seven_days": "7 ימים",
"chat.thirty_days": "30 ימים",
"chat.three_months": "3 חודשים",
"chat.delete_message_confirm": "האם אתה בטוח שברצונך למחוק הודעה זו?",
"chat.retrieving-users": "שולף משתמשים",
"chat.retrieving-users": "מאחזר משתמשים...",
"chat.manage-room": "נהל חדר צ'אט",
"chat.add-user-help": "חפש משתמשים כאן. כאשר משתמש נבחר, הוא יצורף לצ'אט. המשתמש החדש לא יוכל לראות הודעות שנכתבו לפני הצטרפותו. רק מנהלי החדר (<i class=\"fa fa-star text-warning\"></i>) יכולים להסיר משתמשים מהצ'אט.",
"chat.confirm-chat-with-dnd-user": "משתמש זה שינה את הסטטוס שלו ל 'לא להפריע'. אתה עדיין מעוניין לשוחח איתו?",
"chat.rename-room": "שנה שם של חדר",
"chat.confirm-chat-with-dnd-user": "משתמש זה שינה את הסטטוס שלו ל'לא להפריע'. אתה עדיין מעוניין לשוחח איתו?",
"chat.rename-room": "שנה שם חדר",
"chat.rename-placeholder": "הזן את שם החדר שלך כאן",
"chat.rename-help": "שם החדר המוגדר כאן יהיה זמין לכל המשתתפים בחדר.",
"chat.leave": "עזוב שיחה",
"chat.leave-prompt": "האם אתה בטוח שאתה רוצה לעזוב את השיחה הזו?",
"chat.leave-help": "עזיבת צ'אט זה תסיר אותך מהתכתבות עתידית בצ'אט זה. אם תתווסף מחדש בעתיד, לא תראה כל היסטוריית צ'אט שלפני הצטרפותך מחדש.",
"chat.leave-help": "עזיבת שיחה, תסיר אותך מהתכתבות עתידית בצ'אט זה. אם תצטרף מחדש בעתיד, לא תראה את היסטוריית הצ'אט שלפני הצטרפותך מחדש.",
"chat.in-room": "בתוך החדר הזה",
"chat.kick": "גרש",
"chat.kick": "הוצא",
"chat.show-ip": "הצג IP",
"chat.owner": "מנהל החדר",
"chat.system.user-join": "%1 נרשם לחדר",
"chat.system.user-join": "%1 הצטרף לחדר",
"chat.system.user-leave": "%1 יצא מהחדר",
"chat.system.room-rename": "%2 שינה את שם החדר: %1",
"composer.compose": "צור",
@@ -54,16 +54,16 @@
"composer.formatting.strikethrough": "קו פוסל",
"composer.formatting.code": "קוד",
"composer.formatting.link": "לינק",
"composer.formatting.picture": "תמונה",
"composer.formatting.picture": "תמונה מהרשת",
"composer.upload-picture": "העלה תמונה",
"composer.upload-file": "העלה קובץ",
"composer.zen_mode": צב זן",
"composer.zen_mode": סך מלא",
"composer.select_category": "בחר קטגוריה",
"composer.textarea.placeholder": "כתוב את תוכן הפוסט כאן. ניתן לגרור לכאן תמונות.",
"bootbox.ok": וקיי",
"composer.textarea.placeholder": "כתוב את תוכן הפוסט כאן. ניתן גם לגרור לכאן תמונות.",
"bootbox.ok": "אישור",
"bootbox.cancel": "בטל",
"bootbox.confirm": "אשר",
"cover.dragging_title": "מיקום תמונת הנושא",
"cover.dragging_message": "גרור את תמונת הנושא למיקום הרצוי ולחץ על \"שמור\"",
"cover.saved": "תמונת הנושא ומיקומה נשמרו"
"cover.dragging_title": "מיקום תמונת נושא",
"cover.dragging_message": "גרור תמונת נושא למיקום הרצוי ולחץ על \"שמור\"",
"cover.saved": "תמונת הנושא והמיקום נשמר"
}

View File

@@ -24,7 +24,7 @@
"upvoted_your_post_in_dual": "<strong>%1</strong> ו<strong>%2</strong> הצביעו בעד הפוסט שלך ב<strong>%3</strong>",
"upvoted_your_post_in_multiple": "<strong>%1</strong> ו%2 אחרים הצביעו לפוסט שלך ב<strong>%3</strong>.",
"moved_your_post": "<strong>%1</strong> העביר את הפוסט שלך ל<strong>%2</strong>",
"moved_your_topic": "<strong>%1</strong> הוזז ל<strong>%2</strong>",
"moved_your_topic": "<strong>%1</strong> הזיז את <strong>%2</strong>",
"user_flagged_post_in": "<strong>%1</strong> דיווח על פוסט ב <strong>%2</strong>",
"user_flagged_post_in_dual": "<strong>%1</strong> ו<strong>%2</strong> סימנו פוסט ב<strong>%3</strong>",
"user_flagged_post_in_multiple": "<strong>%1</strong> ו%2 נוספים סימנו פוסט ב<strong>%3</strong>",

View File

@@ -15,36 +15,36 @@
"one_reply_to_this_post": "תגובה 1",
"last_reply_time": "תגובה אחרונה",
"reply-as-topic": "הגב כנושא",
"guest-login-reply": "התחבר כדי לפרסם תגובה",
"login-to-view": "🔒 התחבר כדי לצפות",
"guest-login-reply": "התחבר בכדי לפרסם תגובה",
"login-to-view": "🔒 התחבר בכדי לצפות",
"edit": "עריכה",
"delete": "מחק",
"purge": "מחק לצמיתות",
"restore": "שחזר",
"move": זז",
"change-owner": "שנה מחבר הודעה",
"fork": ורק",
"move": עבר",
"change-owner": "שנה שם כותב הפוסט",
"fork": צל",
"link": "לינק",
"share": "שתף",
"tools": "כלים",
"locked": "נעול",
"pinned": "נעוץ",
"moved": "הועבר",
"moved-from": "Moved from %1",
"copy-ip": "העתק כתובת IP",
"ban-ip": "הרחק כתובת IP",
"moved-from": "הועבר מ-%1",
"copy-ip": "העתק IP",
"ban-ip": "הרחק IP",
"view-history": "ערוך היסטוריה",
"bookmark_instructions": "לחץ כאן לחזור לפוסט האחרון שקראת בנושא הזה.",
"flag-post": "Flag this post",
"flag-user": "Flag this user",
"already-flagged": "Already Flagged",
"view-flag-report": "View Flag Report",
"merged_message": "This topic has been merged into <a href=\"%1\">%2</a>",
"deleted_message": "נושא זה נמחק. רק משתמשים עם ההרשאות המתאימות יכולים לצפות בו.",
"following_topic.message": "מעתה, תקבל הודעות כאשר מישהו יעלה פוסט לנושא זה.",
"not_following_topic.message": "תוכל לראות נושא זה ברשימת הנושאים שלא נקראו, אולם לא תוכל לקבל התראות כשמישהו יעלה פוסט על נושא זה.",
"ignoring_topic.message": "לא תוכל לראות עוד נושא זה ברשימת הנושאים של נקראו. תקבל הודעה כשאתה תוזכר או כשהפוסט שלך יקבל הצבעה חיובית",
"login_to_subscribe": "אנא הרשם או התחבר על-מנת לעקוב אחר נושא זה.",
"bookmark_instructions": "לחץ כאן בכדי לחזור לפוסט האחרון שקראת בנושא הזה.",
"flag-post": "דווח על פוסט זה",
"flag-user": "דווח על משתמש זה",
"already-flagged": "דווח כבר",
"view-flag-report": "הצג דוח דיווחים",
"merged_message": "נושא זה מוזג בתוך <a href=\"%1\">%2</a>",
"deleted_message": "נושא זה נמחק. רק משתמשים עם הרשאות מתאימות יוכלו לצפות בו.",
"following_topic.message": "מעתה, תקבל התראה כאשר מישהו יעלה פוסט לנושא זה.",
"not_following_topic.message": "תוכל לראות נושא זה ברשימת הנושאים שלא נקראו, אולם לא תקבל התראה כשמישהו יעלה פוסט בנושא זה.",
"ignoring_topic.message": "לא תראה עוד נושא זה ברשימת הנושאים של נקראו. תקבל הודעה כשתוזכר או כשהפוסט שלך יקבל הצבעה חיובית",
"login_to_subscribe": "הרשם או התחבר בכדי לעקוב אחר נושא זה.",
"markAsUnreadForAll.success": "נושא זה סומן כלא נקרא לכולם.",
"mark_unread": "סמן כלא נקרא",
"mark_unread.success": "הנושא סומן כלא נקרא.",
@@ -56,9 +56,9 @@
"watching": "עוקב",
"not-watching": "לא עוקב",
"ignoring": "מתעלם",
"watching.description": "הודע לי על תגובות חדשות. <br/>הצג נושא חדש ברשימת הלא נקראו.",
"not-watching.description": "אל תיידע אותי על תגובות חדשות. <br/>הצג נושא חדש ברשימת הלא נקראו במידה ובחרתי לא להתעלם מקבוצת הדיון",
"ignoring.description": "אל תתריע לי על תגובות חדשות. <br/>אל תראה את הנושא בנושאים שלא נקראו ",
"watching.description": "הודע לי על תגובות חדשות. <br/>הצג נושא ברשימת הלא נקראו.",
"not-watching.description": "אל תודיע לי על תגובות חדשות. <br/>הצג נושא ברשימת הלא נקראו במידה ובחרתי לא להתעלם מקטגוריה זו",
"ignoring.description": "אל תודיע לי על תגובות חדשות. <br/>אל תראה את הנושא ברשימת הלא נקראו ",
"thread_tools.title": "כלי נושא",
"thread_tools.markAsUnreadForAll": "סמן לא נקרא לכולם",
"thread_tools.pin": "נעץ נושא",
@@ -68,89 +68,91 @@
"thread_tools.move": "הזז נושא",
"thread_tools.move-posts": "הזז פוסטים",
"thread_tools.move_all": "הזז הכל",
"thread_tools.change_owner": "שנה את כותב ההודעה",
"thread_tools.change_owner": "שנה שם כותב הפוסט",
"thread_tools.select_category": "בחר קטגוריה",
"thread_tools.fork": "שכפל נושא",
"thread_tools.fork": צל נושא",
"thread_tools.delete": "מחק נושא",
"thread_tools.delete-posts": "מחק פוסטים",
"thread_tools.delete_confirm": "אתה בטוח שאתה רוצה למחוק את הנושא הזה?",
"thread_tools.delete_confirm": "האם אתה בטוח שאתה רוצה למחוק נושא זה?",
"thread_tools.restore": "שחזר נושא",
"thread_tools.restore_confirm": "אתה בטוח שאתה רוצה לשחזר את הנושא הזה?",
"thread_tools.restore_confirm": "האם אתה בטוח שאתה רוצה לשחזר נושא זה?",
"thread_tools.purge": "מחק נושא",
"thread_tools.purge_confirm": "אתה בטוח שאתה רוצה למחוק את הנושא הזה?",
"thread_tools.purge_confirm": "האם אתה בטוח שאתה רוצה למחוק נושא זה?",
"thread_tools.merge_topics": "מזג נושאים",
"thread_tools.merge": "מזג",
"topic_move_success": "נושא זה יועבר ל\"%1\" בקרוב. לחץ כאן לבטל.",
"topic_move_multiple_success": "These topics will be moved to \"%1\" shortly. Click here to undo.",
"topic_move_all_success": "All topics will be moved to \"%1\" shortly. Click here to undo.",
"topic_move_undone": "Topic move undone",
"topic_move_posts_success": "Posts will be moved shortly. Click here to undo.",
"topic_move_posts_undone": "Post move undone",
"post_delete_confirm": "אתה בטוח שאתה רוצה למחוק את הפוסט הזה?",
"post_restore_confirm": "אתה בטוח שאתה רוצה לשחזר את הפוסט הזה?",
"post_purge_confirm": "אתה בטוח שאתה רוצה למחוק את הפוסט הזה?",
"topic_move_success": "נושא זה יועבר תיקף ל\"%1\". לחץ כאן כדי לבטל.",
"topic_move_multiple_success": "נושאים אלו יועברו תיקף ל\"%1\" . לחץ כאן לביטול.",
"topic_move_all_success": "כל הנושאים יועברו תיקף ל\"%1\". לחץ כאן לביטול.",
"topic_move_undone": "העברת הנושא בוטל",
"topic_move_posts_success": "הפוסטים יועברו תיקף ל\"%1\" . לחץ כאן לביטול.",
"topic_move_posts_undone": "העברת הפוסט בוטל",
"post_delete_confirm": "האם אתה בטוח שאתה רוצה למחוק פוסט זה?",
"post_restore_confirm": "האם אתה בטוח שאתה רוצה לשחזר פוסט זה?",
"post_purge_confirm": "האם אתה בטוח שאתה רוצה למחוק פוסט זה?",
"pin-modal-expiry": "תאריך תפוגה",
"pin-modal-help": "באפשרותך להגדיר כאן תאריך תפוגה לנושא(ים) המוצמד(ים). לחלופין, אתה יכול להשאיר שדה זה ריק כדי שהנושא יישאר נעוץ עד לביטול ההצמדה ידנית.",
"load_categories": "טוען קטגוריות",
"confirm_move": "הזז",
"confirm_fork": "שכפל",
"confirm_fork": צל",
"bookmark": "הוסף למועדפים",
"bookmarks": "מועדפים",
"bookmarks.has_no_bookmarks": "לא צירפת אף פוסט למועדפים עדיין",
"bookmarks.has_no_bookmarks": "לא צירפת פוסט למועדפים עדיין",
"loading_more_posts": "טוען פוסטים נוספים",
"move_topic": "הזז נושא",
"move_topics": "הזז נושאים",
"move_post": "הזז פוסט",
"post_moved": "הפוסט הועבר!",
"fork_topic": "שכפל נושא",
"fork_topic_instruction": "לחץ על הפוסטים שברצונך לשכפל",
"fork_no_pids": "לא בחרת אף פוסט!",
"no-posts-selected": "No posts selected!",
"x-posts-selected": "%1 post(s) selected",
"x-posts-will-be-moved-to-y": "%1 post(s) will be moved to \"%2\"",
"fork_topic": צל נושא",
"fork_topic_instruction": "לחץ על הפוסטים שברצונך לפצל",
"fork_no_pids": "לא נבחרו פוסטים!",
"no-posts-selected": "לא נבחרו פוסטים!",
"x-posts-selected": "%1 פוסט(ים) נבחרו",
"x-posts-will-be-moved-to-y": "%1 פוסט(ים) יועברו ל-\"%2\"",
"fork_pid_count": "%1 פוסט(ים) נבחרו",
"fork_success": "הפוסט שוכפל בהצלחה! לחץ כאן על מנת לעבור לפוסט המשוכפל.",
"fork_success": "הפוסט פוצל בהצלחה! לחץ כאן על מנת לעבור לפוסט המפוצל.",
"delete_posts_instruction": "לחץ על הפוסטים שברצונך למחוק",
"merge_topics_instruction": "Click the topics you want to merge or search for them",
"merge-topic-list-title": "List of topics to be merged",
"merge-options": "Merge options",
"merge-select-main-topic": "Select the main topic",
"merge-new-title-for-topic": "New title for topic",
"move_posts_instruction": "Click the posts you want to move then go to target topic and click move.",
"change_owner_instruction": "לחץ על ההודעה שהנך רוצה לשנות את בעל ההודעה",
"merge_topics_instruction": "לחץ על הנושאים שברצונך למזג או חפש אותם",
"merge-topic-list-title": "רשימת הנושאים למיזוג",
"merge-options": "אפשרויות מיזוג",
"merge-select-main-topic": "בחר את הכותרת המועדפת",
"merge-new-title-for-topic": "כותרת חדשה לנושא",
"move_posts_instruction": "לחץ על הפוסטים שברצונך להעביר ואז עבור לנושא היעד ולחץ על העבר.",
"change_owner_instruction": "לחץ על הפוסטים עליהם תרצה לשנות את כותב ההודעה",
"composer.title_placeholder": "הכנס את כותרת הנושא כאן...",
"composer.handle_placeholder": "הזן את שמך / כינויי שלך כאן",
"composer.handle_placeholder": "הזן את שמך / כינוי שלך כאן",
"composer.discard": "ביטול",
"composer.submit": "שלח",
"composer.replying_to": "מגיב ל %1",
"composer.replying_to": "מגיב ל%1",
"composer.new_topic": "נושא חדש",
"composer.uploading": "מעלה...",
"composer.thumb_url_label": "הדבק את כתובת ה URL לתמונה המוקטנת עבור הנושא",
"composer.thumb_url_label": "הדבק את כתובת ה-URL לתמונה מוקטנת עבור הנושא",
"composer.thumb_title": "הוסף תמונה מוקטנת לנושא זה",
"composer.thumb_url_placeholder": "http://example.com/thumb.png",
"composer.thumb_file_label": "או העלה קובץ",
"composer.thumb_remove": "נקה שדות",
"composer.drag_and_drop_images": "גרור תמונות לכאן",
"more_users_and_guests": "%1 משתמשים ו%2 אורחים נוספים",
"more_users_and_guests": "%1 משתמשים נוספים ו-%2 אורחים",
"more_users": "%1 משתמשים נוספים",
"more_guests": "%1 אורחים נוספים",
"users_and_others": "%1 ו%2 אחרים",
"users_and_others": "%1 ו-%2 אחרים",
"sort_by": "סדר על-פי",
"oldest_to_newest": "מהישן לחדש",
"newest_to_oldest": "מהחדש לישן",
"most_votes": "הכי הרבה הצבעות",
"most_posts": "הכי הרבה פוסטים",
"stale.title": "פתח נושא חדש במקום?",
"stale.warning": "הנושא בו אתה מגיב הוא דיי ישן. האם ברצונך לפתוח נושא חדש, ולהזכיר את הנושא הזה בתגובתך?",
"stale.title": "ליצור נושא חדש במקום זאת?",
"stale.warning": "הנושא בו אתה מגיב הוא די ישן. האם ברצונך לפתוח נושא חדש, ולהזכיר נושא זה בתגובתך?",
"stale.create": "צור נושא חדש",
"stale.reply_anyway": "הגב לנושא זה בכל מקרה",
"link_back": "תגובה: [%1](%2)",
"diffs.title": "היסטוריית עריכת הפוסט",
"diffs.description": "להודעה זו יש <strong>%1</strong> עריכות. לחץ על אחת מהעריכות להלן כדי לראות את תוכן ההודעה בנקודת זמן זו.",
"diffs.no-revisions-description": "לפוסט זה יש <strong>%1</strong>גרסאות",
"diffs.current-revision": ירסה נוכחית",
"diffs.original-revision": ירסה מקורית",
"diffs.restore": "Restore this revision",
"diffs.restore-description": "A new revision will be appended to this post's edit history.",
"diffs.post-restored": "Post successfully restored to earlier revision",
"timeago_later": "אחרי %1:",
"diffs.current-revision": "גרסה נוכחית",
"diffs.original-revision": "גרסה מקורית",
"diffs.restore": "שחזר גרסה זו",
"diffs.restore-description": "גרסה חדשה תצורף להיסטוריית העריכות של פוסט זה.",
"diffs.post-restored": "הפוסט שוחזר בהצלחה לגרסה קודמת",
"timeago_later": "אחרי %1",
"timeago_earlier": "לפני %1 "
}

View File

@@ -8,30 +8,30 @@
"email": "כתובת אימייל",
"confirm_email": "אשר מייל",
"account_info": "פרטי חשבון",
"admin_actions_label": "פעולות ניהוליות",
"admin_actions_label": "פעולות ניהול",
"ban_account": "הרחק חשבון",
"ban_account_confirm": "אתה בטוח שברצונך להרחיק את המשתמש הזה?",
"ban_account_confirm": "האם אתה בטוח שאתה רוצה להרחיק משתמש זה?",
"unban_account": "בטל את הרחקת החשבון",
"delete_account": "מחק חשבון",
"delete_account_as_admin": "מחק <strong>חשבון</strong>",
"delete_content": "מחק <strong>תוכן</strong> חשבון",
"delete_all": "מחק <strong>חשבון</strong> ו<strong>תוכן</strong>",
"delete_account_confirm": "Are you sure you want to anonymize your posts and delete your account?<br /><strong>This action is irreversible and you will not be able to recover any of your data</strong><br /><br />Enter your password to confirm that you wish to destroy this account.",
"delete_this_account_confirm": "Are you sure you want to delete this account while leaving its contents behind?<br /><strong>This action is irreversible, posts will be anonymized, and you will not be able to restore post associations with the deleted account</strong><br /><br />",
"delete_account_content_confirm": "Are you sure you want to delete this account's content (posts/topics/uploads)? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"delete_all_confirm": "Are you sure you want to delete this account and all of its content (posts/topics/uploads)? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"delete_account_confirm": "האם אתה בטוח שברצונך להפוך את הפוסטים שלך לאנונימיים ולמחוק את החשבון שלך?<br /><strong>פעולה זו היא בלתי הפיכה ולא תוכל לשחזר את הנתונים שלך</strong><br /><br />הזן את הסיסמה שלך על מנת לאשר שברצונך להשמיד חשבון זה.",
"delete_this_account_confirm": "האם אתה בטוח שברצונך למחוק חשבון זה תוך השארת התוכן שלו?<br /><strong>פעולה זו היא בלתי הפיכה, הפוסטים יהפכו לאנונימיים, ולא תוכל לשחזר שיוכי הפוסטים עם החשבון שנמחק</strong><br /><br />",
"delete_account_content_confirm": "האם אתה בטוח שברצונך למחוק את התוכן של חשבון זה (פוסטים/נושאים/העלאות)? <br /><strong>פעולה זו היא בלתי הפיכה ולא תוכל לשחזר שום נתונים</strong><br /><br />",
"delete_all_confirm": "האם אתה בטוח שברצונך למחוק חשבון זה ואת כל התוכן שלו (פוסטים/נושאים/העלאות)? <br /><strong>פעולה זו היא בלתי הפיכה ולא תוכל לשחזר שום נתונים</strong><br /><br />",
"account-deleted": "החשבון נמחק",
"account-content-deleted": "תוכן החשבון נמחק",
"fullname": "שם מלא",
"website": "אתר",
"location": "מיקום",
"age": "גיל",
"joined": "הצטרף",
"joined": "הצטרף ב-",
"lastonline": "התחבר לאחרונה",
"profile": "פרופיל",
"profile_views": "צפיות בפרופיל",
"reputation": "מוניטין",
"bookmarks": "מועדפים",
"bookmarks": "סימניות",
"watched_categories": "קטגוריות במעקב",
"change_all": "שנה הכל",
"watched": "נצפה",
@@ -57,13 +57,13 @@
"change_picture": "שנה תמונה",
"change_username": "שנה שם משתמש",
"change_email": "שנה מייל",
"email_same_as_password": "אנא כתוב את הסיסמא הנוכחית שלך כדי להמשיך &ndash; כתבת את כתובת המייל החדשה במקום.",
"email_same_as_password": "הכנס את הסיסמא הנוכחית שלך על מנת להמשיך &ndash; כתבת את כתובת המייל החדשה במקום.",
"edit": "ערוך",
"edit-profile": "ערוך פרופיל",
"default_picture": "אייקון ברירת מחדל",
"uploaded_picture": "התמונה הועלתה",
"upload_new_picture": "העלה תמונה חדשה",
"upload_new_picture_from_url": "העלה תמונה חדשה מ URL",
"upload_new_picture_from_url": "העלה תמונה חדשה מ-URL",
"current_password": "סיסמה נוכחית",
"change_password": "שנה סיסמה",
"change_password_error": "סיסמה אינה תקינה!",
@@ -73,23 +73,23 @@
"change_password_success": "הסיסמה שלך עודכנה!",
"confirm_password": "אמת סיסמה",
"password": "סיסמה",
"username_taken_workaround": "שם המשתמש שבחרת כבר תפוס, אז שינינו אותו מעט. שם המשתמש שלך כעת הוא <strong>%1</strong>",
"password_same_as_username": "הסיסמה שלך זהה לשם המשתמש, אנא בחר סיסמה שונה.",
"password_same_as_email": "הסיסמה שלך זהה לכתובת המייל שלך, אנא בחר סיסמה שונה.",
"username_taken_workaround": "שם המשתמש שבחרת כבר תפוס, ולכן שינינו אותו מעט. שם המשתמש שלך כעת הוא <strong>%1</strong>",
"password_same_as_username": "הסיסמה שלך זהה לשם המשתמש, בחר סיסמה שונה.",
"password_same_as_email": "הסיסמה שלך זהה לכתובת המייל שלך, בחר סיסמה שונה.",
"weak_password": "סיסמה חלשה.",
"upload_picture": "העלה תמונה",
"upload_a_picture": "העלה תמונה",
"remove_uploaded_picture": "מחק את התמונה שהועלתה",
"upload_cover_picture": "העלה תמונת נושא",
"remove_cover_picture_confirm": "האם אתה בטוח שאתה רוצה למחוק את תמונת הרקע?",
"remove_cover_picture_confirm": "האם אתה בטוח שאתה רוצה למחוק תמונת נושא?",
"crop_picture": "חתוך תמונה",
"upload_cropped_picture": "חתוך והעלה",
"settings": "הגדרות",
"show_email": "פרסם את כתובת האימייל שלי",
"show_email": "הצג את כתובת האימייל שלי",
"show_fullname": "הצג את שמי המלא",
"restrict_chats": "אשר הודעות צ'אט ממשתמשים שאני עוקב אחריהם בלבד",
"digest_label": "הרשם לקבלת תקציר",
"digest_description": "הרשם לקבלת עדכונים מפורום זה (התראות ונושאים חדשים) על-פי לוח זמנים קבוע מראש.",
"digest_description": ירשם לקבלת עדכונים בדואר אלקטרוני מפורום זה (הודעות ונושאים חדשים) בהתאם ללוח זמנים מוגדר מראש",
"digest_off": "כבוי",
"digest_daily": "יומי",
"digest_weekly": "שבועי",
@@ -106,46 +106,46 @@
"has_no_blocks": "לא חסמת אף משתמש.",
"email_hidden": "כתובת אימייל מוסתרת",
"hidden": "מוסתר",
"paginate_description": "הצג נושאים ופוסטים כדפים במקום כרשימת גלילה אין-סופית",
"paginate_description": "הצג נושאים ופוסטים בעמודים במקום כרשימת גלילה אין-סופית",
"topics_per_page": "כמות נושאים בעמוד",
"posts_per_page": "כמות פוסטים בעמוד",
"max_items_per_page": "מקסימום %1",
"acp_language": "שפת עמוד המנהל",
"acp_language": "שפת עמוד הניהול",
"notifications": "התראות",
"upvote-notif-freq": "תדירות התראת הצבעה חיובית",
"upvote-notif-freq.all": "כל ההצבעות החיוביות",
"upvote-notif-freq.first": "הראשון לפוסט",
"upvote-notif-freq.first": "הראשון בפוסט",
"upvote-notif-freq.everyTen": "כל 10 הצבעות חיוביות",
"upvote-notif-freq.threshold": "ב-1, 5, 10, 25, 50, 100, 150, 200...",
"upvote-notif-freq.logarithmic": "ב10, 100, 1000...",
"upvote-notif-freq.logarithmic": -10, 100, 1000...",
"upvote-notif-freq.disabled": "מבוטל",
"browsing": "הגדרות צפייה",
"browsing": "הגדרות ניווט",
"open_links_in_new_tab": "פתח קישורים חיצוניים בכרטיסייה חדשה",
"enable_topic_searching": "הפעל חיפוש בתוך נושא",
"topic_search_help": "אם מאופשר, החיפוש בתוך הנושא יעקוף את שיטת החיפוש של הדפדפן, ויאפשר לך לחפש בכל הנושא - ולא רק במה שמוצג על המסך",
"update_url_with_post_index": "Update url with post index while browsing topics",
"topic_search_help": "אם מופעל, החיפוש בתוך הנושא יעקוף את שיטת החיפוש של הדפדפן, ויאפשר לך לחפש בכל הנושא - ולא רק במה שמוצג על המסך, עם זאת בלחיצה שניה על Ctrl+5 ייפתח לך החיפוש הרגיל של הדפדפן",
"update_url_with_post_index": "עדכון כתובת ה-URL עם אינדקס הפוסט בעת גלישה בנושאים",
"scroll_to_my_post": "הצג את הפוסט לאחר פרסום התגובה",
"follow_topics_you_reply_to": "עקוב אחר נושאים שהגבת עליהם",
"follow_topics_you_create": "עקוב אחר נושאים שפרסמת",
"follow_topics_you_create": "עקוב אחר נושאים שייצרת",
"grouptitle": "כותרת הקבוצה",
"group-order-help": "בחר קבוצה והשתמש בחצים על מנת לארגן כותרות",
"no-group-title": "ללא כותרת לקבוצה",
"select-skin": "בחר מראה",
"select-homepage": "בחר דף בית",
"homepage": "דף הבית",
"homepage_description": "בחר דף שיהיה דף הבית של הפורום או \"כלום\" על מנת להשתמש בדף הבית ברירת המחדל.",
"homepage_description": "בחר דף שיוגדר כדף הבית של הפורום או בחר ב\"כלום\" על מנת להשתמש בדף הבית הברירת מחדל.",
"custom_route": "נתיב דף הבית המותאם-אישית",
"custom_route_help": "הכנס שם נתיב כאן, ללא לוכסן לפני (לדוגמא \"אחרונים\", או \"פופולארי\")",
"sso.title": "שירות יחיד להתחברות",
"custom_route_help": "הכנס שם נתיב כאן, ללא לוכסן לפני (לדוגמא \"recent\" לאחרונים, או \"popular\" לפופולארי)",
"sso.title": "Single Sign-on Services",
"sso.associated": "משוייך עם",
"sso.not-associated": "לחץ כאן כדי לשייך",
"sso.dissociate": "ביטול שיוך",
"sso.dissociate-confirm-title": "אשר ביטול שיוך",
"sso.dissociate-confirm": "האם אתה בטוח שאתה רוצה לבטל את שיוך החשבון שלך מ%1?",
"sso.dissociate-confirm": "האם אתה בטוח שאתה רוצה לבטל שיוך חשבונך מ%1?",
"info.latest-flags": "דיווחים אחרונים",
"info.no-flags": "לא נמצאו פוסטים שמשתמשים דיווחו עליהם",
"info.no-flags": "לא נמצאו פוסטים מדווחים",
"info.ban-history": "היסטוריית הרחקות",
"info.no-ban-history": "משתמש זה מעולם לא הורחק",
"info.no-ban-history": "משתמש זה לא הורחק מעולם",
"info.banned-until": "הורחק עד %1",
"info.banned-expiry": "פג תוקף",
"info.banned-permanently": "הורחק לצמיתות",
@@ -156,15 +156,15 @@
"info.moderation-note": "הערת מודרטור",
"info.moderation-note.success": "הערת מודרטור נשמרה",
"info.moderation-note.add": "הוסף הערה",
"sessions.description": "דף זה מאפשר לך לראות את כל הסשנים הפעילים בפורום זה ולבטל אותם במידת הצורך. אתה יכול לבטל את הסשן שלך על ידי התנתקות מהמשתמש.",
"sessions.description": "דף זה מאפשר לך לראות את כל הסשנים הפעילים בפורום זה ולבטל אותם במידת הצורך. אתה יכול לבטל את הסשן שלך על ידי התנתקותך מהחשבון.",
"consent.title": "תנאי השימוש באתר",
"consent.lead": "אתר זה אוסף ומעבד נתונים הכוללים בחלקם את המידע האישי שלך.",
"consent.intro": "אנו משתמשים במידע שנאסף כדי להתאים אישית את החוויה שלך, וכן לקשר את ההודעות שאתה מבצע לחשבון המשתמש שלך. במהלך שלב ההרשמה התבקשת לספק שם משתמש וכתובת דוא\"ל, תוכל גם לספק מידע נוסף כדי להשלים את פרופיל המשתמש שלך באתר זה.<br /><br /> אנו שומרים ומעבדים מידע זה. אתה יכול לבטל את הסכמתך בכל עת על ידי מחיקת החשבון שלך. בכל עת תוכל לבקש עותק של חשבונך לאתר זה, באמצעות דף זה.<br /><br /> אם יש לך שאלות או חששות, אנו ממליצים לך ליצור קשר עם צוות הניהול של האתר.",
"consent.email_intro": "מדי פעם, אנו עשויים לשלוח הודעות לכתובת הדוא\"ל הרשומה שלך על מנת לספק עדכונים ו / או להודיע ​​לך על פעילות חדשה הרלוונטית עבורך. ניתן להתאים אישית את התדירות של העדכונים (כולל השבתתם), וכן לבחור אילו סוגי הודעות לקבל באמצעות דוא\"ל, דרך דף הגדרות המשתמש שלך.",
"consent.digest_frequency": "אלא אם כן תשנה במפורש את הגדרות המשתמש שלך, אתר זה מספק עדכוני דוא\"ל בכל %1.",
"consent.digest_off": "אלא אם כן תשנה במפורש את הגדרות המשתמש שלך, האתר לא ישלח הודעות תמצית.",
"consent.email_intro": "אנו עשויים מדי פעם לשלוח הודעות לכתובת הדוא\"ל שלך על מנת לספק לך עדכונים ו/או להודיע ​​לך על פעילות חדשה הרלוונטית עבורך. ניתן להתאים אישית את התדירות של העדכונים (כולל השבתתם), וכן לבחור אילו סוגי הודעות לקבל באמצעות הדוא\"ל דרך דף הגדרות המשתמש שלך.",
"consent.digest_frequency": " אתר זה מספק עדכוני דוא\"ל בכל %1. אם תשבית את האפשרות הזאת בהגדרות המשתמש שלך לא תקבל עדכונים אלו.",
"consent.digest_off": "האתר לא ישלח הודעות תקציר, אלא אם כן תשנה זאת במפורש בהגדרות המשתמש שלך.",
"consent.received": "הסכמתך לאפשר לאתר לאסוף ולעבד את המידע שלך התקבלה. אין צורך בפעולה נוספת.",
"consent.not_received": "הסכמתך לאיסוף נתונים ועיבודם לא התקבלה. מנהל האתר רשאי למחוק את חשבונך בכל עת על מנת להיות תואם לתקנות רגולציה כגון GDPR,.",
"consent.not_received": "לא סיפקת אישור לאיסוף ועיבוד נתונים. בכל עת הנהלת האתר רשאית למחוק את חשבונך בכדי להתאים את עצמה בתקנה הכללית להגנת נתונים.",
"consent.give": "הסכם",
"consent.right_of_access": "זכותך לנגישות",
"consent.right_of_access_description": "שמורה לך הזכות לגשת לנתונים שנאספו על ידי האתר. תוכל לאחזר עותק של נתונים אלה על ידי לחיצה על הלחצן מטה.",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Dozvoli brisanje računa korisnicima",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Predlošci",
"disable-user-skins": "Onemogući korisnicima odabir predloška",
"account-protection": "Zaštita računa",

View File

@@ -9,6 +9,7 @@
"invalid-tid": "Netočan ID teme",
"invalid-pid": "Netočan ID objave",
"invalid-uid": "Netočan ID korisnika",
"invalid-date": "A valid date must be provided",
"invalid-username": "Netočno korisničko ime",
"invalid-email": "Netočan email",
"invalid-fullname": "Invalid Fullname",

View File

@@ -89,6 +89,8 @@
"post_delete_confirm": "Sigurni ste da želite obrisati ovu objavu?",
"post_restore_confirm": "Sigurni ste da želite povratiti ovu objavu?",
"post_purge_confirm": "Sigurni ste da želite odbaciti ovu objavu?",
"pin-modal-expiry": "Expiration Date",
"pin-modal-help": "You can optionally set an expiration date for the pinned topic(s) here. Alternatively, you can leave this field blank to have the topic stay pinned until it is manually unpinned.",
"load_categories": "Učitavam kategorije",
"confirm_move": "Pomakni",
"confirm_fork": "Dupliraj",

View File

@@ -1,9 +1,13 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",

View File

@@ -16,6 +16,7 @@
"allow-account-deletion": "Allow account deletion",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

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