diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 67aee91b9a..742f443f9c 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -61,7 +61,7 @@ jobs:
key: var-cache-node-modules-${{ hashFiles('Dockerfile', 'install/package.json') }}
- name: Build and push Docker images
- uses: docker/build-push-action@v5
+ uses: docker/build-push-action@v6
with:
cache-from: type=gha
cache-to: type=gha,mode=min
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index b2a52caf42..ba42558333 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -63,7 +63,7 @@ jobs:
- 5432:5432
redis:
- image: 'redis:7.2.4'
+ image: 'redis:7.4.0'
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b66481805a..731e39ccc8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,81 @@
+#### v3.8.4 (2024-08-01)
+
+##### Chores
+
+* up widgets (d1663ac2)
+* up widgets (cb4bf9dd)
+* up persona (324610de)
+* incrementing version number - v3.8.3 (97ce2c44)
+* update changelog for v3.8.3 (2a239a79)
+* incrementing version number - v3.8.2 (72d91251)
+* incrementing version number - v3.8.1 (527326f7)
+* incrementing version number - v3.8.0 (e228a6eb)
+* incrementing version number - v3.7.5 (6882894d)
+* incrementing version number - v3.7.4 (6678744c)
+* incrementing version number - v3.7.3 (2d62b6f6)
+* incrementing version number - v3.7.2 (cc257e7e)
+* incrementing version number - v3.7.1 (712365a5)
+* incrementing version number - v3.7.0 (9a6153d7)
+* incrementing version number - v3.6.7 (86a17e38)
+* incrementing version number - v3.6.6 (6604bf37)
+* incrementing version number - v3.6.5 (6c653625)
+* incrementing version number - v3.6.4 (83d131b4)
+* incrementing version number - v3.6.3 (fc7d2bfd)
+* incrementing version number - v3.6.2 (0f577a57)
+* incrementing version number - v3.6.1 (f1a69468)
+* incrementing version number - v3.6.0 (4cdf85f8)
+* incrementing version number - v3.5.3 (ed0e8783)
+* incrementing version number - v3.5.2 (52fbb2da)
+* incrementing version number - v3.5.1 (4c543488)
+* incrementing version number - v3.5.0 (d06fb4f0)
+* incrementing version number - v3.4.3 (5c984250)
+* incrementing version number - v3.4.2 (3f0dac38)
+* incrementing version number - v3.4.1 (01e69574)
+* incrementing version number - v3.4.0 (fd9247c5)
+* incrementing version number - v3.3.9 (5805e770)
+* incrementing version number - v3.3.8 (a5603565)
+* incrementing version number - v3.3.7 (b26f1744)
+* incrementing version number - v3.3.6 (7fb38792)
+* incrementing version number - v3.3.4 (a67f84ea)
+* incrementing version number - v3.3.3 (f94d239b)
+* incrementing version number - v3.3.2 (ec9dac97)
+* incrementing version number - v3.3.1 (151cc68f)
+* incrementing version number - v3.3.0 (fc1ad70f)
+* incrementing version number - v3.2.3 (b06d3e63)
+* incrementing version number - v3.2.2 (758ecfcd)
+* incrementing version number - v3.2.1 (20145074)
+* incrementing version number - v3.2.0 (9ecac38e)
+* incrementing version number - v3.1.7 (0b4e81ab)
+* incrementing version number - v3.1.6 (b3a3b130)
+* incrementing version number - v3.1.5 (ec19343a)
+* incrementing version number - v3.1.4 (2452783c)
+* incrementing version number - v3.1.3 (3b4e9d3f)
+* incrementing version number - v3.1.2 (40fa3489)
+* incrementing version number - v3.1.1 (40250733)
+* incrementing version number - v3.1.0 (0cb386bd)
+* incrementing version number - v3.0.1 (26f6ea49)
+* incrementing version number - v3.0.0 (224e08cd)
+
+##### New Features
+
+* update chat teasers when a new chat starts, closes #12713 (0204f2aa)
+* add downvoteVisibility setting, closes #12698 (269fc068)
+
+##### Bug Fixes
+
+* prevent category filter to go to selected cid (10c5cd4c)
+* add sizes to maskable so it doesnt crash chrome application tab (ccc86825)
+* post preview not working on parent post (a28dd70f)
+
+##### Refactors
+
+* hooks page design (cea18d0c)
+* closes #12699, allow boolean false for log-colorize (42ac1f9d)
+
+##### Tests
+
+* test fix maybe (a73f269f)
+
#### v3.8.3 (2024-06-27)
##### Chores
diff --git a/docker-compose-pgsql.yml b/docker-compose-pgsql.yml
index 64619e4c0f..f015110d56 100644
--- a/docker-compose-pgsql.yml
+++ b/docker-compose-pgsql.yml
@@ -14,7 +14,7 @@ services:
- ./install/docker/setup.json:/usr/src/app/setup.json
postgres:
- image: postgres:16.3-alpine
+ image: postgres:16.4-alpine
restart: unless-stopped
environment:
POSTGRES_USER: nodebb
@@ -24,7 +24,7 @@ services:
- postgres-data:/var/lib/postgresql/data
redis:
- image: redis:7.2.4-alpine
+ image: redis:7.4.0-alpine
restart: unless-stopped
command: ['redis-server', '--appendonly', 'yes', '--loglevel', 'warning']
# command: ["redis-server", "--save", "60", "1", "--loglevel", "warning"] # uncomment if you want to use snapshotting instead of AOF
diff --git a/docker-compose-redis.yml b/docker-compose-redis.yml
index 7d6ddf09ca..2f6d53e577 100644
--- a/docker-compose-redis.yml
+++ b/docker-compose-redis.yml
@@ -14,7 +14,7 @@ services:
- ./install/docker/setup.json:/usr/src/app/setup.json
redis:
- image: redis:7.2.4-alpine
+ image: redis:7.4.0-alpine
restart: unless-stopped
command: ['redis-server', '--appendonly', 'yes', '--loglevel', 'warning']
# command: ["redis-server", "--save", "60", "1", "--loglevel", "warning"] # uncomment if you want to use snapshotting instead of AOF
diff --git a/docker-compose.yml b/docker-compose.yml
index 0742c437a6..d6d81a5a93 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -26,7 +26,7 @@ services:
- mongo-data:/data/db
- ./install/docker/mongodb-user-init.js:/docker-entrypoint-initdb.d/user-init.js
redis:
- image: redis:7.2.4-alpine
+ image: redis:7.4.0-alpine
restart: unless-stopped
command: ['redis-server', '--appendonly', 'yes', '--loglevel', 'warning']
# command: ['redis-server', '--save', '60', '1', '--loglevel', 'warning'] # uncomment if you want to use snapshotting instead of AOF
@@ -36,7 +36,7 @@ services:
- redis
postgres:
- image: postgres:16.1-alpine
+ image: postgres:16.4-alpine
restart: unless-stopped
environment:
POSTGRES_USER: nodebb
diff --git a/install/package.json b/install/package.json
index cb5eb4e4ea..26b77cc3ca 100644
--- a/install/package.json
+++ b/install/package.json
@@ -29,43 +29,46 @@
},
"dependencies": {
"@adactive/bootstrap-tagsinput": "0.8.2",
- "@fontsource/inter": "5.0.18",
- "@fontsource/poppins": "5.0.14",
- "@fortawesome/fontawesome-free": "6.5.2",
+ "@fontsource/inter": "5.1.0",
+ "@fontsource/poppins": "5.1.0",
+ "@fortawesome/fontawesome-free": "6.6.0",
"@isaacs/ttlcache": "1.4.1",
"@nodebb/spider-detector": "2.0.3",
"@popperjs/core": "2.11.8",
- "ace-builds": "1.33.2",
+ "@textcomplete/contenteditable": "0.1.13",
+ "@textcomplete/core": "0.1.13",
+ "@textcomplete/textarea": "0.1.13",
+ "ace-builds": "1.36.2",
"archiver": "7.0.1",
- "async": "3.2.5",
- "autoprefixer": "10.4.19",
+ "async": "3.2.6",
+ "autoprefixer": "10.4.20",
"bcryptjs": "2.4.3",
"benchpressjs": "2.5.1",
- "body-parser": "1.20.2",
+ "body-parser": "1.20.3",
"bootbox": "6.0.0",
"bootstrap": "5.3.3",
"bootswatch": "5.3.3",
"chalk": "4.1.2",
- "chart.js": "4.4.2",
+ "chart.js": "4.4.4",
"cli-graph": "3.2.2",
"clipboard": "2.0.11",
"colors": "1.4.0",
"commander": "12.0.0",
- "compare-versions": "6.1.0",
+ "compare-versions": "6.1.1",
"compression": "1.7.4",
"connect-flash": "0.1.1",
"connect-mongo": "5.1.0",
"connect-multiparty": "2.2.0",
- "connect-pg-simple": "9.0.1",
+ "connect-pg-simple": "10.0.0",
"connect-redis": "7.1.1",
"cookie-parser": "1.4.6",
"cron": "3.1.7",
"cropperjs": "1.6.2",
"csrf-sync": "4.0.3",
"daemon": "1.1.0",
- "diff": "5.2.0",
- "esbuild": "0.21.2",
- "express": "4.19.2",
+ "diff": "7.0.0",
+ "esbuild": "0.23.1",
+ "express": "4.21.0",
"express-session": "1.18.0",
"express-useragent": "1.0.15",
"fetch-cookie": "3.0.1",
@@ -80,60 +83,60 @@
"jquery-deserialize": "2.0.0",
"jquery-form": "4.3.0",
"jquery-serializeobject": "1.0.0",
- "jquery-ui": "1.13.3",
+ "jquery-ui": "1.14.0",
"jsesc": "3.0.2",
"json2csv": "5.0.7",
"jsonwebtoken": "9.0.2",
"lodash": "4.17.21",
"logrotate-stream": "0.2.9",
- "lru-cache": "10.2.2",
+ "lru-cache": "10.4.3",
"mime": "3.0.0",
"mkdirp": "3.0.1",
- "mongodb": "6.6.1",
+ "mongodb": "6.9.0",
"morgan": "1.10.0",
"mousetrap": "1.6.5",
"multiparty": "4.2.3",
"nconf": "0.12.1",
- "nodebb-plugin-2factor": "7.5.3",
- "nodebb-plugin-composer-default": "10.2.36",
+ "nodebb-plugin-2factor": "7.5.5",
+ "nodebb-plugin-composer-default": "10.2.39",
"nodebb-plugin-dbsearch": "6.2.5",
"nodebb-plugin-emoji": "5.1.15",
"nodebb-plugin-emoji-android": "4.0.0",
- "nodebb-plugin-markdown": "12.2.6",
+ "nodebb-plugin-markdown": "12.2.8",
"nodebb-plugin-mentions": "4.4.3",
- "nodebb-plugin-ntfy": "1.7.4",
+ "nodebb-plugin-ntfy": "1.7.7",
"nodebb-plugin-spam-be-gone": "2.2.2",
"nodebb-rewards-essentials": "1.0.0",
- "nodebb-theme-harmony": "1.2.63",
+ "nodebb-theme-harmony": "1.2.69",
"nodebb-theme-lavender": "7.1.8",
- "nodebb-theme-peace": "2.2.6",
- "nodebb-theme-persona": "13.3.25",
- "nodebb-widget-essentials": "7.0.18",
- "nodemailer": "6.9.13",
+ "nodebb-theme-peace": "2.2.7",
+ "nodebb-theme-persona": "13.3.36",
+ "nodebb-widget-essentials": "7.0.28",
+ "nodemailer": "6.9.15",
"nprogress": "0.2.0",
"passport": "0.7.0",
"passport-http-bearer": "1.0.1",
"passport-local": "1.0.0",
- "pg": "8.11.5",
- "pg-cursor": "2.10.5",
- "postcss": "8.4.38",
+ "pg": "8.13.0",
+ "pg-cursor": "2.12.0",
+ "postcss": "8.4.47",
"postcss-clean": "1.2.0",
"progress-webpack-plugin": "1.0.16",
"prompt": "1.3.0",
"ioredis": "5.4.1",
- "rimraf": "5.0.7",
+ "rimraf": "5.0.10",
"rss": "1.2.2",
- "rtlcss": "4.1.1",
+ "rtlcss": "4.3.0",
"sanitize-html": "2.13.0",
- "sass": "1.77.1",
- "semver": "7.6.2",
+ "sass": "1.79.1",
+ "semver": "7.6.3",
"serve-favicon": "2.5.0",
"sharp": "0.32.6",
- "sitemap": "7.1.1",
+ "sitemap": "8.0.0",
"socket.io": "4.7.5",
"socket.io-client": "4.7.5",
"@socket.io/redis-adapter": "8.3.0",
- "sortablejs": "1.15.2",
+ "sortablejs": "1.15.3",
"spdx-license-list": "6.9.0",
"terser-webpack-plugin": "5.3.10",
"textcomplete": "0.18.2",
@@ -141,12 +144,12 @@
"timeago": "1.6.7",
"tinycon": "0.6.8",
"toobusy-js": "0.5.1",
- "tough-cookie": "4.1.4",
+ "tough-cookie": "5.0.0",
"validator": "13.12.0",
- "webpack": "5.91.0",
- "webpack-merge": "5.10.0",
- "winston": "3.13.0",
- "workerpool": "9.1.1",
+ "webpack": "5.94.0",
+ "webpack-merge": "6.0.1",
+ "winston": "3.14.2",
+ "workerpool": "9.1.3",
"xml": "1.0.1",
"xregexp": "5.1.1",
"yargs": "17.7.2",
@@ -154,25 +157,25 @@
},
"devDependencies": {
"@apidevtools/swagger-parser": "10.1.0",
- "@commitlint/cli": "19.3.0",
- "@commitlint/config-angular": "19.3.0",
+ "@commitlint/cli": "19.5.0",
+ "@commitlint/config-angular": "19.5.0",
"coveralls": "3.1.1",
- "eslint": "8.57.0",
+ "eslint": "8.57.1",
"eslint-config-nodebb": "0.2.1",
- "eslint-plugin-import": "2.29.1",
+ "eslint-plugin-import": "2.30.0",
"grunt": "1.6.1",
"grunt-contrib-watch": "1.1.0",
"husky": "8.0.3",
- "jsdom": "24.0.0",
- "lint-staged": "15.2.2",
- "mocha": "10.4.0",
+ "jsdom": "25.0.0",
+ "lint-staged": "15.2.10",
+ "mocha": "10.7.3",
"mocha-lcov-reporter": "1.3.0",
"mockdate": "3.0.5",
- "nyc": "15.1.0",
- "smtp-server": "3.13.4"
+ "nyc": "17.0.0",
+ "smtp-server": "3.13.5"
},
"optionalDependencies": {
- "sass-embedded": "1.77.1"
+ "sass-embedded": "1.79.1"
},
"resolutions": {
"*/jquery": "3.7.1"
@@ -195,4 +198,4 @@
"url": "https://github.com/barisusakli"
}
]
-}
\ No newline at end of file
+}
diff --git a/public/language/ar/admin/development/info.json b/public/language/ar/admin/development/info.json
index 7948d86494..4c97beee13 100644
--- a/public/language/ar/admin/development/info.json
+++ b/public/language/ar/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "رقم الآي بي %1 ",
"nodes-responded": "عدد %1 نقطة/نقاط استجابوا خلال %2 جزء من الثانية.",
"host": "المضيف",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/ar/admin/extend/widgets.json b/public/language/ar/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/ar/admin/extend/widgets.json
+++ b/public/language/ar/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/ar/admin/settings/reputation.json b/public/language/ar/admin/settings/reputation.json
index e4fff22620..479069e3a4 100644
--- a/public/language/ar/admin/settings/reputation.json
+++ b/public/language/ar/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/ar/error.json b/public/language/ar/error.json
index e0c3b1b6c0..1bda94766d 100644
--- a/public/language/ar/error.json
+++ b/public/language/ar/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "نأسف، ( عني ) لا يمكن أن يكون أكثر من %1 حرف.",
"cant-chat-with-yourself": "لايمكنك فتح محادثة مع نفسك",
"chat-restricted": "هذا المستخدم عطل المحادثات الواردة عليه. يجب أن يتبعك حتى تتمكن من فتح محادثة معه.",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "نظام المحادثة معطل.",
"too-many-messages": "لقد أرسلت الكثير من الرسائل، الرجاء اﻹنتظار قليلاً",
"invalid-chat-message": "الرسالة غير صالحة.",
diff --git a/public/language/ar/modules.json b/public/language/ar/modules.json
index 051ccb5798..d9e5d89185 100644
--- a/public/language/ar/modules.json
+++ b/public/language/ar/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chat with",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/ar/notifications.json b/public/language/ar/notifications.json
index 2dea48c500..df92c2b681 100644
--- a/public/language/ar/notifications.json
+++ b/public/language/ar/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 أنشأ موضوعًا جديدًا: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 صار يتابعك.",
"user-started-following-you-dual": "%1 and %2 started following you.",
@@ -75,6 +75,7 @@
"email-confirmed": "تم التحقق من عنوان البريد الإلكتروني",
"email-confirmed-message": "شكرًا على إثبات صحة عنوان بريدك الإلكتروني. صار حسابك مفعلًا بالكامل.",
"email-confirm-error-message": "حدث خطأ أثناء التحقق من عنوان بريدك الإلكتروني. ربما رمز التفعيل خاطئ أو انتهت صلاحيته.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "تم إرسال بريد التفعيل.",
"none": "None",
"notification-only": "التنبيهات فقط",
diff --git a/public/language/ar/post-queue.json b/public/language/ar/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/ar/post-queue.json
+++ b/public/language/ar/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/ar/themes/harmony.json b/public/language/ar/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/ar/themes/harmony.json
+++ b/public/language/ar/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/ar/user.json b/public/language/ar/user.json
index ff6035449c..a5faecb2dd 100644
--- a/public/language/ar/user.json
+++ b/public/language/ar/user.json
@@ -78,6 +78,7 @@
"change-password": "تغيير كلمة السر",
"change-password-error": "كلمة سر غير صحيحة",
"change-password-error-wrong-current": "كلمة السر الحالية ليست صحيحة",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "كلمة السر غير مطابقة لتأكيد كلمة السر",
"change-password-error-privileges": "ليس لديك الصلاحيات الكافية لتغيير كلمة السر هذه.",
"change-password-success": "تم تحديث كلمة السر خاصتك.",
diff --git a/public/language/ar/users.json b/public/language/ar/users.json
index b34cb35a49..5c2d5bee1d 100644
--- a/public/language/ar/users.json
+++ b/public/language/ar/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "أحدث الأعضاء",
"top-posters": "اﻷكثر مشاركة",
"most-reputation": "أعلى سمعة",
diff --git a/public/language/bg/admin/development/info.json b/public/language/bg/admin/development/info.json
index 08f70c0692..71f1e63c4b 100644
--- a/public/language/bg/admin/development/info.json
+++ b/public/language/bg/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 възела отговориха в рамките на %2мсек!",
"host": "сървър",
- "primary": "основен / изпълнение на задачите",
+ "primary": "основен / задачи",
"pid": "ид. на процеса",
"nodejs": "nodejs",
"online": "на линия",
@@ -19,6 +19,7 @@
"registered": "Регистрирани",
"sockets": "Сокети",
+ "connection-count": "Брой връзки",
"guests": "Гости",
"info": "Информация"
diff --git a/public/language/bg/admin/extend/widgets.json b/public/language/bg/admin/extend/widgets.json
index 839138cef2..b0f6a79f3c 100644
--- a/public/language/bg/admin/extend/widgets.json
+++ b/public/language/bg/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Карта",
"container.card-header": "Заглавна част на карта",
"container.card-body": "Основна част на карта",
+ "container.title": "Заглавие",
+ "container.body": "Съдържание",
"container.alert": "Предупреждение",
"alert.confirm-delete": "Наистина ли искате да изтриете джаджата?",
diff --git a/public/language/bg/admin/settings/reputation.json b/public/language/bg/admin/settings/reputation.json
index 7a288c6f04..2c82e22de3 100644
--- a/public/language/bg/admin/settings/reputation.json
+++ b/public/language/bg/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Настройки за репутацията",
"disable": "Изключване на системата за репутация",
"disable-down-voting": "Забрана на отрицателното гласуване",
- "votes-are-public": "Всички гласувания са публични",
+ "upvote-visibility": "Видимост на положителните гласове",
+ "upvote-visibility-all": "Всички могат да виждат положителните гласове",
+ "upvote-visibility-loggedin": "Само вписаните потребители могат да виждат положителните гласове",
+ "upvote-visibility-privileged": "Само потребителите с по-високи правомощия (като администратори и модератори) могат да виждат положителните гласове",
+ "downvote-visibility": "Видимост на отрицателните гласове",
+ "downvote-visibility-all": "Всички могат да виждат отрицателните гласове",
+ "downvote-visibility-loggedin": "Само вписаните потребители могат да виждат отрицателните гласове",
+ "downvote-visibility-privileged": "Само потребителите с по-високи правомощия (като администратори и модератори) могат да виждат отрицателните гласове",
"thresholds": "Ограничения на дейността",
"min-rep-upvote": "Минимална репутация, необходима за положително гласуване за публикации",
"upvotes-per-day": "Положителни гласувания за ден (задайте 0 за неограничен брой)",
diff --git a/public/language/bg/error.json b/public/language/bg/error.json
index 568cefaf0f..63f49e1fda 100644
--- a/public/language/bg/error.json
+++ b/public/language/bg/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Съжаляваме, но информацията за Вас трябва да съдържа не повече от %1 символ(а).",
"cant-chat-with-yourself": "Не можете да пишете съобщение на себе си!",
"chat-restricted": "Този потребител е ограничил съобщенията до себе си. Той трябва първо да Ви последва, преди да можете да си пишете с него.",
+ "chat-user-blocked": "Бяхте блокиран(а) от този потребител.",
"chat-disabled": "Системата за разговори е изключена",
"too-many-messages": "Изпратили сте твърде много съобщения. Моля, изчакайте малко.",
"invalid-chat-message": "Неправилно съобщение",
diff --git a/public/language/bg/modules.json b/public/language/bg/modules.json
index b3a4e6d996..7fc556c4d3 100644
--- a/public/language/bg/modules.json
+++ b/public/language/bg/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Стая %1",
"chat.chatting-with": "Разговор с",
- "chat.placeholder": "Въведете съобщение тук или пуснете снимки и натиснете Ентер за изпращане",
- "chat.placeholder.mobile": "Въведете съобщение тук",
+ "chat.placeholder": "Въведете съобщение тук или пуснете снимки",
+ "chat.placeholder.mobile": "Въведете съобщение",
+ "chat.placeholder.message-room": "Съобщение #%1",
"chat.scroll-up-alert": "Към последните съобщения",
"chat.usernames-and-x-others": "%1 и %2 други",
"chat.chat-with-usernames": "Разговор с %1",
diff --git a/public/language/bg/notifications.json b/public/language/bg/notifications.json
index 213d72f9d4..0659a9e640 100644
--- a/public/language/bg/notifications.json
+++ b/public/language/bg/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 и %3 други публикуваха отговори на: %4",
"user-posted-topic": "%1 публикува нова тема: %2",
"user-edited-post": "%1 редактира публикация в %2",
- "user-posted-topic-with-tag": "%1 публикува нова тема с етикет %2",
- "user-posted-topic-with-tag-dual": "%1 публикува нова тема с етикети %2 и %3",
- "user-posted-topic-with-tag-triple": "%1 публикува нова тема с етикети %2, %3 и %4",
- "user-posted-topic-with-tag-multiple": "%1 публикува нова тема с етикети %2",
+ "user-posted-topic-with-tag": "%1 публикува %2 (с етикет %3)",
+ "user-posted-topic-with-tag-dual": "%1 публикува %2 (с етикети %3 и %4)",
+ "user-posted-topic-with-tag-triple": "%1 публикува %2 (с етикети %3, %4 и %5)",
+ "user-posted-topic-with-tag-multiple": "%1 публикува %2 (с етикет %3)",
"user-posted-topic-in-category": "%1 публикува нова тема в %2",
"user-started-following-you": "%1 започна да Ви следва.",
"user-started-following-you-dual": "%1 и %2 започнаха да Ви следват.",
@@ -75,6 +75,7 @@
"email-confirmed": "Е-пощата беше потвърдена",
"email-confirmed-message": "Благодарим Ви, че потвърдихте е-пощата си. Акаунтът Ви е вече напълно активиран.",
"email-confirm-error-message": "Възникна проблем при потвърждаването на е-пощата Ви. Може кодът да е грешен или давността му да е изтекла.",
+ "email-confirm-error-message-already-validated": "Адресът на е-пощата Ви вече е проверен.",
"email-confirm-sent": "Изпратено е е-писмо за потвърждение.",
"none": "Нищо",
"notification-only": "Само известие",
diff --git a/public/language/bg/post-queue.json b/public/language/bg/post-queue.json
index de0b0f22a4..8634dc6d99 100644
--- a/public/language/bg/post-queue.json
+++ b/public/language/bg/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Премахване на избраните",
"remove-selected-confirm": "Наистина ли искате да премахнете избраните %1 публикации?",
"bulk-accept-success": "Одобрени публикации: %1",
- "bulk-reject-success": "Отхвърлени публикации: %1"
+ "bulk-reject-success": "Отхвърлени публикации: %1",
+ "links-in-this-post": "Връзки в тази публикация"
}
\ No newline at end of file
diff --git a/public/language/bg/themes/harmony.json b/public/language/bg/themes/harmony.json
index cb21cadb9e..27e0c320e1 100644
--- a/public/language/bg/themes/harmony.json
+++ b/public/language/bg/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Впишете се или се регистрирайте, за да можете да търсите.",
"settings.title": "Настройки на темата",
"settings.enableQuickReply": "Включване на бързите отговори",
- "settings.enableBreadcrumbs": "Включване на пътечките на страниците",
+ "settings.enableBreadcrumbs": "Показване на пътечката в страниците с категории и теми",
+ "settings.enableBreadcrumbs.why": "Пътечката се вижда на повечето страници за по-лесно навигиране. Основният дизайн на страниците с категории и теми предоставя други начини за връщане към по-общите страници, но ако желаете, може да изключите показването на пътечката, за да няма претрупване.",
"settings.centerHeaderElements": "Центриране на заглавните елементи",
"settings.mobileTopicTeasers": "Показване на резюмета на темите на мобилни устройства",
"settings.stickyToolbar": "Статична лента с инструменти",
diff --git a/public/language/bg/user.json b/public/language/bg/user.json
index e7b3229bad..e83af03504 100644
--- a/public/language/bg/user.json
+++ b/public/language/bg/user.json
@@ -78,6 +78,7 @@
"change-password": "Промяна на паролата",
"change-password-error": "Грешна парола!",
"change-password-error-wrong-current": "Текущата Ви парола е грешна!",
+ "change-password-error-same-password": "Новата Ви парола съвпада с текущата. Моля, използвайте нова парола.",
"change-password-error-match": "Паролите са различни!",
"change-password-error-privileges": "Нямате права да промените тази парола.",
"change-password-success": "Паролата ви е обновена!",
diff --git a/public/language/bg/users.json b/public/language/bg/users.json
index a716af22d4..31e48cdd91 100644
--- a/public/language/bg/users.json
+++ b/public/language/bg/users.json
@@ -1,5 +1,6 @@
{
"all-users": "Всички потребители",
+ "followed-users": "Следвани потребители",
"latest-users": "Последни потребители",
"top-posters": "С най-много публикации",
"most-reputation": "С най-много репутация",
diff --git a/public/language/bn/admin/development/info.json b/public/language/bn/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/bn/admin/development/info.json
+++ b/public/language/bn/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/bn/admin/extend/widgets.json b/public/language/bn/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/bn/admin/extend/widgets.json
+++ b/public/language/bn/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/bn/admin/settings/reputation.json b/public/language/bn/admin/settings/reputation.json
index e4fff22620..479069e3a4 100644
--- a/public/language/bn/admin/settings/reputation.json
+++ b/public/language/bn/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/bn/error.json b/public/language/bn/error.json
index 1095290a86..25bbbb804d 100644
--- a/public/language/bn/error.json
+++ b/public/language/bn/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "আপনি নিজের সাথে চ্যাট করতে পারবেন না!",
"chat-restricted": "এই সদস্য তার বার্তালাপ সংরক্ষিত রেখেছেন। এই সদস্য আপনাকে ফলো করার পরই কেবলমাত্র আপনি তার সাথে চ্যাট করতে পারবেন",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Chat system disabled",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
diff --git a/public/language/bn/modules.json b/public/language/bn/modules.json
index 68ba8f6743..b9a4c311c8 100644
--- a/public/language/bn/modules.json
+++ b/public/language/bn/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chat with",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/bn/notifications.json b/public/language/bn/notifications.json
index c40359bca7..fb7ca8696c 100644
--- a/public/language/bn/notifications.json
+++ b/public/language/bn/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 has posted a new topic: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 আপনাকে অনুসরন করা শুরু করেছেন।",
"user-started-following-you-dual": "%1 and %2 started following you.",
@@ -75,6 +75,7 @@
"email-confirmed": "ইমেইল নিশ্চিত করা হয়েছে",
"email-confirmed-message": "আপনার ইমেইল যাচাই করার জন্য আপনাকে ধন্যবাদ। আপনার অ্যাকাউন্টটি এখন সম্পূর্ণরূপে সক্রিয়।",
"email-confirm-error-message": "আপনার ইমেল ঠিকানার বৈধতা যাচাইয়ে একটি সমস্যা হয়েছে। সম্ভবত কোডটি ভুল ছিল অথবা কোডের মেয়াদ শেষ হয়ে গিয়েছে।",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "নিশ্চিতকরণ ইমেইল পাঠানো হয়েছে।",
"none": "None",
"notification-only": "Notification Only",
diff --git a/public/language/bn/post-queue.json b/public/language/bn/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/bn/post-queue.json
+++ b/public/language/bn/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/bn/themes/harmony.json b/public/language/bn/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/bn/themes/harmony.json
+++ b/public/language/bn/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/bn/user.json b/public/language/bn/user.json
index 3498f5c101..3d9427e2bb 100644
--- a/public/language/bn/user.json
+++ b/public/language/bn/user.json
@@ -78,6 +78,7 @@
"change-password": "পাসওয়ার্ড পরিবর্তন",
"change-password-error": "অগ্রহনযোগ্য পাসওয়ার্ড",
"change-password-error-wrong-current": "আপনার পাসওয়ার্ড সঠিক নয়",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "পাসওয়ার্ড অবশ্যই একই হতে হবে",
"change-password-error-privileges": "আপনার পাসওয়ার্ড পরিবর্তন করার অনুমতি নেই",
"change-password-success": "আপনার পাসওয়ার্ড আপডেট করা হয়েছে",
diff --git a/public/language/bn/users.json b/public/language/bn/users.json
index faca07fbbb..e7fc7d9a94 100644
--- a/public/language/bn/users.json
+++ b/public/language/bn/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "সর্বশেষ নিবন্ধিত সদস্যরা:",
"top-posters": "সর্বোচ্চ পোষ্টকারী",
"most-reputation": "সর্বোচ্চ সম্মাননাধারী",
diff --git a/public/language/cs/admin/development/info.json b/public/language/cs/admin/development/info.json
index c47e061cb2..19fb830e9d 100644
--- a/public/language/cs/admin/development/info.json
+++ b/public/language/cs/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 vazeb odpovědělo během %2ms.",
"host": "host",
- "primary": "primární / spuštěné úlohy",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "připojen",
@@ -19,6 +19,7 @@
"registered": "Registrován",
"sockets": "Sockety",
+ "connection-count": "Connection Count",
"guests": "Hosté",
"info": "Informace"
diff --git a/public/language/cs/admin/extend/widgets.json b/public/language/cs/admin/extend/widgets.json
index a90d25c403..5298775419 100644
--- a/public/language/cs/admin/extend/widgets.json
+++ b/public/language/cs/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Upozornění",
"alert.confirm-delete": "Jste si jist/a, že chcete smazat tuto miniaplikaci?",
diff --git a/public/language/cs/admin/settings/reputation.json b/public/language/cs/admin/settings/reputation.json
index c982a8ac2b..42e9bae172 100644
--- a/public/language/cs/admin/settings/reputation.json
+++ b/public/language/cs/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Nastavení reputace",
"disable": "Zakázat systém reputace",
"disable-down-voting": "Zakázat hlasování",
- "votes-are-public": "Všechna hlasování jsou veřejná",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Omezení aktivity",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/cs/error.json b/public/language/cs/error.json
index 9f61d1907b..d6d6e2244e 100644
--- a/public/language/cs/error.json
+++ b/public/language/cs/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Omlouváme se, ale \"O mně\" nesmí být delší než %1 znaků.",
"cant-chat-with-yourself": "Nemůžete konverzovat sami se sebou.",
"chat-restricted": "Tento uživatel má omezené konverzační zprávy. Nejdříve vás musí začít sledovat, než začnete spolu konverzovat",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Konverzační systém zakázán",
"too-many-messages": "Odeslal/a jste příliš mnoho zpráv, vyčkejte chvíli.",
"invalid-chat-message": "Neplatná konverzační zpráva",
diff --git a/public/language/cs/modules.json b/public/language/cs/modules.json
index 8449a1a15e..a0e8d950b0 100644
--- a/public/language/cs/modules.json
+++ b/public/language/cs/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Konverzace s",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/cs/notifications.json b/public/language/cs/notifications.json
index dc1f11eaf7..49c8e9c597 100644
--- a/public/language/cs/notifications.json
+++ b/public/language/cs/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 založil nové téma: %2",
"user-edited-post": "Příspěvek %2 byl upraven uživatelem %1",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 vás začal sledovat.",
"user-started-following-you-dual": "%1 a %2 vás začali sledovat.",
@@ -75,6 +75,7 @@
"email-confirmed": "E-mail potvrzen",
"email-confirmed-message": "Děkujeme za ověření vaší e-mailové adresy. Váš účet je nyní aktivní.",
"email-confirm-error-message": "Nastal problém s ověřením vaší e-mailové adresy. Kód je pravděpodobně neplatný nebo jeho platnost vypršela.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Ověřovací e-mail odeslán.",
"none": "Nic",
"notification-only": "Jen oznámení",
diff --git a/public/language/cs/post-queue.json b/public/language/cs/post-queue.json
index 8212df7563..e3e410fb22 100644
--- a/public/language/cs/post-queue.json
+++ b/public/language/cs/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/cs/themes/harmony.json b/public/language/cs/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/cs/themes/harmony.json
+++ b/public/language/cs/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/cs/user.json b/public/language/cs/user.json
index d2d2e04ea9..2594e8b411 100644
--- a/public/language/cs/user.json
+++ b/public/language/cs/user.json
@@ -78,6 +78,7 @@
"change-password": "Změnit heslo",
"change-password-error": "Neplatné heslo.",
"change-password-error-wrong-current": "Aktuální heslo není správně.",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Hesla se neshodují.",
"change-password-error-privileges": "Nemáte oprávnění změnit heslo.",
"change-password-success": "Heslo bylo aktualizováno.",
diff --git a/public/language/cs/users.json b/public/language/cs/users.json
index 5947554536..195ee52f14 100644
--- a/public/language/cs/users.json
+++ b/public/language/cs/users.json
@@ -1,5 +1,6 @@
{
"all-users": "Všichni uživatelé",
+ "followed-users": "Followed Users",
"latest-users": "Nejnovější uživatelé",
"top-posters": "Nejaktivnější",
"most-reputation": "Nejváženější",
diff --git a/public/language/da/admin/development/info.json b/public/language/da/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/da/admin/development/info.json
+++ b/public/language/da/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/da/admin/extend/widgets.json b/public/language/da/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/da/admin/extend/widgets.json
+++ b/public/language/da/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/da/admin/settings/reputation.json b/public/language/da/admin/settings/reputation.json
index e4fff22620..479069e3a4 100644
--- a/public/language/da/admin/settings/reputation.json
+++ b/public/language/da/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/da/error.json b/public/language/da/error.json
index e333c37eb1..ff4ca22969 100644
--- a/public/language/da/error.json
+++ b/public/language/da/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Beklager, men din om mig side kan ikke være længere end %1 karakter(er).",
"cant-chat-with-yourself": "Du kan ikke chatte med dig selv!",
"chat-restricted": "Denne bruger har spæret adgangen til chat beskeder. Brugeren må følge dig før du kan chatte med ham/hende",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Chat system er deaktiveret",
"too-many-messages": "Du har sendt for mange beskeder, vent venligt lidt.",
"invalid-chat-message": "Ugyldig chat besked",
diff --git a/public/language/da/modules.json b/public/language/da/modules.json
index d8fc415351..0e034f464c 100644
--- a/public/language/da/modules.json
+++ b/public/language/da/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chat with",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/da/notifications.json b/public/language/da/notifications.json
index 68a591ebdd..71f11432b5 100644
--- a/public/language/da/notifications.json
+++ b/public/language/da/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 har oprettet en ny tråd: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 har valgt at følge dig.",
"user-started-following-you-dual": "%1 og %2 har valgt at følge dig.",
@@ -75,6 +75,7 @@
"email-confirmed": "Email bekræftet",
"email-confirmed-message": "Tak fordi du validerede din email. Din konto er nu fuldt ud aktiveret.",
"email-confirm-error-message": "Der var et problem med valideringen af din emailadresse. Bekræftelses koden var muligvis forkert eller udløbet.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Bekræftelses email afsendt.",
"none": "None",
"notification-only": "Notification Only",
diff --git a/public/language/da/post-queue.json b/public/language/da/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/da/post-queue.json
+++ b/public/language/da/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/da/themes/harmony.json b/public/language/da/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/da/themes/harmony.json
+++ b/public/language/da/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/da/user.json b/public/language/da/user.json
index c60d54fbba..859b326a98 100644
--- a/public/language/da/user.json
+++ b/public/language/da/user.json
@@ -78,6 +78,7 @@
"change-password": "Skift kodeord",
"change-password-error": "Ukorrekt kodeord",
"change-password-error-wrong-current": "Nuværende kodeord er ikke korrekt",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Passwords matcher ikke!",
"change-password-error-privileges": "Du har ikke rettigheder til at ændre dette password.",
"change-password-success": "Dit password er opdateret!",
diff --git a/public/language/da/users.json b/public/language/da/users.json
index c753726891..633884794e 100644
--- a/public/language/da/users.json
+++ b/public/language/da/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "Seneste brugere",
"top-posters": "Top Postere",
"most-reputation": "Mest Omdømme",
diff --git a/public/language/de/admin/development/info.json b/public/language/de/admin/development/info.json
index 082f1b212c..75e634b208 100644
--- a/public/language/de/admin/development/info.json
+++ b/public/language/de/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP%1",
"nodes-responded": "%1 Knoten antworteten innerhalb von %2ms",
"host": "Host",
- "primary": "Primärer / Laufjob",
+ "primary": "primary / jobs",
"pid": "PID",
"nodejs": "Node.js Version",
"online": "Online",
@@ -19,6 +19,7 @@
"registered": "Registriert",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Gäste",
"info": "Info"
diff --git a/public/language/de/admin/extend/widgets.json b/public/language/de/admin/extend/widgets.json
index 73e7853806..37dbf4208f 100644
--- a/public/language/de/admin/extend/widgets.json
+++ b/public/language/de/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Karte",
"container.card-header": "Karten-Kopfzeile",
"container.card-body": "Karten-Körper",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alarm",
"alert.confirm-delete": "Möchtest Du dieses Widget wirklich löschen?",
diff --git a/public/language/de/admin/settings/reputation.json b/public/language/de/admin/settings/reputation.json
index 96c048a963..5ee4aca389 100644
--- a/public/language/de/admin/settings/reputation.json
+++ b/public/language/de/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Ansehenseinstellungen",
"disable": "Ansehenssystem deaktivieren",
"disable-down-voting": "Negative Bewertungen deaktivieren",
- "votes-are-public": "Alle Bewertungen sind öffentlich",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Aktivitätsschwelle",
"min-rep-upvote": "Mindestreputation, um Beiträge hochzustimmen",
"upvotes-per-day": "Upvotes pro Tag (für unbegrenzte Upvotes auf 0 setzen)",
diff --git a/public/language/de/error.json b/public/language/de/error.json
index ca2b4ad316..4b3bbcdd34 100644
--- a/public/language/de/error.json
+++ b/public/language/de/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Entschuldigung, dein \"über mich\" kann nicht länger als %1 Zeichen sein.",
"cant-chat-with-yourself": "Du kannst nicht mit dir selber chatten!",
"chat-restricted": "Dieser Benutzer hat seine Chatfunktion eingeschränkt. Du kannst nur mit diesem Benutzer chatten, wenn er dir folgt.",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Das Chatsystem deaktiviert",
"too-many-messages": "Du hast zu viele Nachrichten versandt, bitte warte eine Weile.",
"invalid-chat-message": "Ungültige Nachricht",
diff --git a/public/language/de/modules.json b/public/language/de/modules.json
index 80d6560e7d..07223c8d94 100644
--- a/public/language/de/modules.json
+++ b/public/language/de/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Raum %1",
"chat.chatting-with": "Chatte mit",
- "chat.placeholder": "Gebe hier eine Chatnachricht ein, ziehe Bilder per Drag & Drop und drücke die Eingabetaste, um sie zu senden",
- "chat.placeholder.mobile": "Hier Chatnachricht eingeben",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Zur neuesten Nachricht gehen",
"chat.usernames-and-x-others": "%1 & %2 andere",
"chat.chat-with-usernames": "Chatte mit %1",
diff --git a/public/language/de/notifications.json b/public/language/de/notifications.json
index 6c26f60728..983cfc0f9d 100644
--- a/public/language/de/notifications.json
+++ b/public/language/de/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 und %3 andere haben geantwortet auf: %4",
"user-posted-topic": "%1 hat ein neues Thema erstellt: %2",
"user-edited-post": "%1 hat einen Post in %2 bearbeitet",
- "user-posted-topic-with-tag": "%1 hat ein neues Thema mit dem Tag %2 erstellt",
- "user-posted-topic-with-tag-dual": "%1 hat ein neues Thema mit den Tags %2 and %3 erstellt",
- "user-posted-topic-with-tag-triple": "%1 hat ein neues Thema mit den Tags %2, %3 und %4 erstellt",
- "user-posted-topic-with-tag-multiple": "%1 hat ein neues Thema mit den Tags %2 erstellt",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 hat ein neues Thema in %2 erstellt",
"user-started-following-you": "%1 folgt dir jetzt.",
"user-started-following-you-dual": "%1 und %2 folgen dir jetzt.",
@@ -75,6 +75,7 @@
"email-confirmed": "E-Mail bestätigt",
"email-confirmed-message": "Vielen Dank für Ihre E-Mail-Validierung. Ihr Konto ist nun vollständig aktiviert.",
"email-confirm-error-message": "Es gab ein Problem bei der Validierung Ihrer E-Mail-Adresse. Möglicherweise ist der Code ungültig oder abgelaufen.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Bestätigungs-E-Mail gesendet.",
"none": "Nichts",
"notification-only": "Nur Benachrichtigungen",
diff --git a/public/language/de/post-queue.json b/public/language/de/post-queue.json
index 2ace5c3d6f..a5ba8448c4 100644
--- a/public/language/de/post-queue.json
+++ b/public/language/de/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Ausgewählte entfernen",
"remove-selected-confirm": "Möchtest Du %1 ausgewählte Beiträge entfernen?",
"bulk-accept-success": "%1 Beiträge akzeptiert",
- "bulk-reject-success": "%1 Beiträge abgelehnt"
+ "bulk-reject-success": "%1 Beiträge abgelehnt",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/de/themes/harmony.json b/public/language/de/themes/harmony.json
index d1e2743217..304a3ec023 100644
--- a/public/language/de/themes/harmony.json
+++ b/public/language/de/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Anmelden oder registrieren, um zu suchen",
"settings.title": "Theme-Einstellungen",
"settings.enableQuickReply": "Schnelle Antworten aktivieren",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Header-Elemente zentrieren",
"settings.mobileTopicTeasers": "Themen-Vorschau auf Mobilgeräten anzeigen",
"settings.stickyToolbar": "Klebrige Toolbar",
diff --git a/public/language/de/user.json b/public/language/de/user.json
index 86be2c274f..5024d4211c 100644
--- a/public/language/de/user.json
+++ b/public/language/de/user.json
@@ -78,6 +78,7 @@
"change-password": "Passwort ändern",
"change-password-error": "Ungültiges Passwort!",
"change-password-error-wrong-current": "Ihr derzeitiges Passwort ist ungültig!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Passwörter müssen übereinstimmen!",
"change-password-error-privileges": "Deine Berechtigungen reichen nicht aus, um dieses Passwort zu ändern.",
"change-password-success": "Ihr Passwort wurde aktualisiert!",
diff --git a/public/language/de/users.json b/public/language/de/users.json
index bd842c76f4..2793cb50f9 100644
--- a/public/language/de/users.json
+++ b/public/language/de/users.json
@@ -1,5 +1,6 @@
{
"all-users": "Alle Benutzer",
+ "followed-users": "Followed Users",
"latest-users": "Neuste Benutzer",
"top-posters": "Meiste Beiträge",
"most-reputation": "Höchstes Ansehen",
diff --git a/public/language/el/admin/development/info.json b/public/language/el/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/el/admin/development/info.json
+++ b/public/language/el/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/el/admin/extend/widgets.json b/public/language/el/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/el/admin/extend/widgets.json
+++ b/public/language/el/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/el/admin/settings/reputation.json b/public/language/el/admin/settings/reputation.json
index e4fff22620..479069e3a4 100644
--- a/public/language/el/admin/settings/reputation.json
+++ b/public/language/el/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/el/error.json b/public/language/el/error.json
index 610b497364..76c215d00c 100644
--- a/public/language/el/error.json
+++ b/public/language/el/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Δεν μπορείς να συνομιλήσεις με τον εαυτό σου!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Chat system disabled",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
diff --git a/public/language/el/modules.json b/public/language/el/modules.json
index 3bc454ffdc..62eeb01bc4 100644
--- a/public/language/el/modules.json
+++ b/public/language/el/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chat with",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/el/notifications.json b/public/language/el/notifications.json
index 8043fa57da..609c4830af 100644
--- a/public/language/el/notifications.json
+++ b/public/language/el/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 has posted a new topic: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 started following you.",
"user-started-following-you-dual": "%1 and %2 started following you.",
@@ -75,6 +75,7 @@
"email-confirmed": "Email Confirmed",
"email-confirmed-message": "Thank you for validating your email. Your account is now fully activated.",
"email-confirm-error-message": "There was a problem validating your email address. Perhaps the code was invalid or has expired.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Στάλθηκε email επιβεβαίωσης.",
"none": "None",
"notification-only": "Notification Only",
diff --git a/public/language/el/post-queue.json b/public/language/el/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/el/post-queue.json
+++ b/public/language/el/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/el/themes/harmony.json b/public/language/el/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/el/themes/harmony.json
+++ b/public/language/el/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/el/user.json b/public/language/el/user.json
index 07f3fb63ac..e236310aca 100644
--- a/public/language/el/user.json
+++ b/public/language/el/user.json
@@ -78,6 +78,7 @@
"change-password": "Αλλαγή Κωδικού",
"change-password-error": "Άκυρος Κωδικός!",
"change-password-error-wrong-current": "Ο τωρινός σου κωδικός δεν είναι σωστός!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Οι κωδικοί πρέπει να είναι οι ίδιοι!",
"change-password-error-privileges": "Δεν έχεις δικαιώματα για να αλλάξεις αυτόν τον κωδικό.",
"change-password-success": "Ο κωδικός σου ανανεώθηκε!",
diff --git a/public/language/el/users.json b/public/language/el/users.json
index 2688ff4ae2..962f274993 100644
--- a/public/language/el/users.json
+++ b/public/language/el/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "Πρόσφατοι Χρήστες",
"top-posters": "Top Δημοσιεύοντες",
"most-reputation": "Υψηλότερη Φήμη",
diff --git a/public/language/en-GB/admin/extend/widgets.json b/public/language/en-GB/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/en-GB/admin/extend/widgets.json
+++ b/public/language/en-GB/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/en-GB/error.json b/public/language/en-GB/error.json
index d849187bae..c8d52acb6e 100644
--- a/public/language/en-GB/error.json
+++ b/public/language/en-GB/error.json
@@ -179,6 +179,7 @@
"cant-chat-with-yourself": "You can't chat with yourself!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Chat system disabled",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
diff --git a/public/language/en-GB/modules.json b/public/language/en-GB/modules.json
index 36731fe37f..3e332287d4 100644
--- a/public/language/en-GB/modules.json
+++ b/public/language/en-GB/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chat with",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/en-GB/notifications.json b/public/language/en-GB/notifications.json
index 2782fdaff9..a359aed941 100644
--- a/public/language/en-GB/notifications.json
+++ b/public/language/en-GB/notifications.json
@@ -57,10 +57,10 @@
"user-posted-topic": "%1 has posted a new topic: %2",
"user-edited-post" : "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
@@ -83,6 +83,7 @@
"email-confirmed": "Email Confirmed",
"email-confirmed-message": "Thank you for validating your email. Your account is now fully activated.",
"email-confirm-error-message": "There was a problem validating your email address. Perhaps the code was invalid or has expired.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Confirmation email sent.",
"none": "None",
diff --git a/public/language/en-GB/themes/harmony.json b/public/language/en-GB/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/en-GB/themes/harmony.json
+++ b/public/language/en-GB/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/en-GB/user.json b/public/language/en-GB/user.json
index b010898322..73bce4498a 100644
--- a/public/language/en-GB/user.json
+++ b/public/language/en-GB/user.json
@@ -81,6 +81,7 @@
"change-password": "Change Password",
"change-password-error": "Invalid Password!",
"change-password-error-wrong-current": "Your current password is not correct!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Passwords must match!",
"change-password-error-privileges": "You do not have the rights to change this password.",
"change-password-success": "Your password is updated!",
diff --git a/public/language/en-GB/users.json b/public/language/en-GB/users.json
index 9e29aecf63..ac1faf4a09 100644
--- a/public/language/en-GB/users.json
+++ b/public/language/en-GB/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "Latest Users",
"top-posters": "Top Posters",
"most-reputation": "Most Reputation",
diff --git a/public/language/en-US/admin/development/info.json b/public/language/en-US/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/en-US/admin/development/info.json
+++ b/public/language/en-US/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/en-US/admin/extend/widgets.json b/public/language/en-US/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/en-US/admin/extend/widgets.json
+++ b/public/language/en-US/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/en-US/admin/settings/reputation.json b/public/language/en-US/admin/settings/reputation.json
index e4fff22620..479069e3a4 100644
--- a/public/language/en-US/admin/settings/reputation.json
+++ b/public/language/en-US/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/en-US/error.json b/public/language/en-US/error.json
index f12e15c94f..674f9bec8b 100644
--- a/public/language/en-US/error.json
+++ b/public/language/en-US/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "You can't chat with yourself!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Chat system disabled",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
diff --git a/public/language/en-US/modules.json b/public/language/en-US/modules.json
index 3bc454ffdc..62eeb01bc4 100644
--- a/public/language/en-US/modules.json
+++ b/public/language/en-US/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chat with",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/en-US/notifications.json b/public/language/en-US/notifications.json
index 02125c4009..989025a566 100644
--- a/public/language/en-US/notifications.json
+++ b/public/language/en-US/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 has posted a new topic: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 started following you.",
"user-started-following-you-dual": "%1 and %2 started following you.",
@@ -75,6 +75,7 @@
"email-confirmed": "Email Confirmed",
"email-confirmed-message": "Thank you for validating your email. Your account is now fully activated.",
"email-confirm-error-message": "There was a problem validating your email address. Perhaps the code was invalid or has expired.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Confirmation email sent.",
"none": "None",
"notification-only": "Notification Only",
diff --git a/public/language/en-US/post-queue.json b/public/language/en-US/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/en-US/post-queue.json
+++ b/public/language/en-US/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/en-US/themes/harmony.json b/public/language/en-US/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/en-US/themes/harmony.json
+++ b/public/language/en-US/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/en-US/user.json b/public/language/en-US/user.json
index 8fba89a9de..51386c048f 100644
--- a/public/language/en-US/user.json
+++ b/public/language/en-US/user.json
@@ -78,6 +78,7 @@
"change-password": "Change Password",
"change-password-error": "Invalid Password!",
"change-password-error-wrong-current": "Your current password is not correct!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Passwords must match!",
"change-password-error-privileges": "You do not have the rights to change this password.",
"change-password-success": "Your password is updated!",
diff --git a/public/language/en-US/users.json b/public/language/en-US/users.json
index 18882fa619..ab6dd9154a 100644
--- a/public/language/en-US/users.json
+++ b/public/language/en-US/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "Latest Users",
"top-posters": "Top Posters",
"most-reputation": "Most Reputation",
diff --git a/public/language/en-x-pirate/admin/development/info.json b/public/language/en-x-pirate/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/en-x-pirate/admin/development/info.json
+++ b/public/language/en-x-pirate/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/en-x-pirate/admin/extend/widgets.json b/public/language/en-x-pirate/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/en-x-pirate/admin/extend/widgets.json
+++ b/public/language/en-x-pirate/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/en-x-pirate/admin/settings/reputation.json b/public/language/en-x-pirate/admin/settings/reputation.json
index e4fff22620..479069e3a4 100644
--- a/public/language/en-x-pirate/admin/settings/reputation.json
+++ b/public/language/en-x-pirate/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/en-x-pirate/error.json b/public/language/en-x-pirate/error.json
index f12e15c94f..674f9bec8b 100644
--- a/public/language/en-x-pirate/error.json
+++ b/public/language/en-x-pirate/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "You can't chat with yourself!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Chat system disabled",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
diff --git a/public/language/en-x-pirate/modules.json b/public/language/en-x-pirate/modules.json
index a9cf4d3ed8..6e180967fb 100644
--- a/public/language/en-x-pirate/modules.json
+++ b/public/language/en-x-pirate/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chat with",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/en-x-pirate/notifications.json b/public/language/en-x-pirate/notifications.json
index 975f837cd7..98358f593f 100644
--- a/public/language/en-x-pirate/notifications.json
+++ b/public/language/en-x-pirate/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 has posted a new topic: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 started following you.",
"user-started-following-you-dual": "%1 and %2 started following you.",
@@ -75,6 +75,7 @@
"email-confirmed": "Email Confirmed",
"email-confirmed-message": "Thank you for validating your email. Your account is now fully activated.",
"email-confirm-error-message": "There was a problem validating your email address. Perhaps the code was invalid or has expired.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Confirmation email sent.",
"none": "None",
"notification-only": "Notification Only",
diff --git a/public/language/en-x-pirate/post-queue.json b/public/language/en-x-pirate/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/en-x-pirate/post-queue.json
+++ b/public/language/en-x-pirate/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/en-x-pirate/themes/harmony.json b/public/language/en-x-pirate/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/en-x-pirate/themes/harmony.json
+++ b/public/language/en-x-pirate/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/en-x-pirate/user.json b/public/language/en-x-pirate/user.json
index 8653a1e096..58dcb69f71 100644
--- a/public/language/en-x-pirate/user.json
+++ b/public/language/en-x-pirate/user.json
@@ -78,6 +78,7 @@
"change-password": "Change Password",
"change-password-error": "Invalid Password!",
"change-password-error-wrong-current": "Your current password is not correct!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Passwords must match!",
"change-password-error-privileges": "You do not have the rights to change this password.",
"change-password-success": "Your password is updated!",
diff --git a/public/language/en-x-pirate/users.json b/public/language/en-x-pirate/users.json
index 435f4d2652..2da0f54540 100644
--- a/public/language/en-x-pirate/users.json
+++ b/public/language/en-x-pirate/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "Land lubbers",
"top-posters": "Top mateys",
"most-reputation": "Most Reputation",
diff --git a/public/language/es/admin/admin.json b/public/language/es/admin/admin.json
index e869a52da7..9e1c619891 100644
--- a/public/language/es/admin/admin.json
+++ b/public/language/es/admin/admin.json
@@ -1,5 +1,5 @@
{
- "alert.confirm-rebuild-and-restart": "¿Está seguro que desea reconstruir y reiniciar NodeBB?",
+ "alert.confirm-rebuild-and-restart": "Are you sure you wish to rebuild and restart NodeBB?",
"alert.confirm-restart": "¿Está seguro que desea reiniciar NodeBB?",
"acp-title": "%1 | Panel de control de administrador NodeBB",
diff --git a/public/language/es/admin/development/info.json b/public/language/es/admin/development/info.json
index 5f934d3a40..6f37b0c1e8 100644
--- a/public/language/es/admin/development/info.json
+++ b/public/language/es/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "¡%1 nodos respondieron en %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "en-linea",
@@ -19,6 +19,7 @@
"registered": "Registrado",
"sockets": "Toma",
+ "connection-count": "Connection Count",
"guests": "Invitados",
"info": "Información"
diff --git a/public/language/es/admin/extend/widgets.json b/public/language/es/admin/extend/widgets.json
index 02774f78f3..c3833836a4 100644
--- a/public/language/es/admin/extend/widgets.json
+++ b/public/language/es/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alerta (alert)",
"alert.confirm-delete": "Estás seguro/a de que deseas borrar este widget?",
diff --git a/public/language/es/admin/settings/reputation.json b/public/language/es/admin/settings/reputation.json
index f327695a35..f9eae15643 100644
--- a/public/language/es/admin/settings/reputation.json
+++ b/public/language/es/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Configuración de Reputación",
"disable": "Desactivar Sistema de Reputación",
"disable-down-voting": "Desactivar Votos Negativos",
- "votes-are-public": "Todos los Votos son Públicos",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Umbrales de Actividad",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/es/error.json b/public/language/es/error.json
index c9a2e457d9..eaf6c6d3d4 100644
--- a/public/language/es/error.json
+++ b/public/language/es/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Lo sentimos, pero tu descripción no puede ser más larga de %1 caractere(s).",
"cant-chat-with-yourself": "¡No puedes conversar contigo mismo!",
"chat-restricted": "Este usuario tiene restringidos los mensajes de chat. Los usuarios deben seguirte antes de que pueda charlar con ellos",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "El sistema de chat está deshabilitado",
"too-many-messages": "Has enviado demasiados mensajes, por favor espera un poco.",
"invalid-chat-message": "Mensaje de Chat inválido",
diff --git a/public/language/es/modules.json b/public/language/es/modules.json
index 3d907c74ed..884a5353fa 100644
--- a/public/language/es/modules.json
+++ b/public/language/es/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chatear con",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/es/notifications.json b/public/language/es/notifications.json
index 16d514cb9c..18c6160c26 100644
--- a/public/language/es/notifications.json
+++ b/public/language/es/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 ha publicado un nuevo tema: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 comenzó a seguirte.",
"user-started-following-you-dual": "%1 y %2 comenzaron a seguirte.",
@@ -75,6 +75,7 @@
"email-confirmed": "Correo electrónico confirmado",
"email-confirmed-message": "Gracias por validar tu correo electrónico. Tu cuenta ya está completamente activa.",
"email-confirm-error-message": "Hubo un problema al validar tu cuenta de correo electrónico. Quizá el código era erróneo o expiró...",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Correo de confirmación enviado.",
"none": "Ninguno/a",
"notification-only": "Solo Notificación",
diff --git a/public/language/es/post-queue.json b/public/language/es/post-queue.json
index 4005bfcbb4..d440fc983f 100644
--- a/public/language/es/post-queue.json
+++ b/public/language/es/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/es/rewards.json b/public/language/es/rewards.json
index f923cf1500..57578aca4a 100644
--- a/public/language/es/rewards.json
+++ b/public/language/es/rewards.json
@@ -1,5 +1,5 @@
{
- "awarded-x-reputation": "You have been awarded %1 reputation",
+ "awarded-x-reputation": "Has sido premiado",
"awarded-group-membership": "You have been added to the group %1",
"essentials/user.reputation-conditional-value": "(Reputation %1 %2)",
diff --git a/public/language/es/themes/harmony.json b/public/language/es/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/es/themes/harmony.json
+++ b/public/language/es/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/es/user.json b/public/language/es/user.json
index de0d5f59c2..de49651aa5 100644
--- a/public/language/es/user.json
+++ b/public/language/es/user.json
@@ -78,6 +78,7 @@
"change-password": "Cambiar contraseña",
"change-password-error": "¡Contraseña no válida!",
"change-password-error-wrong-current": "¡Su contraseña actual no es correcta!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "¡Las contraseñas deben coincidir!",
"change-password-error-privileges": "No tienes los permisos suficientes para cambiar esta contraseña.",
"change-password-success": "¡Tu contraseña ha sido actualizada!",
diff --git a/public/language/es/users.json b/public/language/es/users.json
index b5e67ca5dc..3fe8b73df1 100644
--- a/public/language/es/users.json
+++ b/public/language/es/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "Últimos usuarios",
"top-posters": "Top por mensajes",
"most-reputation": "Más reputados",
diff --git a/public/language/et/admin/admin.json b/public/language/et/admin/admin.json
index 1e904fd12e..8446c26e4e 100644
--- a/public/language/et/admin/admin.json
+++ b/public/language/et/admin/admin.json
@@ -4,15 +4,15 @@
"acp-title": "%1 | NodeBB Administraatori kontrollpaneel",
"settings-header-contents": "Sisu",
- "changes-saved": "Changes Saved",
+ "changes-saved": "Muudatused salvestatud",
"changes-saved-message": "Your changes to the NodeBB configuration have been saved.",
"changes-not-saved": "Changes Not Saved",
- "changes-not-saved-message": "NodeBB encountered a problem saving your changes. (%1)",
- "save-changes": "Save changes",
+ "changes-not-saved-message": "NodeBB-l tekkis probleem su muudatuste salvestamisel. (%1)",
+ "save-changes": "Salvesta muudatused",
"min": "Min:",
"max": "Max:",
- "view": "View",
- "edit": "Edit",
- "add": "Add",
- "select-icon": "Select Icon"
+ "view": "Vaata",
+ "edit": "Muuda",
+ "add": "Lisa",
+ "select-icon": "Vali ikoon"
}
\ No newline at end of file
diff --git a/public/language/et/admin/development/info.json b/public/language/et/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/et/admin/development/info.json
+++ b/public/language/et/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/et/admin/extend/widgets.json b/public/language/et/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/et/admin/extend/widgets.json
+++ b/public/language/et/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/et/admin/settings/reputation.json b/public/language/et/admin/settings/reputation.json
index e4fff22620..479069e3a4 100644
--- a/public/language/et/admin/settings/reputation.json
+++ b/public/language/et/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/et/error.json b/public/language/et/error.json
index bed991b6c9..9f4f6a5bec 100644
--- a/public/language/et/error.json
+++ b/public/language/et/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Vabandage, teie tutvustus ei saa olaa pikem kui %1 tähemärk(i).",
"cant-chat-with-yourself": "Sa ei saa endaga vestelda!",
"chat-restricted": "Kasutaja on piiranud sõnumite saatmist. Privaatsõnumi saatmiseks peab kasutaja sind jälgima",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Vestlus süsteem keelatud",
"too-many-messages": "Oled saatnud liiga palju sõnumeid, oota natukene.",
"invalid-chat-message": "Vigane vestluse sõnum",
diff --git a/public/language/et/modules.json b/public/language/et/modules.json
index 539eecc169..d66b6d7bf0 100644
--- a/public/language/et/modules.json
+++ b/public/language/et/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chat with",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/et/notifications.json b/public/language/et/notifications.json
index a4dd123e07..6717703992 100644
--- a/public/language/et/notifications.json
+++ b/public/language/et/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 on postitanud uue teema: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 hakkas sind jälgima.",
"user-started-following-you-dual": "%1 ja %2 hakkasid sind jälgima.",
@@ -75,6 +75,7 @@
"email-confirmed": "Emaili aadress kinnitatud",
"email-confirmed-message": "Täname, et kinnitasite oma emaili aadressi. Teie kasutaja on nüüd täielikult aktiveeritud.",
"email-confirm-error-message": "Emaili aadressi kinnitamisel tekkis viga. Võibolla kinnituskood oli vale või aegunud.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Kinnituskiri on saadetud.",
"none": "None",
"notification-only": "Notification Only",
diff --git a/public/language/et/post-queue.json b/public/language/et/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/et/post-queue.json
+++ b/public/language/et/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/et/themes/harmony.json b/public/language/et/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/et/themes/harmony.json
+++ b/public/language/et/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/et/uploads.json b/public/language/et/uploads.json
index d4f7bbcca4..63f2828fde 100644
--- a/public/language/et/uploads.json
+++ b/public/language/et/uploads.json
@@ -1,7 +1,7 @@
{
"uploading-file": "Laen faili üles...",
"select-file-to-upload": "Vali fail mida üles laadida!",
- "upload-success": "Fail üles laetud edukalt!",
+ "upload-success": "Fail edukalt üles laetud!",
"maximum-file-size": "Maksimaalselt %1 kb",
"no-uploads-found": "No uploads found",
"public-uploads-info": "Uploads are public, all visitors can see them.",
diff --git a/public/language/et/user.json b/public/language/et/user.json
index dc531559d9..1571b708d7 100644
--- a/public/language/et/user.json
+++ b/public/language/et/user.json
@@ -78,6 +78,7 @@
"change-password": "Vaheta parooli",
"change-password-error": "Vigane parool!",
"change-password-error-wrong-current": "Su praegune parool on vale!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Paroolid peavad kattuma!",
"change-password-error-privileges": "Sul ei ole piisavalt õigusi, et vahetada seda parooli.",
"change-password-success": "Sinu parool on uuendatud!",
diff --git a/public/language/et/users.json b/public/language/et/users.json
index 88cc5df4fa..2716eab76e 100644
--- a/public/language/et/users.json
+++ b/public/language/et/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "Hilised kasutajad",
"top-posters": "Top postitajad",
"most-reputation": "Kõige rohkem reputatsiooni",
diff --git a/public/language/fa-IR/admin/admin.json b/public/language/fa-IR/admin/admin.json
index 34435717b6..ebf14c7704 100644
--- a/public/language/fa-IR/admin/admin.json
+++ b/public/language/fa-IR/admin/admin.json
@@ -4,15 +4,15 @@
"acp-title": "%1 | کنترل پنل مدیر کل نودبیبی",
"settings-header-contents": "محتوا",
- "changes-saved": "Changes Saved",
- "changes-saved-message": "Your changes to the NodeBB configuration have been saved.",
+ "changes-saved": "تغییرات ذخیره شد",
+ "changes-saved-message": "تغییرات شما در پیکربندی NodeBB ذخیره شده است.",
"changes-not-saved": "تغییرات ذخیره نشد",
- "changes-not-saved-message": "NodeBB encountered a problem saving your changes. (%1)",
- "save-changes": "Save changes",
- "min": "Min:",
- "max": "Max:",
- "view": "View",
- "edit": "Edit",
- "add": "Add",
- "select-icon": "Select Icon"
+ "changes-not-saved-message": "NodeBB در ذخیره تغییرات شما با مشکل مواجه شد. (% 1)",
+ "save-changes": "ذخیره تغییرات",
+ "min": "کمترین:",
+ "max": "بیشترین:",
+ "view": "نمایش",
+ "edit": "ویرایش",
+ "add": "اضافه",
+ "select-icon": "انتخاب نقشک"
}
\ No newline at end of file
diff --git a/public/language/fa-IR/admin/advanced/cache.json b/public/language/fa-IR/admin/advanced/cache.json
index b0aa10e284..498b0ea71e 100644
--- a/public/language/fa-IR/admin/advanced/cache.json
+++ b/public/language/fa-IR/admin/advanced/cache.json
@@ -1,10 +1,10 @@
{
- "cache": "Cache",
- "post-cache": "کش دیدگاه ",
- "group-cache": "Group Cache",
- "local-cache": "Local Cache",
- "object-cache": "Object Cache",
+ "cache": "نهانگاه",
+ "post-cache": "نهانگاه دیدگاه ",
+ "group-cache": "نهانگاه گروه",
+ "local-cache": "نهانگاه محلی",
+ "object-cache": "شئ نهانگاه",
"percent-full": "%1% تمام شده",
- "post-cache-size": "سایز کش دیدگاه",
- "items-in-cache": "موارد موجود در کش"
+ "post-cache-size": "اندازه نهانگاه فرسته",
+ "items-in-cache": "موارد موجود در نهانگاه"
}
\ No newline at end of file
diff --git a/public/language/fa-IR/admin/advanced/database.json b/public/language/fa-IR/admin/advanced/database.json
index 7d609b872c..da700c60ae 100644
--- a/public/language/fa-IR/admin/advanced/database.json
+++ b/public/language/fa-IR/admin/advanced/database.json
@@ -2,51 +2,51 @@
"x-b": "%1 b",
"x-mb": "%1 mb",
"x-gb": "%1 gb",
- "uptime-seconds": "آپتایم در ثانیه",
- "uptime-days": "آپتایم در روز",
+ "uptime-seconds": "زمان بهکار در ثانیه",
+ "uptime-days": "زمان بهکار در روز",
"mongo": "MongoDB",
- "mongo.version": "ورژن پایگاه داده مونگو دیبی",
- "mongo.storage-engine": "سیستم ذخیره سازی",
+ "mongo.version": "نگارش پایگاه داده MongoDB",
+ "mongo.storage-engine": "سامانه ذخیره سازی",
"mongo.collections": "مجموعه ها",
"mongo.objects": "اشیا ",
- "mongo.avg-object-size": "میانگین سایز اشیا",
- "mongo.data-size": "سایز اطلاعات",
+ "mongo.avg-object-size": "میانگین اندازه اشیا",
+ "mongo.data-size": "انداره اطلاعات",
"mongo.storage-size": "اندازه محل ذخیره سازی",
"mongo.index-size": "اندازه شاخص",
- "mongo.file-size": "اندازه فایل",
+ "mongo.file-size": "اندازه پرونده",
"mongo.resident-memory": "حافظه مقیم",
"mongo.virtual-memory": "حافظۀ مجازی",
- "mongo.mapped-memory": "Mapped Memory",
+ "mongo.mapped-memory": "حافظه نقشه شده",
"mongo.bytes-in": "بایت های ورودی",
"mongo.bytes-out": "بایت های خروجی",
"mongo.num-requests": "تعداد درخواست ها",
- "mongo.raw-info": "اطلاعات پایه پایگاه داده مونگو دی بی",
- "mongo.unauthorized": "NodeBB نتوانست پرس و جوی آماری را از مونگو دی بی دریافت کند لطفا مطمئن شوید کاربر که NodeBB به وسیله آن به مونگو دیبی متصل شده است مجوز clusterMonitor را برای مدیر داشته باشد",
+ "mongo.raw-info": "اطلاعات پایه پایگاه داده MongoDB",
+ "mongo.unauthorized": "NodeBB نتوانست پرس و جوی آماری را ازMongoDB دریافت کند. لطفا مطمئن شوید کاربری که NodeBB به وسیله آن به MongoDB متصل شده است مجوز clusterMonitor را برای مدیر داشته باشد.",
- "redis": "ردیس",
- "redis.version": "ورژن ردیس",
+ "redis": "Redis",
+ "redis.version": "نگارش Redis",
"redis.keys": "کلید ها",
"redis.expires": "انقضا",
"redis.avg-ttl": "میانگین TTL",
- "redis.connected-clients": "کلاینت های متصل شده",
+ "redis.connected-clients": "کارخواه های متصل شده",
"redis.connected-slaves": "Connected Slaves",
- "redis.blocked-clients": "Blocked Clients",
- "redis.used-memory": "Used Memory",
+ "redis.blocked-clients": "کارخواه های مسدود شده",
+ "redis.used-memory": "حافظهی درحال استفاده",
"redis.memory-frag-ratio": "Memory Fragmentation Ratio",
- "redis.total-connections-recieved": "Total Connections Received",
- "redis.total-commands-processed": "Total Commands Processed",
- "redis.iops": "Instantaneous Ops. Per Second",
- "redis.iinput": "Instantaneous Input Per Second",
- "redis.ioutput": "Instantaneous Output Per Second",
- "redis.total-input": "Total Input",
- "redis.total-output": "Total Ouput",
+ "redis.total-connections-recieved": "کل اتصالات دریافت شده",
+ "redis.total-commands-processed": "کل دستورات پردازش شده",
+ "redis.iops": "عملیات در ثانیه",
+ "redis.iinput": "ورودی در ثانیه",
+ "redis.ioutput": "خروجی در ثانیه",
+ "redis.total-input": "کل ورودیها",
+ "redis.total-output": "کل خروجیها",
"redis.keyspace-hits": "Keyspace Hits",
"redis.keyspace-misses": "Keyspace Misses",
- "redis.raw-info": "Redis Raw Info",
+ "redis.raw-info": "اطلاعات خام Redis",
- "postgres": "Postgres",
- "postgres.version": "PostgreSQL Version",
- "postgres.raw-info": "Postgres Raw Info"
+ "postgres": "PostgreSQL",
+ "postgres.version": "نگارش PostgreSQL",
+ "postgres.raw-info": "اطلاعات خام PostgreSQL"
}
diff --git a/public/language/fa-IR/admin/advanced/errors.json b/public/language/fa-IR/admin/advanced/errors.json
index cd1e4793d8..54fa86fa3e 100644
--- a/public/language/fa-IR/admin/advanced/errors.json
+++ b/public/language/fa-IR/admin/advanced/errors.json
@@ -1,15 +1,15 @@
{
- "errors": "Errors",
+ "errors": "خطاها",
"figure-x": "Figure %1",
- "error-events-per-day": "%1 events per day",
- "error.404": "ارور 404 یافت نشد",
- "error.503": "ارور 503 سرویس دردسترس نیست",
- "manage-error-log": "مدیریت Error Log",
- "export-error-log": "Export Error Log (CSV)",
- "clear-error-log": "پاک کردن Error Log",
+ "error-events-per-day": "%1 رویداد ها در روز",
+ "error.404": "خطای 404 یافت نشد",
+ "error.503": "خطای 503 سرویس دردسترس نیست",
+ "manage-error-log": "مدیریت گذارش خطاها",
+ "export-error-log": "خروجی گرفتن از گذارش خطاها با قالب csv",
+ "clear-error-log": "پاک کردن گذارش خطاها",
"route": "مسیر",
"count": "شمارش",
- "no-routes-not-found": "ایول! بدون ارور 404 !",
- "clear404-confirm": "آیا از پاک کردن ارور های 404 اطمینان دارید؟",
- "clear404-success": "ارور های 404 پاک شدند"
+ "no-routes-not-found": "ایول! بدون خطای 404!",
+ "clear404-confirm": "آیا از پاک کردن خطا های 404 اطمینان دارید؟",
+ "clear404-success": "\"خطای های 404\" پاک شدند"
}
\ No newline at end of file
diff --git a/public/language/fa-IR/admin/advanced/events.json b/public/language/fa-IR/admin/advanced/events.json
index f2488c1306..df1381ab28 100644
--- a/public/language/fa-IR/admin/advanced/events.json
+++ b/public/language/fa-IR/admin/advanced/events.json
@@ -2,16 +2,16 @@
"events": "رویداد ها",
"no-events": "رویدادی موجود نیست",
"control-panel": "کنترل پنل رویداد ها",
- "delete-events": "Delete Events",
- "confirm-delete-all-events": "Are you sure you want to delete all logged events?",
- "filters": "Filters",
- "filters-apply": "Apply Filters",
- "filter-type": "Event Type",
- "filter-start": "Start Date",
- "filter-end": "End Date",
- "filter-user": "Filter by User",
- "filter-user.placeholder": "Type user name to filter...",
- "filter-group": "Filter by Group",
- "filter-group.placeholder": "Type group name to filter...",
- "filter-per-page": "Per Page"
+ "delete-events": "حذف رویداد ها",
+ "confirm-delete-all-events": "آیا مطمئن هستید که می خواهید همه رویدادهای ثبت شده را حذف کنید؟",
+ "filters": "پالایه ها",
+ "filters-apply": "اعمال پالایه ها",
+ "filter-type": "نوع رویداد",
+ "filter-start": "زمان شروع",
+ "filter-end": "تاریخ پایان",
+ "filter-user": "پالایه کردن بر اساس کاربر",
+ "filter-user.placeholder": "نام کاربری را برای پالایه کردن کاربر بنویسید...",
+ "filter-group": "پالایه کردن بر اساس گروه",
+ "filter-group.placeholder": "نام گروه را برای پالایه کردن بنویسید...",
+ "filter-per-page": "در صفحه"
}
\ No newline at end of file
diff --git a/public/language/fa-IR/admin/advanced/logs.json b/public/language/fa-IR/admin/advanced/logs.json
index 37846be559..8fe83cc30d 100644
--- a/public/language/fa-IR/admin/advanced/logs.json
+++ b/public/language/fa-IR/admin/advanced/logs.json
@@ -1,6 +1,6 @@
{
"logs": "گزارشات",
- "control-panel": "کنترل پنل گزارشات",
+ "control-panel": "فرمانگاه گزارشات",
"reload": "بارگزاری مجدد گزارش ها",
"clear": "حذف گزارشات",
"clear-success": "گزارش ها پاک شدند"
diff --git a/public/language/fa-IR/admin/appearance/customise.json b/public/language/fa-IR/admin/appearance/customise.json
index 4495400030..344ce38b45 100644
--- a/public/language/fa-IR/admin/appearance/customise.json
+++ b/public/language/fa-IR/admin/appearance/customise.json
@@ -1,20 +1,20 @@
{
- "customise": "Customise",
- "custom-css": "Custom CSS/SASS",
- "custom-css.description": "Enter your own CSS/SASS declarations here, which will be applied after all other styles.",
- "custom-css.enable": "Enable Custom CSS/SASS",
+ "customise": "سفارشیسازی",
+ "custom-css": "CSS/SASS سفارشی",
+ "custom-css.description": "اعلانهای CSS/SASS خود را در اینجا وارد کنید، که بعد از همهی استایلهای دیگر اعمال خواهند شد.",
+ "custom-css.enable": "فعالسازی CSS/SASS سفارشی",
"custom-js": "جائا اسکریپت سفارشی",
- "custom-js.description": "کد های جاوا اسکریپت خود را در این قسمت وارد کنید بعد از لود شدن تمام صفحه اجرا خواهند شد",
- "custom-js.enable": "به کارگیری جاوا اسکریپت سفارشی ",
+ "custom-js.description": "کد های جاوا اسکریپت خود را در این قسمت وارد کنید که بعد از بارگزاری تمام صفحه اجرا خواهند شد.",
+ "custom-js.enable": "بهکارگیری جاوا اسکریپت سفارشی ",
"custom-header": "هدر سفارشی",
- "custom-header.description": "Enter custom HTML here (ex. Meta Tags, etc.), which will be appended to the <head> section of your forum's markup. Script tags are allowed, but are discouraged, as the Custom Javascript tab is available.",
- "custom-header.enable": "Enable Custom Header",
+ "custom-header.description": "HTML سفارشی را در اینجا وارد کنید (مثلاً متا تگ ها و غیره)، که به <head> بخش نشانه گذاری انجمن شما برچسبهای اسکریپت مجاز هستند، اما از آنجایی که برگه جاوا اسکریپت سفارشی در دسترس است، توصیه نمیشود.",
+ "custom-header.enable": "بهکارگیری هدر سفارشی",
- "custom-css.livereload": "Enable Live Reload",
- "custom-css.livereload.description": "Enable this to force all sessions on every device under your account to refresh whenever you click save",
+ "custom-css.livereload": "بهکارگیری بارگزاری مجدد زنده",
+ "custom-css.livereload.description": "این را فعال کنید تا هر زمان که روی ذخیره کلیک میکنید، تمام جلسات در هر دستگاهی که در حساب شما قرار دارد مجبور به بازآوری شوند",
"bsvariables": "_variables.scss",
- "bsvariables.description": "Override bootstrap variables here. You can also use a tool like bootstrap.build and paste the output here.
Changes require a rebuild & restart.",
- "bsvariables.enable": "Enable _variables.scss"
+ "bsvariables.description": "در اینجا متغیرهای راهاندازی را لغو کنید. همچنین می توانید از ابزاری مانند bootstrap.build استفاده کنید و خروجی را در اینجا بچسبانید.
تغییرات نیاز به بازسازی و راه اندازی مجدد دارند.",
+ "bsvariables.enable": "بهکارگیری _variables.scss"
}
\ No newline at end of file
diff --git a/public/language/fa-IR/admin/appearance/skins.json b/public/language/fa-IR/admin/appearance/skins.json
index c98482f27b..a9f7b40def 100644
--- a/public/language/fa-IR/admin/appearance/skins.json
+++ b/public/language/fa-IR/admin/appearance/skins.json
@@ -1,18 +1,18 @@
{
- "skins": "Skins",
+ "skins": "پوستهها",
"bootswatch-skins": "Bootswatch Skins",
- "custom-skins": "Custom Skins",
- "add-skin": "Add Skin",
- "save-custom-skins": "Save Custom Skins",
- "save-custom-skins-success": "Custom skins saved successfully",
- "custom-skin-name": "Custom Skin Name",
- "custom-skin-variables": "Custom Skin Variables",
- "loading": "Loading Skins...",
- "homepage": "Homepage",
- "select-skin": "Select Skin",
- "revert-skin": "Revert Skin",
- "current-skin": "Current Skin",
- "skin-updated": "Skin Updated",
- "applied-success": "%1 skin was succesfully applied",
- "revert-success": "Skin reverted to base colours"
+ "custom-skins": "پوستههای سفارشی",
+ "add-skin": "افزودن پوسته",
+ "save-custom-skins": "ذخیره پوستههای سفارشی",
+ "save-custom-skins-success": "پوستههای سفارشی با موفقیت ذخیره شدند",
+ "custom-skin-name": "نام پوستهی سفارشی",
+ "custom-skin-variables": "متغیرهای سفارشی پوسته",
+ "loading": "بارگزاری پوستهها",
+ "homepage": "صفحه خانه",
+ "select-skin": "انتخاب پوسته",
+ "revert-skin": "بازگردانی پوسته",
+ "current-skin": "پوستهی جاری",
+ "skin-updated": "پوستههای بروزشده",
+ "applied-success": "% 1 پوسته با موفقیت اعمال شد",
+ "revert-success": "پوسته به رنگ های پایه بارگردانی شد"
}
\ No newline at end of file
diff --git a/public/language/fa-IR/admin/appearance/themes.json b/public/language/fa-IR/admin/appearance/themes.json
index a6b65e46f3..4f2db7b657 100644
--- a/public/language/fa-IR/admin/appearance/themes.json
+++ b/public/language/fa-IR/admin/appearance/themes.json
@@ -1,13 +1,13 @@
{
- "themes": "Themes",
- "checking-for-installed": "Checking for installed themes...",
- "homepage": "Homepage",
- "select-theme": "Select Theme",
- "revert-theme": "Revert Theme",
- "current-theme": "Current Theme",
- "no-themes": "No installed themes found",
- "revert-confirm": "Are you sure you wish to restore the default NodeBB theme?",
- "theme-changed": "Theme Changed",
- "revert-success": "You have successfully reverted your NodeBB back to it's default theme.",
- "restart-to-activate": "Please rebuild and restart your NodeBB to fully activate this theme."
+ "themes": "زمینهها",
+ "checking-for-installed": "در حال بررسی ژمینههای نصب شده...",
+ "homepage": "صفحهی خانه",
+ "select-theme": "گزینش زمینه",
+ "revert-theme": "بازگردانی زمینه",
+ "current-theme": "زمینهی جاری",
+ "no-themes": "هیچ زمینهی نصب شده ای یافت نشد",
+ "revert-confirm": "آیا مطمئن هستید که می خواهید زمینهی پیش فرض NodeBB را بازیابی کنید؟",
+ "theme-changed": "زمینه تغییر کرد",
+ "revert-success": "NodeBB خود را با موفقیت به زمینهی پیش فرض آن برگرداندید.",
+ "restart-to-activate": "لطفاً NodeBB خود را دوباره بسازید و مجدداً راه اندازی کنید تا این زمینه به طور کامل فعال شود."
}
\ No newline at end of file
diff --git a/public/language/fa-IR/admin/dashboard.json b/public/language/fa-IR/admin/dashboard.json
index e79db14d13..77ff6d56e8 100644
--- a/public/language/fa-IR/admin/dashboard.json
+++ b/public/language/fa-IR/admin/dashboard.json
@@ -1,43 +1,43 @@
{
- "forum-traffic": "Forum Traffic",
- "page-views": "Page Views",
- "unique-visitors": "Unique Visitors",
- "logins": "Logins",
- "new-users": "New Users",
- "posts": "Posts",
+ "forum-traffic": "شدآمد انجمن",
+ "page-views": "بازدید از صفحه",
+ "unique-visitors": "بازدیدکنندگان منحصر به فرد",
+ "logins": "ورودها",
+ "new-users": "کاربران جدید",
+ "posts": "فرستهها",
"topics": "موضوعها",
- "page-views-seven": "Last 7 Days",
- "page-views-thirty": "Last 30 Days",
- "page-views-last-day": "Last 24 hours",
- "page-views-custom": "Custom Date Range",
- "page-views-custom-start": "Range Start",
- "page-views-custom-end": "Range End",
- "page-views-custom-help": "Enter a date range of page views you would like to view. If no date picker is available, the accepted format is YYYY-MM-DD",
- "page-views-custom-error": "Please enter a valid date range in the format YYYY-MM-DD",
+ "page-views-seven": "هفت روز آخر",
+ "page-views-thirty": "۳۰ روز آخر",
+ "page-views-last-day": "۲۴ ساعت آخر",
+ "page-views-custom": "محدودهی تاریخ سفارشی",
+ "page-views-custom-start": "شروع محدوده",
+ "page-views-custom-end": "پایان محدوده",
+ "page-views-custom-help": "محدوده تاریخی از بازدیدهای صفحه را که می خواهید مشاهده کنید وارد کنید. اگر انتخابگر تاریخ در دسترس نباشد، قالب پذیرفته شده YYYY-MM-DD است",
+ "page-views-custom-error": "لطفاً یک محدوده تاریخی معتبر در قالب YYYY-MM-DD وارد کنید",
- "stats.yesterday": "Yesterday",
- "stats.today": "Today",
- "stats.last-week": "Last Week",
- "stats.this-week": "This Week",
- "stats.last-month": "Last Month",
- "stats.this-month": "This Month",
- "stats.all": "همیشه",
+ "stats.yesterday": "دیروز",
+ "stats.today": "امروز",
+ "stats.last-week": "آخرین هفته",
+ "stats.this-week": "این هفته",
+ "stats.last-month": "آخرین ماه",
+ "stats.this-month": "این ماه",
+ "stats.all": "همهی زمانها",
- "updates": "Updates",
- "running-version": "You are running NodeBB v%1.",
- "keep-updated": "Always make sure that your NodeBB is up to date for the latest security patches and bug fixes.",
- "up-to-date": "You are up-to-date ",
- "upgrade-available": "A new version (v%1) has been released. Consider upgrading your NodeBB.",
- "prerelease-upgrade-available": "This is an outdated pre-release version of NodeBB. A new version (v%1) has been released. Consider upgrading your NodeBB.",
- "prerelease-warning": "This is a pre-release version of NodeBB. Unintended bugs may occur. ",
- "fallback-emailer-not-found": "Fallback emailer not found!",
- "running-in-development": "Forum is running in development mode. The forum may be open to potential vulnerabilities; please contact your system administrator",
- "latest-lookup-failed": "Failed to look up latest available version of NodeBB",
+ "updates": "بروزرسانیها",
+ "running-version": "شما در حال اجراء NodeBB v 1% هستید.",
+ "keep-updated": "برای آخرین وصله های امنیتی و رفع باگ ها همیشه مطمئن شوید که NodeBB شما به روز است.",
+ "up-to-date": "شما بروز هستید",
+ "upgrade-available": "نسخه جدید (v%1) منتشر شده است. ارتقا NodeBB خود را در نظر بگیرید.",
+ "prerelease-upgrade-available": "این یک نسخه پیش از انتشار قدیمی NodeBB است. نسخه جدید (v%1) منتشر شده است. ارتقا NodeBB خود را در نظر بگیرید. ",
+ "prerelease-warning": "این یک نسخه پیش از انتشار NodeBB است. ممکن است اشکالات ناخواسته رخ دهد.",
+ "fallback-emailer-not-found": "ایمیل بازگشتی پیدا نشد!",
+ "running-in-development": "انجمن در حالت توسعه (development mode) در حال اجرا است. انجمن ممکن است برای اسیب پذیری های بالقوه باز باشد؛ لطفا با مدیر سیستم خود تماس بگیرید",
+ "latest-lookup-failed": "جستجو در اخرین نسخه موجود NodeBB شکست خورد",
- "notices": "Notices",
- "restart-not-required": "Restart not required",
- "restart-required": "Restart required",
- "search-plugin-installed": "Search Plugin installed",
+ "notices": "اطلاعیه ها",
+ "restart-not-required": "راه اندازی مجدد لازم نیست",
+ "restart-required": "راهاندازی مجدد لازم است",
+ "search-plugin-installed": "افزونه جستجو نصب شد",
"search-plugin-not-installed": "Search Plugin not installed",
"search-plugin-tooltip": "Install a search plugin from the plugin page in order to activate search functionality",
@@ -74,28 +74,28 @@
"graphs.page-views": "Page Views",
"graphs.page-views-registered": "Page Views Registered",
"graphs.page-views-guest": "Page Views Guest",
- "graphs.page-views-bot": "Page Views Bot",
- "graphs.unique-visitors": "Unique Visitors",
- "graphs.registered-users": "Registered Users",
- "graphs.guest-users": "Guest Users",
- "last-restarted-by": "Last restarted by",
- "no-users-browsing": "No users browsing",
+ "graphs.page-views-bot": "ربات بازدید از صفحه",
+ "graphs.unique-visitors": "بازدیدکنندگان منحصر به فرد",
+ "graphs.registered-users": "کاربران ثبت نام شده",
+ "graphs.guest-users": "کاربران مهمان",
+ "last-restarted-by": "آخرین راهاندازی توسط",
+ "no-users-browsing": "هیچ کاربری در حال مرور نیست",
- "back-to-dashboard": "Back to Dashboard",
- "details.no-users": "No users have joined within the selected timeframe",
- "details.no-topics": "No topics have been posted within the selected timeframe",
- "details.no-searches": "No searches have been made within the selected timeframe",
- "details.no-logins": "No logins have been recorded within the selected timeframe",
- "details.logins-static": "NodeBB only saves session data for %1 days, and so this table below will only show the most recently active sessions",
- "details.logins-login-time": "Login Time",
- "start": "Start",
- "end": "End",
- "filter": "Filter",
- "view-as-json": "View as JSON",
+ "back-to-dashboard": "بازگشت به پیشخوان",
+ "details.no-users": "هیچ کاربر جدیدی در بازه زمانی انتخابی عضو نشده است",
+ "details.no-topics": "هیچ موضوعی در بازه زمانی انتخاب شده ارسال نشده است",
+ "details.no-searches": "هیچ جستجویی در بازه زمانی انتخاب شده انجام نشده است",
+ "details.no-logins": "هیچ ورودی در بازه زمانی انتخاب شده ثبت نشده است",
+ "details.logins-static": "NodeBB فقط دادههای جلسه را برای %1 روز ذخیره میکند، بنابراین این جدول زیر فقط آخرین جلسات فعال را نشان میدهد",
+ "details.logins-login-time": "زمان ورود",
+ "start": "شروع",
+ "end": "پایان",
+ "filter": "فیلتر کردن",
+ "view-as-json": "نمایش با JSON",
"expand-analytics": "Expand analytics",
- "clear-search-history": "Clear Search History",
- "clear-search-history-confirm": "Are you sure you want to clear entire search history?",
- "search-term": "Term",
- "search-count": "Count",
- "view-all": "View all"
+ "clear-search-history": "پاک کردن تاریخچهی جستوجو",
+ "clear-search-history-confirm": "آیا مطمئن هستید که می خواهید کل سابقه جستجو را پاک کنید؟",
+ "search-term": "مدت",
+ "search-count": "تعداد",
+ "view-all": "نمایش همه"
}
diff --git a/public/language/fa-IR/admin/development/info.json b/public/language/fa-IR/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/fa-IR/admin/development/info.json
+++ b/public/language/fa-IR/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/fa-IR/admin/extend/widgets.json b/public/language/fa-IR/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/fa-IR/admin/extend/widgets.json
+++ b/public/language/fa-IR/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/fa-IR/admin/settings/reputation.json b/public/language/fa-IR/admin/settings/reputation.json
index 7e6aabd62d..b0f1df3986 100644
--- a/public/language/fa-IR/admin/settings/reputation.json
+++ b/public/language/fa-IR/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/fa-IR/category.json b/public/language/fa-IR/category.json
index e6d045ecb1..43f9d76a01 100644
--- a/public/language/fa-IR/category.json
+++ b/public/language/fa-IR/category.json
@@ -3,24 +3,24 @@
"subcategories": "زیر دستهبندی",
"new-topic-button": "موضوع تازه",
"guest-login-post": "برای ارسال پست وارد شوید",
- "no-topics": "هیچ پستی در این دستهبندی نیست.
چرا شما یکی نمیفرستید؟",
+ "no-topics": "هیچ فرستهای در این دستهبندی نیست.
چرا شما یکی نمیفرستید؟",
"browsing": "بینندهها",
"no-replies": "هیچ کسی پاسخ نداده است.",
- "no-new-posts": "هیچ پست جدیدی وجود ندارد.",
+ "no-new-posts": "هیچ فرستهی جدیدی وجود ندارد.",
"watch": "پیگیری",
"ignore": "نادیده گرفتن",
"watching": "درحال پیگیری",
- "tracking": "Tracking",
- "not-watching": "درحال پیگیری نیستید",
+ "tracking": "پیگیری کردن",
+ "not-watching": "مشاهده نکردن",
"ignoring": "در حال نادیده گرفتن",
- "watching.description": "Notify me of new topics.
Show topics in unread & recent",
- "tracking.description": "Shows topics in unread & recent",
- "not-watching.description": "موضوع ها را در بخش نخوانده ها نمایش نده و در بخش تازه ها نشان بده",
- "ignoring.description": "Do not show topics in unread & recent",
- "watching.message": "اکنون شما بهروزرسانیهای این دسته و تمام زیر دستههایش را پیگیری میکنید",
- "tracking.message": "You are now tracking updates from this category and all subcategories",
- "notwatching.message": "اکنون شما بهروزرسانیهای این دسته و همهی زیر دستههایش را پیگیری نمی کنید",
- "ignoring.message": "اکنون شما بهروزرسانیهای این دسته و همهی زیر دستههایش را نادیده گرفتهاید",
+ "watching.description": "موضوعات جدید را به من اطلاع بده.
موضوعات خوانده نشده و اخیر را نشان بده",
+ "tracking.description": "موضوعات خوانده نشده و اخیر را نشان می دهد",
+ "not-watching.description": "موضوع ها را در بخش نخوانده ها نمایش نده و در بخش اخیر نشان بده",
+ "ignoring.description": "موضوعات خوانده نشده و اخیر نشان داده نشود",
+ "watching.message": "اکنون شما بهروزرسانیهای این دستهبندی و تمام زیر دستهبندیهایش را مشاهده میکنید",
+ "tracking.message": "اکنون بهروزرسانیهای این دستهبندی و همه زیر دستهبندی هایش را دنبال میکنید",
+ "notwatching.message": "اکنون شما بهروزرسانیهای این دسته بندی و همهی زیر دسته بندیهایش را پیگیری نمی کنید",
+ "ignoring.message": "اکنون شما بهروزرسانیهای این دستهبندی و همهی زیر دستهبندیهایش را نادیده گرفتهاید",
"watched-categories": "دسته بندی های پیگیری شده",
- "x-more-categories": "1% دستههای بیشتر"
+ "x-more-categories": "1% دستهبندیهای بیشتر"
}
\ No newline at end of file
diff --git a/public/language/fa-IR/error.json b/public/language/fa-IR/error.json
index a5f9e4cd17..3034e90088 100644
--- a/public/language/fa-IR/error.json
+++ b/public/language/fa-IR/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "با عرض پوزش محتوای 'درباره ی من' نمی تواند طولانی تر از %1 کاراکتر باشد",
"cant-chat-with-yourself": "شما نمیتوانید با خودتان چت کنید!",
"chat-restricted": "این کاربر پیام های چتی خود را محدود کرده است . آنها بایدشما را دنبال کنند تا اینکه شما بتوانید به آنها پیامی بفرستید",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "سیستم گفتمان غیرفعال شده است",
"too-many-messages": "شما پیامهای خیلی زیادی فرستاده اید، لطفا مدتی صبر نمایید",
"invalid-chat-message": "پیام نامعتبر",
diff --git a/public/language/fa-IR/login.json b/public/language/fa-IR/login.json
index 750e6ac7fd..0398fe9644 100644
--- a/public/language/fa-IR/login.json
+++ b/public/language/fa-IR/login.json
@@ -3,7 +3,7 @@
"username": "نام کاربری",
"remember-me": "مرا به یاد بسپار؟",
"forgot-password": "رمز عبور را فراموش کردهاید؟",
- "alternative-logins": "روشهای ثبت نام جایگزین",
+ "alternative-logins": "روشهای ثبتنام جایگزین",
"failed-login-attempt": "ورود ناموفق",
"login-successful": "شما با موفقیت وارد شدهاید!",
"dont-have-account": "حساب کاربری ندارید؟",
diff --git a/public/language/fa-IR/modules.json b/public/language/fa-IR/modules.json
index 0086b8f2f0..8f1097ea51 100644
--- a/public/language/fa-IR/modules.json
+++ b/public/language/fa-IR/modules.json
@@ -1,8 +1,9 @@
{
- "chat.room-id": "Room %1",
- "chat.chatting-with": "چت با",
- "chat.placeholder": "پیام چت را اینجا بنویس، عکسها را اینجا درگ و دراپ کن، برای ارسال دکمه Enter را بزن",
- "chat.placeholder.mobile": "پیام چت را اینجا بنویس",
+ "chat.room-id": "اتاق %1",
+ "chat.chatting-with": "گفتوگو با",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "چت با %1",
diff --git a/public/language/fa-IR/notifications.json b/public/language/fa-IR/notifications.json
index 012fd6cbd2..0e4c38c39f 100644
--- a/public/language/fa-IR/notifications.json
+++ b/public/language/fa-IR/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 یک موضوع جدید ارسال کرده: %2",
"user-edited-post": "%1 پستی را در %2 ویرایش کرد",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 شروع به دنبال کردن شما کرده",
"user-started-following-you-dual": "%1 و %2 شروع به دنبال کردن شما کرده.",
@@ -75,6 +75,7 @@
"email-confirmed": "ایمیل تایید شد",
"email-confirmed-message": "بابت تایید ایمیلتان سپاسگزاریم. حساب کاربری شما اکنون به صورت کامل فعال شده است.",
"email-confirm-error-message": "خطایی در تایید آدرس ایمیل شما پیش آمده است. ممکن است کد نامعتبر و یا منقضی شده باشد.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "ایمیل تایید ارسال شد.",
"none": "هیچکدام",
"notification-only": "فقط اعلان",
diff --git a/public/language/fa-IR/post-queue.json b/public/language/fa-IR/post-queue.json
index b8c434f0ce..3ce2cdd30c 100644
--- a/public/language/fa-IR/post-queue.json
+++ b/public/language/fa-IR/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/fa-IR/recent.json b/public/language/fa-IR/recent.json
index dcf34eb8bd..ffc08fcaf5 100644
--- a/public/language/fa-IR/recent.json
+++ b/public/language/fa-IR/recent.json
@@ -7,5 +7,5 @@
"alltime": "همه زمانها",
"no-recent-topics": "هیچ موضوع تازهای نیست.",
"no-popular-topics": "هیچ موضوع پربازدیدی وجود ندارد",
- "load-new-posts": "بارگذاری پستهای جدید"
+ "load-new-posts": "بارگذاری فرستههای جدید"
}
\ No newline at end of file
diff --git a/public/language/fa-IR/themes/harmony.json b/public/language/fa-IR/themes/harmony.json
index 25f58407d6..4f0b0e7e95 100644
--- a/public/language/fa-IR/themes/harmony.json
+++ b/public/language/fa-IR/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "برای جستجو وارد شوید و یا ثبت نام کنید ",
"settings.title": "تنظیمات تم ",
"settings.enableQuickReply": "پاسخ سریع را فعال کنید",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "وسط چین کردن عناصر هدر ",
"settings.mobileTopicTeasers": "نمایش تیزرهای تاپیک در گوشی",
"settings.stickyToolbar": "نوار ابزار چسبیده ",
diff --git a/public/language/fa-IR/unread.json b/public/language/fa-IR/unread.json
index c457a7eb61..4c2c56e4f2 100644
--- a/public/language/fa-IR/unread.json
+++ b/public/language/fa-IR/unread.json
@@ -1,16 +1,16 @@
{
"title": "نخواندهها",
- "no-unread-topics": "جستار خوانده نشدهای وجود ندارد.",
+ "no-unread-topics": "موضوعات خوانده نشدهای وجود ندارد.",
"load-more": "بارگذاری بیشتر",
- "mark-as-read": "خوانده شده بگیر",
- "mark-as-unread": "Mark as Unread",
- "selected": "برگزیده",
+ "mark-as-read": "علامت زدن به عنوان خوانده شده",
+ "mark-as-unread": "علامت زدن به عنوان نخوانده شده",
+ "selected": "انتخاب شده",
"all": "همه",
- "all-categories": "تمام دسته ها",
+ "all-categories": "تمام دستهبندیها",
"topics-marked-as-read.success": "همه موضوع ها خوانده شدند",
"all-topics": "همه موضوع ها",
"new-topics": "موضوع های جدید",
- "watched-topics": "موضوع های پیگیری شده",
+ "watched-topics": "موضوع های تماشا شده",
"unreplied-topics": "موضوع های بدون پاسخ",
"multiple-categories-selected": "انتخاب چندگانه"
}
\ No newline at end of file
diff --git a/public/language/fa-IR/uploads.json b/public/language/fa-IR/uploads.json
index 9b22c754b9..b17922ff80 100644
--- a/public/language/fa-IR/uploads.json
+++ b/public/language/fa-IR/uploads.json
@@ -3,7 +3,7 @@
"select-file-to-upload": "فایل مورد نظر را برای بارگذاری انتخاب کنید!",
"upload-success": "فایل با موفقیت بارگذاری شد!",
"maximum-file-size": "حداکثر %1 کیلوبایت",
- "no-uploads-found": "No uploads found",
- "public-uploads-info": "آپلود ها عمومی هستند، همه کاربران می توانند آن ها را ببینند.",
- "private-uploads-info": "Uploads are private, only logged in users can see them."
+ "no-uploads-found": "هیچ بارگزاری یافت نشد",
+ "public-uploads-info": "بارگزاریها عمومی هستند، همه کاربران می توانند آن ها را ببینند.",
+ "private-uploads-info": "براگزاریها خصوصی هستند، فقط کاربرانی که وارد شده اند می توانند آنها را ببینند."
}
\ No newline at end of file
diff --git a/public/language/fa-IR/user.json b/public/language/fa-IR/user.json
index a55866ce70..df67523fab 100644
--- a/public/language/fa-IR/user.json
+++ b/public/language/fa-IR/user.json
@@ -1,45 +1,45 @@
{
- "user-menu": "User menu",
+ "user-menu": "فهرست کاربری",
"banned": "اخراج شده",
- "unbanned": "Unbanned",
- "muted": "Muted",
- "unmuted": "Unmuted",
+ "unbanned": "رفع مسدود شده",
+ "muted": "ساکت شده",
+ "unmuted": "باصدا شده",
"offline": "آفلاین",
"deleted": "حذف شده",
"username": "نام کاربری",
"joindate": "تاریخ عضویت",
"postcount": "تعداد پستها",
"email": "رایانامه",
- "confirm-email": "تأیید ایمیل",
- "account-info": "اطلاعات شناسه کاربری",
+ "confirm-email": "تأیید رایانامه",
+ "account-info": "اطلاعات حساب کاربری",
"admin-actions-label": "اقدامات مدیریتی",
- "ban-account": "اخراج کاربر",
+ "ban-account": "مسدود کردن کاربر",
"ban-account-confirm": "از مسدود کردن این کاربر اطمینان دارید؟",
"unban-account": "آزاد کردن حساب کاربری",
- "mute-account": "Mute Account",
- "unmute-account": "Unmute Account",
- "delete-account": "حذف حساب کاربری",
- "delete-account-as-admin": "Delete Account",
- "delete-content": "Delete Account Content",
- "delete-all": "Delete Account and Content",
- "delete-account-confirm": "Are you sure you want to anonymize your posts and delete your account?
This action is irreversible and you will not be able to recover any of your data
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?
This action is irreversible, posts will be anonymized, and you will not be able to restore post associations with the deleted account
",
- "delete-account-content-confirm": "Are you sure you want to delete this account's content (posts/topics/uploads)?
This action is irreversible and you will not be able to recover any data
",
- "delete-all-confirm": "Are you sure you want to delete this account and all of its content (posts/topics/uploads)?
This action is irreversible and you will not be able to recover any data
",
- "account-deleted": "حساب کاربری پاک شد",
- "account-content-deleted": "Account content deleted",
+ "mute-account": "ساکت کردن حساب کاربری",
+ "unmute-account": "باصدا کردن حساب کاربری",
+ "delete-account": "حذف کردن حساب کاربری",
+ "delete-account-as-admin": "حذف حساب کاربری",
+ "delete-content": "حذف محتویات (فرستهها/موضوعات/بارگزاریها) حساب کاربری",
+ "delete-all": "حذف حساب کاربری و محتویات آن (فرستهها/موضوعات/بارگزاریها)",
+ "delete-account-confirm": "آیا مطمئن هستید که می خواهید فرسته های خود را ناشناس کنید و حساب خود را حذف کنید؟
این عمل غیر قابل برگشت است و نمی توانید هیچ یک از داده های خود را بازیابی کنید.
رمز عبور خود را وارد کنید تا تأیید کنید که می خواهید این حساب را از بین ببرید.",
+ "delete-this-account-confirm": "آیا مطمئن هستید که میخواهید این حساب را در حالی که محتویات آن را پشت سر گذاشتهاید حذف کنید؟
این عمل غیرقابل برگشت است، پستها ناشناس میشوند و نمیتوانید ارتباط فرستهها را با حساب حذف شده بازیابی کنید.
",
+ "delete-account-content-confirm": "آیا مطمئن هستید که می خواهید محتوای این حساب (فرستهها/موضوعات/بارگزاریها) را حذف کنید؟
این عمل غیر قابل برگشت است و شما نمی توانید هیچ داده ای را بازیابی کنید
",
+ "delete-all-confirm": "آیا مطمئنید که میخواهید این حساب و تمام محتوای آن (فرستهها/موضوعات/براگزاریها) را حذف کنید؟
این عمل غیر قابل برگشت است و شما نمی توانید هیچ داده ای را بازیابی کنید
",
+ "account-deleted": "حساب کاربریِ پاک شده",
+ "account-content-deleted": "محتویات حساب کاربری پاک شده",
"fullname": "نام و نام خانوادگی",
"website": "تارنما",
"location": "محل سکونت",
"age": "سن",
"joined": "عضو شده",
"lastonline": "آخرین حضور",
- "profile": "پروفایل",
- "profile-views": "بازدیدهای نمایه",
+ "profile": "نمایه",
+ "profile-views": "دفعات بازدید از نمایه",
"reputation": "اعتبار",
"bookmarks": "نشانکها",
"watched-categories": "دسته بندی های پیگیری شده",
- "watched-tags": "Watched tags",
+ "watched-tags": "برچسب های پیگیری شده",
"change-all": "تغییر همه",
"watched": "موضوع های پیگیری شده",
"ignored": "نادیده گرفته شده",
@@ -51,37 +51,38 @@
"block-toggle": "مسدود کردن",
"block-user": "مسدود کردن کاربر",
"unblock-user": "رفع مسدودی کاربر",
- "aboutme": "درباره ی من",
+ "aboutme": "دربارهی من",
"signature": "امضا",
"birthday": "روز تولد",
"chat": "چت",
- "chat-with": "ادامه چت با %1",
- "new-chat-with": "شروع چت جدید با %1",
- "flag-profile": "گزارش پروفایل",
- "follow": "دنبال کن",
- "unfollow": "دنبال نکن",
+ "chat-with": "ادامه گفتوگو با %1",
+ "new-chat-with": "شروع گفتوگوی جدید با %1",
+ "flag-profile": "پرچم کردن نمایه",
+ "follow": "دنبال کردن",
+ "unfollow": "دنبال نکردن",
"more": "بیشتر",
- "profile-update-success": "پروفایل باموفقیت به روز شده است!",
+ "profile-update-success": "نمایه با موفقیت به روز شده است!",
"change-picture": "تغییر تصویر",
"change-username": "تغییر نام کاربری",
- "change-email": "تغییر ایمیل",
- "email-updated": "Email Updated",
- "email-same-as-password": "Please enter your current password to continue – you've entered your new email again",
+ "change-email": "تغیر نشانی رایانامه",
+ "email-updated": "رایانامه بروز شده",
+ "email-same-as-password": "لطفا رمز عبور فعلی خود را برای ادامه وارد کنید – شما دوباره نشانی رایانامه جدید خود را وارد کرده اید",
"edit": "ویرایش",
- "edit-profile": "ویرایش پروفایل",
- "default-picture": "آیکون پیش فرض",
+ "edit-profile": "ویرایش نمایه",
+ "default-picture": "نقشک پیش فرض",
"uploaded-picture": "تصویر بارشده",
"upload-new-picture": "بارگذاری تصویر تازه",
"upload-new-picture-from-url": "بارگذاری تصویر جدید از نشانی وب",
- "current-password": "کلمه عبور کنونی",
- "new-password": "New Password",
- "change-password": "تغیر کلمه عبور",
- "change-password-error": "کلمه عبور نامعتبر!",
- "change-password-error-wrong-current": "این کلمه عبورٔ شما نادرست است.",
- "change-password-error-match": "کلمه عبورها باید یکسان باشند.",
- "change-password-error-privileges": "شما اجازه تغییر این کلمه عبور را ندارید.",
- "change-password-success": "کلمه عبورتان تازه شد.",
- "confirm-password": "تکرار کلمه عبور",
+ "current-password": "گذرواژه کنونی",
+ "new-password": "گذرواژه جدید",
+ "change-password": "تغییر گذرواژه",
+ "change-password-error": "گذرواژه اشتباه است!",
+ "change-password-error-wrong-current": "گذرواژه شما نادرست است.",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
+ "change-password-error-match": "گذارواژه ها باید یکسان باشند.",
+ "change-password-error-privileges": "شما اجازه تغییر این گذرواژه را ندارید.",
+ "change-password-success": "گذرواژهتان بروز شد.",
+ "confirm-password": "تکرار گذرواژه",
"password": "گذرواژه",
"username-taken-workaround": "نام کاربری که درخواست کردید قبلاً گرفته شده است، بنابراین ما آن را تغییر داده ایم. شما هماکنون با نام %1 شناخته میشوید.",
"password-same-as-username": "کلمه ی عبور شما با نام کاربری شما یکسان می باشند ، لطفا کلمه ی عبور دیگری را انتخاب کنید",
@@ -94,9 +95,9 @@
"remove-cover-picture-confirm": "آیا شما مطمئنید که می خواهید عکس کاور را حذف کنید؟",
"crop-picture": "برش عکس",
"upload-cropped-picture": "برش و بارگذاری",
- "avatar-background-colour": "Avatar background colour",
+ "avatar-background-colour": "رنگ پس زمینه چهرک",
"settings": "تنظیمات",
- "show-email": "نمایش ایمیلهای من",
+ "show-email": "نمایش نشانی رایانامه من",
"show-fullname": "نمایش نام کامل من (نام و نام خانوادگی)",
"restrict-chats": "فقط از کاربرانی که دنبال می کنم پیام خصوصی دریافت کنم",
"digest-label": "مشترک شدن در چکیده",
@@ -104,32 +105,32 @@
"digest-off": "خاموش",
"digest-daily": "روزانه",
"digest-weekly": "هفتگی",
- "digest-biweekly": "Bi-Weekly",
+ "digest-biweekly": "دو هفتهای",
"digest-monthly": "ماهانه",
"has-no-follower": "این کاربر هیچ دنبالکنندهای ندارد :(",
"follows-no-one": "این کاربر هیچ کسی را دنبال نمیکند :(",
"has-no-posts": "این کاربر تا به حال هیچ چیزی ارسال نکرده است.",
- "has-no-best-posts": "This user does not have any upvoted posts yet.",
- "has-no-topics": "این کاربر تا به حال هیچ موضوعی ارسال نکرده است",
- "has-no-watched-topics": "این کاربر تا به حال هیچ موضوعی را پیگیری نکرده است",
- "has-no-ignored-topics": "این کاربر هیچ موضوعی را نادیده نگرفته است",
- "has-no-upvoted-posts": "این کاربر به هیچ پستی امتیاز نداده است.",
- "has-no-downvoted-posts": "این کاربر به هیچ پستی رای منفی نداده است.",
- "has-no-controversial-posts": "This user does not have any downvoted posts yet.",
+ "has-no-best-posts": "این کاربر هنوز هیچ فرستهای با رای مثبت ندارد.",
+ "has-no-topics": "این کاربر تا به حال هیچ موضوعی ارسال نکرده است.",
+ "has-no-watched-topics": "این کاربر تا به حال هیچ موضوعی را پیگیری نکرده است.",
+ "has-no-ignored-topics": "این کاربر هیچ موضوعی را نادیده نگرفته است.",
+ "has-no-upvoted-posts": "این کاربر به هیچ فرسته رای مثبت نداده است.",
+ "has-no-downvoted-posts": "این کاربر به هیچ فرستهای رای منفی نداده است.",
+ "has-no-controversial-posts": "این کاربر هنوز هیچ فرستهای با رای منفی ندارد.",
"has-no-blocks": "شما هیچ کاربر مسدود شده ای ندارید.",
- "email-hidden": "ایمیل پنهان شده",
- "hidden": "پنهان",
+ "email-hidden": "نشانی رایانامه پنهان شده",
+ "hidden": "پنهان شده",
"paginate-description": "صفحه بندی و نمایش موضوع ها و پستها به جای نمایش بر اساس اسکرول موس",
"topics-per-page": "شمار موضوع ها در هر برگه",
"posts-per-page": "شمار پستها در هر برگه",
"category-topic-sort": "مرتب سازی دسته موضوع",
- "topic-post-sort": "مرتب سازی پستهای تاپیک",
+ "topic-post-sort": "مرتب سازی فرستههای موضوع",
"max-items-per-page": "حداکثر %1",
- "acp-language": "زبان پنل ادمین",
- "notifications": "آگاهسازیها",
+ "acp-language": "زبان صفحه مدیریت",
+ "notifications": "اعلان ها",
"upvote-notif-freq": "تنظیمات اعلان امتیاز مثبت",
"upvote-notif-freq.all": "همه امتیاز های مثبت",
- "upvote-notif-freq.first": "First Per Post",
+ "upvote-notif-freq.first": "اول در هر فرسته",
"upvote-notif-freq.everyTen": "هر ده امتیاز مثبت",
"upvote-notif-freq.threshold": "On 1, 5, 10, 25, 50, 100, 150, 200...",
"upvote-notif-freq.logarithmic": "هر 10، 10، 1000 ...",
@@ -138,85 +139,85 @@
"open-links-in-new-tab": "پیوندهای به بیرون را در برگ جدید باز کن",
"enable-topic-searching": "فعال کردن جستجوی درون موضوعی",
"topic-search-help": "اگر فعال باشد، \"جستجوی درون موضوعی\" جایگزین قابلیت جستجوی پیشفرض مرورگر خواهد شد و این امکان را خواهید داشت که بجای جستجوی آنچه که در صفحه نمایش می بینید، در سرتاسر موضوع جستجو کنید",
- "update-url-with-post-index": "بروزرسانی آدرس پست در مرورگر هنگام گشت و گذار در موضوعات",
- "scroll-to-my-post": "پس از ارسال پست، اولین پست جدید نشان بده",
+ "update-url-with-post-index": "بروزرسانی نشانی فرسته در مرورگر هنگام گشت و گذار در موضوعات",
+ "scroll-to-my-post": "پس از ارسال فرسته، اولین فرستهی جدید را نشان بده",
"follow-topics-you-reply-to": "پیگیری موضوع هایی که شما به آن ها پاسخ دادید",
"follow-topics-you-create": "پیگیری موضوع هایی که شما ایجاد کردید",
"grouptitle": "عنوان گروه",
"group-order-help": "گروهی را انتخاب کرده و با استفاده از پیکان ها ترتیب عنوان ها را جابهجا کنید",
- "show-group-title": "Show group title",
- "hide-group-title": "Hide group title",
+ "show-group-title": "نمایش عنوان گروه",
+ "hide-group-title": "پنهان کردن عنوان گروه",
"order-group-up": "Order group up",
"order-group-down": "Order group down",
- "no-group-title": "عنوان گروهی نیست",
+ "no-group-title": "گروه عنوانی ندارد",
"select-skin": "انتخاب یک پوسته",
"default": "Default (%1)",
- "no-skin": "No Skin",
+ "no-skin": "بدون پوسته",
"select-homepage": "انتخاب صفحه اصلی",
"homepage": "صفحه اصلی",
- "homepage-description": "یک صفحه را به عنوان خانه انتخاب کنید یا با انتخاب \"هیچکدام\" صفحهی پیش فرض برای شما انتخاب میشود.",
- "custom-route": "مسیر صفحهی اختصاصی",
+ "homepage-description": "یک صفحه را به عنوان صفحه اصلی انتخاب کنید یا با انتخاب \"هیچکدام\" صفحهی پیش فرض برای شما انتخاب میشود.",
+ "custom-route": "صفحهی اصلی انتخابی",
"custom-route-help": "Enter a route name here, without any preceding slash (e.g. \"recent\" or \"category/2/general-discussion\")",
- "sso.title": "Single Sign-on Services",
+ "sso.title": "خدمات ثبت نام تکی",
"sso.associated": "متصل شده به",
"sso.not-associated": "اتصال حساب به",
"sso.dissociate": "لغو اتصال",
- "sso.dissociate-confirm-title": "Confirm Dissociation",
+ "sso.dissociate-confirm-title": "جداسازی را تایید کنید",
"sso.dissociate-confirm": "آیا مطمئنی می خواهی اتصال %1 به حسابت را لغو کنی؟",
"info.latest-flags": "آخرین نشانه گذاریها",
- "info.profile": "Profile",
- "info.post": "Post",
- "info.view-flag": "View flag",
- "info.reported-by": "Reported by:",
+ "info.profile": "نمایه",
+ "info.post": "فرسته",
+ "info.view-flag": "مشاهده پرچم ها",
+ "info.reported-by": "گذارش شده توسط:",
"info.no-flags": "پست گزارش شده ای یافت نشد",
"info.ban-history": "تاریخچه مسدودیت های اخیر",
"info.no-ban-history": "این کاربر هرگز مسدود نشده است",
"info.banned-until": "مسدود شده تا %1",
- "info.banned-expiry": "Expiry",
- "info.ban-expired": "Ban expired",
+ "info.banned-expiry": "انقضا",
+ "info.ban-expired": "مسدودیت منقضی شد",
"info.banned-permanently": "مسدود شده به طور دائم",
"info.banned-reason-label": "دلیل",
- "info.banned-no-reason": "هیچ دلیلی ارایه نشد.",
- "info.mute-history": "Recent Mute History",
- "info.no-mute-history": "This user has never been muted",
- "info.muted-until": "Muted until %1",
- "info.muted-expiry": "Expiry",
- "info.muted-no-reason": "No reason given.",
+ "info.banned-no-reason": "هیچ دلیلی ارایه نشده است.",
+ "info.mute-history": "تاریخه سکوت های اخیر",
+ "info.no-mute-history": "این کاربر تا حالا بیصدا نشده است.",
+ "info.muted-until": "ساکت شده تا ۱٪",
+ "info.muted-expiry": "انقضا",
+ "info.muted-no-reason": "دلیلی ارائه نشده است.",
"info.username-history": "تاریخچه تعویض نام کاربری",
- "info.email-history": "تاریخچه تعویض ایمیل",
+ "info.email-history": "تاریخچه تعویض رایانامه",
"info.moderation-note": "یادداشت مدیر",
"info.moderation-note.success": "یادداشت مدیر ذخیره شد",
"info.moderation-note.add": "افزودن یادداشت",
- "sessions.description": "این صفحه به شما امکان می دهد تا همه Session های فعال حساب خود در انجمن را ببینید و در صورت نیاز آن ها را باطل کنید. شما می توانید Session فعلی خود را با خروج از حساب خود باطل کنید.",
- "revoke-session": "Revoke Session",
+ "sessions.description": "این صفحه به شما امکان می دهد تا همه نشست های فعال حساب خود در انجمن را ببینید و در صورت نیاز آن ها را باطل کنید. شما می توانید نشست فعلی خود را با خروج از حساب خود باطل کنید.",
+ "revoke-session": "لغو نشست",
"browser-version-on-platform": "%1 %2 on %3",
"consent.title": "Your Rights & Consent",
"consent.lead": "این انجمن اطلاعات شخصی شما را جمعآوری و پردازش میکند",
- "consent.intro": "We use this information strictly to personalise your experience in this community, as well as to associate the posts you make to your user account. During the registration step you were asked to provide a username and email address, you can also optionally provide additional information to complete your user profile on this website.
We retain this information for the life of your user account, and you are able to withdraw consent at any time by deleting your account. At any time you may request a copy of your contribution to this website, via your Rights & Consent page.
If you have any questions or concerns, we encourage you to reach out to this forum's administrative team.",
- "consent.email-intro": "Occasionally, we may send emails to your registered email address in order to provide updates and/or to notify you of new activity that is pertinent to you. You can customise the frequency of the community digest (including disabling it outright), as well as select which types of notifications to receive via email, via your user settings page.",
- "consent.digest-frequency": "Unless explicitly changed in your user settings, this community delivers email digests every %1.",
- "consent.digest-off": "Unless explicitly changed in your user settings, this community does not send out email digests",
- "consent.received": "You have provided consent for this website to collect and process your information. No additional action is required.",
- "consent.not-received": "You have not provided consent for data collection and processing. At any time this website's administration may elect to delete your account in order to become compliant with the General Data Protection Regulation.",
- "consent.give": "Give consent",
- "consent.right-of-access": "You have the Right of Access",
- "consent.right-of-access-description": "You have the right to access any data collected by this website upon request. You can retrieve a copy of this data by clicking the appropriate button below.",
- "consent.right-to-rectification": "You have the Right to Rectification",
- "consent.right-to-rectification-description": "You have the right to change or update any inaccurate data provided to us. Your profile can be updated by editing your profile, and post content can always be edited. If this is not the case, please contact this site's administrative team.",
- "consent.right-to-erasure": "You have the Right to Erasure",
- "consent.right-to-erasure-description": "At any time, you are able to revoke your consent to data collection and/or processing by deleting your account. Your individual profile can be deleted, although your posted content will remain. If you wish to delete both your account and your content, please contact the administrative team for this website.",
- "consent.right-to-data-portability": "You have the Right to Data Portability",
- "consent.right-to-data-portability-description": "You may request from us a machine-readable export of any collected data about you and your account. You can do so by clicking the appropriate button below.",
- "consent.export-profile": "Export Profile (.json)",
- "consent.export-profile-success": "Exporting profile, you will get a notification when it is complete.",
- "consent.export-uploads": "Export Uploaded Content (.zip)",
- "consent.export-uploads-success": "Exporting uploads, you will get a notification when it is complete.",
- "consent.export-posts": "Export Posts (.csv)",
- "consent.export-posts-success": "Exporting posts, you will get a notification when it is complete.",
- "emailUpdate.intro": "Please enter your email address below. This forum uses your email address for scheduled digest and notifications, as well as for account recovery in the event of a lost password.",
- "emailUpdate.optional": "This field is optional. You are not obligated to provide your email address, but without a validated email you will not be able to recover your account or login with your email.",
- "emailUpdate.required": "This field is required.",
- "emailUpdate.change-instructions": "A confirmation email will be sent to the entered email address with a unique link. Accessing that link will confirm your ownership of the email address and it will become active on your account. At any time, you are able to update your email on file from within your account page.",
- "emailUpdate.password-challenge": "Please enter your password in order to verify account ownership.",
- "emailUpdate.pending": "Your email address has not yet been confirmed, but an email has been sent out requesting confirmation. If you wish to invalidate that request and send a new confirmation request, please fill in the form below."
+ "consent.intro": "ما از این اطلاعات صرفاً برای بهبود تجربه شما در این انجمن و همچنین برای مرتبط کردن فرسته هایی که به حساب کاربری خود میفرستید استفاده می کنیم. در مرحله ثبت نام از شما خواسته شد که نام کاربری و نشانی رایانامهتان را وارد کنید، همچنین می توانید به صورت اختیاری اطلاعات بیشتری برای تکمیل نمایه کاربری خود در این انجمن ارائه دهید.
ما این اطلاعات را تا پایان عمر حساب کاربری شما حفظ می کنیم و شما می توانید رضایت خود را در هر زمان با حذف حساب خود، پس بگیرید.
اگر هرگونه سوال یا مشکلی دارید ما به شما پیشنهاد میکنیم که آن را از مدیریت این انجمن بپرسید.",
+ "consent.email-intro": "گاهی اوقات، ممکن است به منظور ارائه بهروزرسانیها و/یا اطلاعرسانی از فعالیتهای جدید مربوط به شما، ایمیلهایی به نشانی رایانامه ثبتشده شما ارسال شود. میتوانید تعداد دفعات خلاصه انجمن را سفارشی کنید (از جمله غیرفعال کردن کامل آن)، و همچنین میتوانید انتخاب کنید که چه نوع اعلانهایی را از طریق رایانامهتان دریافت کنید.",
+ "consent.digest-frequency": "تنها در زمانی که در تنظیمات کاربر شما تغییر کند، این انجمن خلاصههای ایمیل را به صورت %1 ارائه میکند.",
+ "consent.digest-off": "این انجمن خلاصههای ایمیل را ارسال نمیکند، مگر اینکه به صراحت در تنظیمات کاربر شما این ویژگی فعال شود.",
+ "consent.received": "شما رضایتتان را برای اینکه این انجمن حق جمع آوری و پردازش اطلاعات شما را دارد، اعلام کردهاید. هیچ اقدام اضافی مورد نیاز نیست.",
+ "consent.not-received": "شما رضایتتان را برای جمع آوری و پردازش داده ها اعلام نکردهاید. در هر زمانی مدیر این انجمن ممکن است تصمیم بگیرد که حساب شما را به منظور مطابقت با مقررات حفاظت از داده های عمومی حذف کند.",
+ "consent.give": "اعلام داشتن رضایت",
+ "consent.right-of-access": "شما حق دسترسی را دارید.",
+ "consent.right-of-access-description": "شما حق دسترسی به اطلاعات جمع آوری شده توسط این انجمن را در صورت درخواست دارید. شما می توانید یک رونوشت از این داده ها را با کلیک کردن روی دکمه مناسب زیر داشته باشید.",
+ "consent.right-to-rectification": "شما حق تصحیح دارید",
+ "consent.right-to-rectification-description": "شما حق دارید هرگونه داده نادرست ارائه شده به ما را تغییر دهید یا به روز کنید. اطلاعات نمایه را می توان با بخش \"ویرایش نمایه\" تغیر داد و فرسته ها همیشه قابل ویرایشند. اگر اینطور نیست، لطفاً با تیم مدیریت این انجمن تماس بگیرید.",
+ "consent.right-to-erasure": "شما حق پاک کردن را دارید",
+ "consent.right-to-erasure-description": "در هر زمان، میتوانید با حذف حساب خود، رضایت خود را برای جمعآوری و/یا پردازش دادهها لغو کنید. نمایه فردی شما قابل حذف است، اگرچه محتوای حساب شما (فرستهها/موضوعات/بارگزاریها) باقی خواهد ماند. اگر می خواهید هم حساب کاربری و هم محتوای حساب خود را حذف کنید، لطفاً با تیم مدیریت این انجمن تماس بگیرید.",
+ "consent.right-to-data-portability": "شما حق انتقال داده ها را دارید",
+ "consent.right-to-data-portability-description": "میتوانید از ما درخواست کنید که اطلاعات جمعآوریشده درباره شما و حسابتان را با قابلیت خواندن ماشین خروجی بگیریم. شما می توانید این کار را با کلیک بر روی دکمه مربوطه در زیر انجام دهید.",
+ "consent.export-profile": "خروجی گرفتن از اطلاعات نمایه با قالب json",
+ "consent.export-profile-success": "در حال خروجی گرفتن اطلاعات نمایه، پس از تکمیل آن یک اعلان دریافت خواهید کرد.",
+ "consent.export-uploads": "خروجی گرفتن از پرونده های بارگزاری شده با قالب zip",
+ "consent.export-uploads-success": "در حال خروجی گرفتن بارگزاریها، پس از تکمیل آن یک اعلان دریافت خواهید کرد.",
+ "consent.export-posts": "خروجی گرفتن از فرستهها با قالب csv",
+ "consent.export-posts-success": "در حال خروجی گرفتن فرستهها، پس از تکمیل آن یک اعلان دریافت خواهید کرد.",
+ "emailUpdate.intro": "لطفا نشانی رایانامه خود را در زیر وارد کنید. این انجمن از رایانامه شما برای اعلان ها و همچنین برای بازیابی حساب در صورت گم شدن رمز عبور استفاده می کند.",
+ "emailUpdate.optional": "این بخش اختیاری است. شما موظف به ارائه نشانی رایانامه خود نیستید، اما بدون رایانامه معتبر نمی توانید حساب خود را بازیابی کنید یا با نشانی رایانامه خود وارد شوید.",
+ "emailUpdate.required": "پر کردن این بخش الزامی است.",
+ "emailUpdate.change-instructions": "یک ایمیل تایید با یک پیوند منحصر به فرد به نشانی رایانامه وارد شده ارسال می شود. دسترسی به آن پیوند مالکیت شما را بر نشانی رایانامهتان تایید می کند و نشانی رایانامه جدید شما در حساب شما فعال می شود. در هر زمان، میتوانید نشانی رایانامهتان را از صفحه \"ویرایش نمایه\" عوض کنید.",
+ "emailUpdate.password-challenge": "لطفاً رمز عبور خود را برای تأیید مالکیت حساب وارد کنید.",
+ "emailUpdate.pending": "نشانی رایانامه شما هنوز تایید نشده است، اما ایمیلی برای درخواست تایید ارسال شده است. اگر می خواهید آن درخواست را باطل کنید و یک درخواست تأیید دیگر دریافت کنید، لطفاً بخش زیر را پر کنید."
}
\ No newline at end of file
diff --git a/public/language/fa-IR/users.json b/public/language/fa-IR/users.json
index 650db59e09..d5a6d23186 100644
--- a/public/language/fa-IR/users.json
+++ b/public/language/fa-IR/users.json
@@ -1,12 +1,13 @@
{
"all-users": "همه کاربران",
+ "followed-users": "Followed Users",
"latest-users": "آخرین کاربران",
"top-posters": "برترین فرستندهها",
"most-reputation": "بیشترین اعتبار",
"most-flags": "بیشترین پرچمها",
"search": "جستجو",
"enter-username": "یک نام کاربری برای جستجو وارد کنید",
- "search-user-for-chat": "Search for a user to start chat",
+ "search-user-for-chat": "جستوجو یک کاربر برای شروع گفتوگو",
"load-more": "بارگذاری بیشتر",
"users-found-search-took": "%1 کاربر(ها) یافت شد! جستجو %2 ثانیه زمان گرفت.",
"filter-by": "فیلتر با",
diff --git a/public/language/fi/admin/development/info.json b/public/language/fi/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/fi/admin/development/info.json
+++ b/public/language/fi/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/fi/admin/extend/widgets.json b/public/language/fi/admin/extend/widgets.json
index d8fa5752ef..17970f4284 100644
--- a/public/language/fi/admin/extend/widgets.json
+++ b/public/language/fi/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/fi/admin/settings/reputation.json b/public/language/fi/admin/settings/reputation.json
index d419597bee..89b2171ee9 100644
--- a/public/language/fi/admin/settings/reputation.json
+++ b/public/language/fi/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/fi/error.json b/public/language/fi/error.json
index 295f026649..f682120011 100644
--- a/public/language/fi/error.json
+++ b/public/language/fi/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Et voi keskustella itsesi kanssa!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Keskustelujärjestelmä on pois käytöstä",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Virheellinen keskusteluviesti",
diff --git a/public/language/fi/modules.json b/public/language/fi/modules.json
index 96ad8a5df3..964a9fc744 100644
--- a/public/language/fi/modules.json
+++ b/public/language/fi/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chat with",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Siirry uusimpaan viestiin",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/fi/notifications.json b/public/language/fi/notifications.json
index 96cc80eb9f..707aac1ae1 100644
--- a/public/language/fi/notifications.json
+++ b/public/language/fi/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 on kirjoittanut uuden aiheen: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 aloitti uuden aiheen kategoriassa %2",
"user-started-following-you": "%1 alkoi seurata sinua.",
"user-started-following-you-dual": "%1 ja %2 alkoivat seurata sinua",
@@ -75,6 +75,7 @@
"email-confirmed": "Sähköpostiosoite on vahvistettu",
"email-confirmed-message": "Kiitos sähköpostiosoitteesi vahvistamisesta. Käyttäjätilisi on nyt täysin aktivoitu.",
"email-confirm-error-message": "Ongelma sähköpostiosoitteen vahvistamisessa. Ehkäpä koodi oli virheellinen tai vanhentunut.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Vahvistusviesti on lähetetty.",
"none": "Ei mitään",
"notification-only": "ilmoita vain sivustolla",
diff --git a/public/language/fi/post-queue.json b/public/language/fi/post-queue.json
index ebf195ae94..30bdf827a0 100644
--- a/public/language/fi/post-queue.json
+++ b/public/language/fi/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/fi/themes/harmony.json b/public/language/fi/themes/harmony.json
index 2d37f09940..ddd27c40fe 100644
--- a/public/language/fi/themes/harmony.json
+++ b/public/language/fi/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Etsi kirjautumalla sisään tai luomalla tili.",
"settings.title": "Teeman asetukset",
"settings.enableQuickReply": "Käytä Pikavastausta",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Keskitä otsakkeen elementit",
"settings.mobileTopicTeasers": "Näytä aihe-ehdotukset mobiilinäkymässä",
"settings.stickyToolbar": "Kiinteä työkalupalkki",
diff --git a/public/language/fi/user.json b/public/language/fi/user.json
index 6522417524..836e539af8 100644
--- a/public/language/fi/user.json
+++ b/public/language/fi/user.json
@@ -78,6 +78,7 @@
"change-password": "Vaihda salasana",
"change-password-error": "Virheellinen salasana",
"change-password-error-wrong-current": "Nykyinen salasanasi ei ole oikein!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Salasanojen täytyy olla samat!",
"change-password-error-privileges": "Sinulla ei ole oikeuksia vaihtaa tätä salasanaa.",
"change-password-success": "Salasanasi on päivitetty!",
diff --git a/public/language/fi/users.json b/public/language/fi/users.json
index 6891926beb..bad5b3e7ab 100644
--- a/public/language/fi/users.json
+++ b/public/language/fi/users.json
@@ -1,5 +1,6 @@
{
"all-users": "Kaikki käyttäjät",
+ "followed-users": "Followed Users",
"latest-users": "Viimeisimmät käyttäjät",
"top-posters": "Aktiivisimmat julkaisijat",
"most-reputation": "Maineikkain",
diff --git a/public/language/fr/admin/development/info.json b/public/language/fr/admin/development/info.json
index b33bf0a4fa..3f9de021d1 100644
--- a/public/language/fr/admin/development/info.json
+++ b/public/language/fr/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 noeuds ont répondu en %2ms !",
"host": "hôte",
- "primary": "Tâches principales / Exécuter",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "en ligne",
@@ -19,6 +19,7 @@
"registered": "Enregistré",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Invités",
"info": "Info"
diff --git a/public/language/fr/admin/extend/widgets.json b/public/language/fr/admin/extend/widgets.json
index fae5f066c8..01132fc81b 100644
--- a/public/language/fr/admin/extend/widgets.json
+++ b/public/language/fr/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Carte",
"container.card-header": "En-tête",
"container.card-body": "Corps",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alerte",
"alert.confirm-delete": "Êtes-vous sûr de vouloir supprimer ce widget ?",
diff --git a/public/language/fr/admin/settings/reputation.json b/public/language/fr/admin/settings/reputation.json
index 876c9a48e7..28090542fe 100644
--- a/public/language/fr/admin/settings/reputation.json
+++ b/public/language/fr/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Paramètres de réputation",
"disable": "Désactiver le système de réputation",
"disable-down-voting": "Désactiver les votes négatifs",
- "votes-are-public": "Tous les votes sont publics",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Seuils d'activité",
"min-rep-upvote": "Réputation minimale pour voter pour les publications",
"upvotes-per-day": "Votes positifs par jour (0 = illimité)",
diff --git a/public/language/fr/error.json b/public/language/fr/error.json
index 06403eb7a0..bde9263992 100644
--- a/public/language/fr/error.json
+++ b/public/language/fr/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Votre texte \"à propos de moi\" ne peut dépasser %1 caractère(s).",
"cant-chat-with-yourself": "Vous ne pouvez discuter avec vous-même !",
"chat-restricted": "Cet utilisateur a restreint ses messages de chat. Il doit d'abord s'abonner à votre compte avant que vous puissiez discuter avec lui.",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Système de chat désactivé",
"too-many-messages": "Vous avez envoyé trop de messages, veuillez patienter un instant.",
"invalid-chat-message": "Message de chat invalide",
diff --git a/public/language/fr/modules.json b/public/language/fr/modules.json
index ad46215cfb..cc43da924f 100644
--- a/public/language/fr/modules.json
+++ b/public/language/fr/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Discussion %1",
"chat.chatting-with": "Discuter avec",
- "chat.placeholder": "Écrire vos message ici, glisser & déposer les images, valider sur entrée pour envoyer",
- "chat.placeholder.mobile": "Saisir ici le message",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Aller au message le plus récent",
"chat.usernames-and-x-others": "%1 & %2 autres",
"chat.chat-with-usernames": "Discuter avec %1",
diff --git a/public/language/fr/notifications.json b/public/language/fr/notifications.json
index a165b91046..0abbf4868e 100644
--- a/public/language/fr/notifications.json
+++ b/public/language/fr/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 et %3 autres ont posté des réponses dans : %4",
"user-posted-topic": "%1 a posté un nouveau sujet: %2",
"user-edited-post": "%1 a édité un message dans %2",
- "user-posted-topic-with-tag": "%1 a posté un nouveau sujet avec le mot-clé %2",
- "user-posted-topic-with-tag-dual": "%1 a posté un nouveau sujet avec le mot-clé %2 et %3",
- "user-posted-topic-with-tag-triple": "%1 a posté un nouveau sujet avec les mot-clés %2, %3 et %4",
- "user-posted-topic-with-tag-multiple": "%1 a posté un nouveau sujet avec les mot-clés %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 a posté un nouveau sujet: %2",
"user-started-following-you": "%1 vous suit.",
"user-started-following-you-dual": "%1 et %2 se sont abonnés à votre compte.",
@@ -75,6 +75,7 @@
"email-confirmed": "E-mail vérifié",
"email-confirmed-message": "Merci pour la validation de votre adresse e-mail. Votre compte est désormais activé.",
"email-confirm-error-message": "Il y a un un problème dans la vérification de votre adresse e-mail. Le code est peut être invalide ou a expiré.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "E-mail de vérification envoyé.",
"none": "aucun",
"notification-only": "Seulement une notification",
diff --git a/public/language/fr/post-queue.json b/public/language/fr/post-queue.json
index 04758af10b..0c30494b30 100644
--- a/public/language/fr/post-queue.json
+++ b/public/language/fr/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Supprimer la sélection",
"remove-selected-confirm": "Voulez-vous supprimer %1 messages sélectionnés ?",
"bulk-accept-success": "%1 messages acceptés",
- "bulk-reject-success": "%1 messages rejetés"
+ "bulk-reject-success": "%1 messages rejetés",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/fr/themes/harmony.json b/public/language/fr/themes/harmony.json
index 2957f7ac04..79f78969f1 100644
--- a/public/language/fr/themes/harmony.json
+++ b/public/language/fr/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Connectez-vous ou inscrivez-vous pour faire une recherche.",
"settings.title": "Configuration du thème",
"settings.enableQuickReply": "Activer les réponses rapides",
- "settings.enableBreadcrumbs": "Activer le fil d'Ariane",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Centrer les éléments d'en-tête",
"settings.mobileTopicTeasers": "Afficher les teasers de sujet sur mobile",
"settings.stickyToolbar": "Barre d'outils",
diff --git a/public/language/fr/user.json b/public/language/fr/user.json
index 9bbc717fb1..d70a797344 100644
--- a/public/language/fr/user.json
+++ b/public/language/fr/user.json
@@ -78,6 +78,7 @@
"change-password": "Changer le mot de passe",
"change-password-error": "Mot de passe invalide !",
"change-password-error-wrong-current": "Votre mot de passe est incorrect !",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Les mots de passe doivent être identiques !",
"change-password-error-privileges": "Vous n'avez pas les droits de changer ce mot de passe.",
"change-password-success": "Votre mot de passe a été mis à jour.",
diff --git a/public/language/fr/users.json b/public/language/fr/users.json
index e0417609bb..d91152241f 100644
--- a/public/language/fr/users.json
+++ b/public/language/fr/users.json
@@ -1,5 +1,6 @@
{
"all-users": "Tous les utilisateurs",
+ "followed-users": "Followed Users",
"latest-users": "Derniers inscrits",
"top-posters": "Utilisateurs les plus actifs",
"most-reputation": "Meilleur Réputation",
diff --git a/public/language/gl/admin/development/info.json b/public/language/gl/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/gl/admin/development/info.json
+++ b/public/language/gl/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/gl/admin/extend/widgets.json b/public/language/gl/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/gl/admin/extend/widgets.json
+++ b/public/language/gl/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/gl/admin/settings/reputation.json b/public/language/gl/admin/settings/reputation.json
index e4fff22620..479069e3a4 100644
--- a/public/language/gl/admin/settings/reputation.json
+++ b/public/language/gl/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/gl/error.json b/public/language/gl/error.json
index 00b2c7f34d..9e85520ac3 100644
--- a/public/language/gl/error.json
+++ b/public/language/gl/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Desculpa, o teu \"sobre min\" non pode supera-los %1 caracteres,",
"cant-chat-with-yourself": "Non podes falar contigo mesmo!",
"chat-restricted": "Este usuario restrinxiu as charlas. Debedes seguirvos antes de que poidas falar con el.",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Charlas desactivadas",
"too-many-messages": "Estás a enviar moitas mensaxes, por favor, agarda un anaco.",
"invalid-chat-message": "Mensaxe inválida",
diff --git a/public/language/gl/modules.json b/public/language/gl/modules.json
index 3d33b96021..9ae65b1d4f 100644
--- a/public/language/gl/modules.json
+++ b/public/language/gl/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chat with",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/gl/notifications.json b/public/language/gl/notifications.json
index a4511bc9b9..abbf8c88e7 100644
--- a/public/language/gl/notifications.json
+++ b/public/language/gl/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 publicou un novo tema: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 comezou a seguirte.",
"user-started-following-you-dual": "%1 e %2 comezaron a seguirte.",
@@ -75,6 +75,7 @@
"email-confirmed": "Correo confirmado",
"email-confirmed-message": "Grazas por validar o teu correo. A túa conta agora está activada.",
"email-confirm-error-message": "Houbo un problema validando o teu correo. Poida que o código fose inválido ou expirase.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Correo de confirmación enviado.",
"none": "None",
"notification-only": "Notification Only",
diff --git a/public/language/gl/post-queue.json b/public/language/gl/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/gl/post-queue.json
+++ b/public/language/gl/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/gl/themes/harmony.json b/public/language/gl/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/gl/themes/harmony.json
+++ b/public/language/gl/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/gl/user.json b/public/language/gl/user.json
index f07ed633df..bba8ac92a6 100644
--- a/public/language/gl/user.json
+++ b/public/language/gl/user.json
@@ -78,6 +78,7 @@
"change-password": "Cambia-lo contrasinal",
"change-password-error": "Contrasinal inválido",
"change-password-error-wrong-current": "O contrasinal actual é incorrecto!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Os contrasinais teñen que coincidir!",
"change-password-error-privileges": "Non tes autorización para cambia-lo contrasinal",
"change-password-success": "O teu contrasinal foi actualizado!",
diff --git a/public/language/gl/users.json b/public/language/gl/users.json
index d5690a4258..fab274ce42 100644
--- a/public/language/gl/users.json
+++ b/public/language/gl/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "Últimos usuarios",
"top-posters": "Maiores Publicadores",
"most-reputation": "Máis Reputados",
diff --git a/public/language/he/admin/development/info.json b/public/language/he/admin/development/info.json
index b3a30f3a12..e97a7a872b 100644
--- a/public/language/he/admin/development/info.json
+++ b/public/language/he/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 צמתים הגיבו בתוך %2מילי שניות!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "מקוון",
@@ -19,6 +19,7 @@
"registered": "רשום",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "אורחים",
"info": "מידע"
diff --git a/public/language/he/admin/extend/widgets.json b/public/language/he/admin/extend/widgets.json
index 0a41084f8d..30957ea6aa 100644
--- a/public/language/he/admin/extend/widgets.json
+++ b/public/language/he/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "כרטיס",
"container.card-header": "כותרת כרטיס",
"container.card-body": "גוף כרטיס",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "התראה",
"alert.confirm-delete": "האם אתה בטוח שאתה רוצה למחוק את הווידג'ט?",
diff --git a/public/language/he/admin/settings/reputation.json b/public/language/he/admin/settings/reputation.json
index f103a053ea..92c5750044 100644
--- a/public/language/he/admin/settings/reputation.json
+++ b/public/language/he/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "הגדרות מוניטין",
"disable": "השבת מערכת המוניטין",
"disable-down-voting": "השבת דיסלייק",
- "votes-are-public": "כל ההצבעות פומביות",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "סף פעילות",
"min-rep-upvote": "מוניטין מינימלי כדי להצביע בעד",
"upvotes-per-day": "כמה פעמים ביום משתמש יוכל להצביע למעלה (הגדר ל-0 כדי לאפשר ללא הגבלה)",
diff --git a/public/language/he/error.json b/public/language/he/error.json
index e3cbccbf77..f2dc2eb2c1 100644
--- a/public/language/he/error.json
+++ b/public/language/he/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "מצטערים, דף האודות שלכם אינו יכול להיות ארוך מ-%1 תווים.",
"cant-chat-with-yourself": "לא ניתן לעשות צ'אט עם עצמכם!",
"chat-restricted": "משתמש זה חסם את הודעות הצ'אט שלו ממשתמשים זרים. המשתמש חייב לעקוב אחריכם לפני שתוכלו לשוחח איתו בצ'אט",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "מערכת הצ'אט לא פעילה",
"too-many-messages": "שלחתם יותר מדי הודעות, אנא המתינו זמן מה.",
"invalid-chat-message": "הודעת צ'אט לא תקינה",
diff --git a/public/language/he/modules.json b/public/language/he/modules.json
index 4b425dcaf8..b0abaa5719 100644
--- a/public/language/he/modules.json
+++ b/public/language/he/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "חדר %1",
"chat.chatting-with": "שוחחו בצ'אט עם",
- "chat.placeholder": "כתבו תוכן הודעת הצ'אט כאן, ניתן לגרור ולשחרר כאן תמונות, הקישו אנטר לשליחה.",
- "chat.placeholder.mobile": "הקלד הודעת צ'אט כאן",
+ "chat.placeholder": "כתבו את תוכן הפוסט כאן. ניתן לגרור ולשחרר כאן תמונות.",
+ "chat.placeholder.mobile": "הקלידו הודעת צ'אט",
+ "chat.placeholder.message-room": "הודעה #%1",
"chat.scroll-up-alert": "עבור להודעה האחרונה",
"chat.usernames-and-x-others": "%1 ו-%2 אחרים",
"chat.chat-with-usernames": "צ'אט עם %1",
@@ -103,12 +104,12 @@
"composer.upload-file": "העלאת קובץ",
"composer.zen-mode": "מסך מלא",
"composer.select-category": "בחירת קטגוריה",
- "composer.textarea.placeholder": "כתבו את תוכן הפוסט כאן. ניתן גם לגרור ולשחרר כאן תמונות.",
+ "composer.textarea.placeholder": "כתבו את תוכן הפוסט כאן. ניתן לגרור ולשחרר כאן תמונות.",
"composer.post-queue-alert": "היי 👋! פורום זה משתמש במערכת אישור פוסטים. מכיוון שאתה משתמש חדש הפוסט שלך יוסתר עד שהוא יאושר על ידי צוות הניהול של הפורום.",
"composer.schedule-for": "תזמון נושא ל",
"composer.schedule-date": "תאריך",
"composer.schedule-time": "שעה",
- "composer.cancel-scheduling": "ביטול תיזמון",
+ "composer.cancel-scheduling": "ביטול תזמון",
"composer.change-schedule-date": "שנה תאריך",
"composer.set-schedule-date": "הגדרת תאריך",
"composer.discard-all-drafts": "מחק את כל הטיוטות",
diff --git a/public/language/he/notifications.json b/public/language/he/notifications.json
index 5ecb4b5aad..c9cbb4a4ce 100644
--- a/public/language/he/notifications.json
+++ b/public/language/he/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 ו-%3 אחרים הגיבו ל: %4",
"user-posted-topic": "%1 העלה נושא חדש: %2",
"user-edited-post": "%1 ערך פוסט ב: %2",
- "user-posted-topic-with-tag": "%1 פרסם נושא חדש עם התגית %2",
- "user-posted-topic-with-tag-dual": "%1 פרסם נושא חדש עם התגיות %1 ו-%3",
- "user-posted-topic-with-tag-triple": "%1 פרסם נושא חדש עם התגיות %2, %3 ו-%4",
- "user-posted-topic-with-tag-multiple": "%1 פרסם נושא חדש עם התגיות %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 פרסם נושא חדש ב%2",
"user-started-following-you": "%1 התחיל לעקוב אחריך.",
"user-started-following-you-dual": "%1 ו-%2 התחילו לעקוב אחריך.",
@@ -75,6 +75,7 @@
"email-confirmed": "כתובת המייל אושרה",
"email-confirmed-message": "תודה שאישרת את כתובת המייל שלך. החשבון שלך פעיל כעת.",
"email-confirm-error-message": "אירעה שגיאה בעת אישור המייל שלך. ייתכן כי הקוד היה שגוי או פג תוקף.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "מייל אישור נשלח.",
"none": "אף אחד",
"notification-only": "התראות בלבד",
diff --git a/public/language/he/post-queue.json b/public/language/he/post-queue.json
index 48f6626bae..39075a6299 100644
--- a/public/language/he/post-queue.json
+++ b/public/language/he/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "הסרת נבחרים",
"remove-selected-confirm": "האם להסיר %1 פוסטים שנבחרו?",
"bulk-accept-success": "%1 פוסטים אושרו",
- "bulk-reject-success": "%1 פוסטים נדחו"
+ "bulk-reject-success": "%1 פוסטים נדחו",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/he/search.json b/public/language/he/search.json
index 93dbdd6272..564a160918 100644
--- a/public/language/he/search.json
+++ b/public/language/he/search.json
@@ -15,10 +15,10 @@
"all-categories": "כל הקטגוריות",
"categories-x": "קטגוריות: %1",
"categories-watched-categories": "קטגוריות: קטגוריות במעקב",
- "type-a-category": "הקלדו קטגוריה",
+ "type-a-category": "הקלידו קטגוריה",
"tags": "תגיות",
"tags-x": "תגיות: %1",
- "type-a-tag": "הקלדו תגית",
+ "type-a-tag": "הקלידו תגית",
"match-words": "התאמת מילים",
"match-all-words": "התאמת כל המילים",
"match-any-word": "התאמת מילה אחת לפחות",
@@ -26,7 +26,7 @@
"any": "כל",
"posted-by": "פורסם על-ידי",
"posted-by-usernames": "פורסם על ידי: %1",
- "type-a-username": "הקלדו שם משתמש",
+ "type-a-username": "הקלידו שם משתמש",
"search-child-categories": "חיפוש בתתי קטגוריות",
"has-tags": "עם תגיות",
"reply-count": "כמות תגובות",
diff --git a/public/language/he/themes/harmony.json b/public/language/he/themes/harmony.json
index 67cdfdf0fe..d7f9d979d5 100644
--- a/public/language/he/themes/harmony.json
+++ b/public/language/he/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "התחברו או הירשמו כדי לחפש.",
"settings.title": "הגדרות ערכת נושא",
"settings.enableQuickReply": "הפעלת תגובה מהירה",
- "settings.enableBreadcrumbs": "אפשר סימני דרך",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "מרכוז אלמנטים של כותרת",
"settings.mobileTopicTeasers": "הצגת טיזרים של נושאים בנייד",
"settings.stickyToolbar": "הצמד את סרגל הכלים בעת גלילה",
diff --git a/public/language/he/user.json b/public/language/he/user.json
index 7b91ca75d9..a95cd24e3d 100644
--- a/public/language/he/user.json
+++ b/public/language/he/user.json
@@ -78,6 +78,7 @@
"change-password": "שנה סיסמה",
"change-password-error": "סיסמה לא תקינה!",
"change-password-error-wrong-current": "סיסמתך הנוכחית אינה נכונה!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "הסיסמאות לא תואמות!",
"change-password-error-privileges": "אין לך את ההרשאות המתאימות לשנות סיסמה זו.",
"change-password-success": "הסיסמה שלך עודכנה!",
diff --git a/public/language/he/users.json b/public/language/he/users.json
index 3d8f2d90af..67eb248c70 100644
--- a/public/language/he/users.json
+++ b/public/language/he/users.json
@@ -1,5 +1,6 @@
{
"all-users": "כל המשתמשים",
+ "followed-users": "Followed Users",
"latest-users": "משתמשים אחרונים",
"top-posters": "מפרסמים הכי הרבה",
"most-reputation": "המוניטין הגבוה ביותר",
diff --git a/public/language/hr/admin/development/info.json b/public/language/hr/admin/development/info.json
index 0eb118a954..3b21db6c9a 100644
--- a/public/language/hr/admin/development/info.json
+++ b/public/language/hr/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "Domaćin",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "Na mreži",
@@ -19,6 +19,7 @@
"registered": "Registriran",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Gosti",
"info": "Info"
diff --git a/public/language/hr/admin/extend/widgets.json b/public/language/hr/admin/extend/widgets.json
index 03f5265acb..5e599bf6f7 100644
--- a/public/language/hr/admin/extend/widgets.json
+++ b/public/language/hr/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Upozorenje",
"alert.confirm-delete": "Sigurni ste da želite obrisati ovaj widget?",
diff --git a/public/language/hr/admin/settings/reputation.json b/public/language/hr/admin/settings/reputation.json
index 5802ad12cb..2db17a175d 100644
--- a/public/language/hr/admin/settings/reputation.json
+++ b/public/language/hr/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Postavke reputacije",
"disable": "Onemogući reputacije",
"disable-down-voting": "Onemogući oduzimanje glasova",
- "votes-are-public": "Svi glasovi su javni",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Prag aktivnosti",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/hr/error.json b/public/language/hr/error.json
index 72b7f39112..dde76c1683 100644
--- a/public/language/hr/error.json
+++ b/public/language/hr/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "O vama nemože biti duže od %1 znaka",
"cant-chat-with-yourself": "Nemoguće je razgovarati sam sa sobom!",
"chat-restricted": "Korisnik je ograničio razgovore. Mora vas pratiti prije nego možete razgovarati",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Razgovor onemogućen",
"too-many-messages": "Poslali ste previše poruka, pričekajte.",
"invalid-chat-message": "Netočna poruka.",
diff --git a/public/language/hr/modules.json b/public/language/hr/modules.json
index 6750e12f2a..2e9ffdd03a 100644
--- a/public/language/hr/modules.json
+++ b/public/language/hr/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Razgovaraj s",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/hr/notifications.json b/public/language/hr/notifications.json
index 8433cb789b..fe00fee869 100644
--- a/public/language/hr/notifications.json
+++ b/public/language/hr/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 je otvorio novu temu: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 Vas sada prati.",
"user-started-following-you-dual": "%1 i %2 vas sada prate.",
@@ -75,6 +75,7 @@
"email-confirmed": "Email potvrđen",
"email-confirmed-message": "Hvala na potvrdi emaila. Vaš račun je sada aktivan.",
"email-confirm-error-message": "Nastao je problem pri potvrdi Vaše email adrese. Provjerite kod ili zatražite novi.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Provjera korisničkog emaila poslana.",
"none": "None",
"notification-only": "Obavijest samo",
diff --git a/public/language/hr/post-queue.json b/public/language/hr/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/hr/post-queue.json
+++ b/public/language/hr/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/hr/themes/harmony.json b/public/language/hr/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/hr/themes/harmony.json
+++ b/public/language/hr/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/hr/user.json b/public/language/hr/user.json
index 5bc99ceadc..bc18680d2f 100644
--- a/public/language/hr/user.json
+++ b/public/language/hr/user.json
@@ -78,6 +78,7 @@
"change-password": "Promjeni lozinku",
"change-password-error": "Netočna lozinka!",
"change-password-error-wrong-current": "Vaša trenutačna lozinka nije točna!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Lozinke se moraju podudarati!",
"change-password-error-privileges": "Nemate pravo mijenjati ovu lozinku.",
"change-password-success": "Vaša lozinka je promijenjena!",
diff --git a/public/language/hr/users.json b/public/language/hr/users.json
index 4e19ec6e73..8fe88453d6 100644
--- a/public/language/hr/users.json
+++ b/public/language/hr/users.json
@@ -1,5 +1,6 @@
{
"all-users": "Svi korisnici",
+ "followed-users": "Followed Users",
"latest-users": "Posljednji korisnici",
"top-posters": "Najviše objava",
"most-reputation": "Najveća reputacija",
diff --git a/public/language/hu/admin/development/info.json b/public/language/hu/admin/development/info.json
index d67e35f340..48bf12d34b 100644
--- a/public/language/hu/admin/development/info.json
+++ b/public/language/hu/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 csomópont válaszolt %2mp-n belül!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Regisztrált",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Vendégek",
"info": "Információ"
diff --git a/public/language/hu/admin/extend/widgets.json b/public/language/hu/admin/extend/widgets.json
index 090f1b1996..d50677362d 100644
--- a/public/language/hu/admin/extend/widgets.json
+++ b/public/language/hu/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Kártya",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Riasztás",
"alert.confirm-delete": "Biztosan szeretnéd törölni ezt a modult?",
diff --git a/public/language/hu/admin/settings/reputation.json b/public/language/hu/admin/settings/reputation.json
index d98443850e..ea7b44203e 100644
--- a/public/language/hu/admin/settings/reputation.json
+++ b/public/language/hu/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Hírnév beállítások",
"disable": "Hírnév rendszer kikapcsolása",
"disable-down-voting": "Leszavazás kikapcsolása",
- "votes-are-public": "Minden szavazat nyilvános",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Aktivitás küszöb értékek",
"min-rep-upvote": "Minimális hírnév a hozzászólások pozitív szavazásához",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/hu/error.json b/public/language/hu/error.json
index 124ab066db..6d5ece2e4d 100644
--- a/public/language/hu/error.json
+++ b/public/language/hu/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "A bemutatkozás nem lehet hosszabb %1 karakternél.",
"cant-chat-with-yourself": "Nem cseveghetsz magaddal!",
"chat-restricted": "Ez a felhasználó korlátozta a chat beállításait. Csak akkor cseveghetsz vele, miután felvett a követettek közé téged",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Csevegés funkció kikapcsolva",
"too-many-messages": "Túl sok üzenetet küldtél, kérlek várj egy picit.",
"invalid-chat-message": "Érvénytelen üzenet",
diff --git a/public/language/hu/modules.json b/public/language/hu/modules.json
index d59eab74e2..39bc19df38 100644
--- a/public/language/hu/modules.json
+++ b/public/language/hu/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Csevegés vele",
- "chat.placeholder": "Írja be ide a csevegőüzenetet, húzza át a képeket, majd nyomja meg az Enter billentyűt a küldéshez",
- "chat.placeholder.mobile": "Írja be ide a csevegő üzenetet",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 és mások",
"chat.chat-with-usernames": "Csevegés a következővel: %1",
diff --git a/public/language/hu/notifications.json b/public/language/hu/notifications.json
index e1398d636e..6ca199782b 100644
--- a/public/language/hu/notifications.json
+++ b/public/language/hu/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 új témakört hozott létre: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 új témakört hozott létre: %2",
"user-started-following-you": "%1 elkezdett követni téged.",
"user-started-following-you-dual": "%1 és%2 elkezdett követni téged.",
@@ -75,6 +75,7 @@
"email-confirmed": "E-mail megerősítve",
"email-confirmed-message": "Köszönjük az e-mail címed megerősítését. A fiókod mostantól teljesen aktiválva van.",
"email-confirm-error-message": "Probléma lépett fel az e-mail címed megerősítésekor. Talán a kód érvénytelen volt vagy lejárt.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Megerősítő e-mail elküldve.",
"none": "Nincs",
"notification-only": "Csak értesítés",
diff --git a/public/language/hu/post-queue.json b/public/language/hu/post-queue.json
index 90062aaf46..d7be0c7070 100644
--- a/public/language/hu/post-queue.json
+++ b/public/language/hu/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Kiválasztott eltávolítása ",
"remove-selected-confirm": "El szeretné távolítani %1 kijelölt bejegyzést?",
"bulk-accept-success": "%1 bejegyzés elfogadva",
- "bulk-reject-success": "%1 bejegyzés elutasítva"
+ "bulk-reject-success": "%1 bejegyzés elutasítva",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/hu/themes/harmony.json b/public/language/hu/themes/harmony.json
index 545972cc95..bee0ab5838 100644
--- a/public/language/hu/themes/harmony.json
+++ b/public/language/hu/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Kenyérmorzsa linkek engedélyezése",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/hu/user.json b/public/language/hu/user.json
index 083785c9e3..e208853768 100644
--- a/public/language/hu/user.json
+++ b/public/language/hu/user.json
@@ -78,6 +78,7 @@
"change-password": "Jelszó módosítása",
"change-password-error": "Érvénytelen jelszó!",
"change-password-error-wrong-current": "A jelenlegi jelszavad nem megfelelő!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "A jelszavak nem egyeznek!",
"change-password-error-privileges": "Nincs jogod megváltoztatni ezt a jelszót.",
"change-password-success": "A jelszavad frissítve!",
diff --git a/public/language/hu/users.json b/public/language/hu/users.json
index 5c10cca3ec..f47545cd78 100644
--- a/public/language/hu/users.json
+++ b/public/language/hu/users.json
@@ -1,5 +1,6 @@
{
"all-users": "Összes Felhasználó",
+ "followed-users": "Followed Users",
"latest-users": "Legújabb felhasználók",
"top-posters": "Legaktívabbak",
"most-reputation": "Legnépszerűbbek",
diff --git a/public/language/hy/admin/development/info.json b/public/language/hy/admin/development/info.json
index 881192a02e..ca2bdf9f66 100644
--- a/public/language/hy/admin/development/info.json
+++ b/public/language/hy/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": " IP % 1",
"nodes-responded": "%1 հանգույցներ արձագանքեցին %2ms-ի սահմաններում:",
"host": "host",
- "primary": "առաջնային / գործարկվող աշխատատեղեր",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "առցանց",
@@ -19,6 +19,7 @@
"registered": "Գրանցված",
"sockets": "Վարդակներ",
+ "connection-count": "Connection Count",
"guests": "Հյուրեր",
"info": "տեղեկատվություն"
diff --git a/public/language/hy/admin/extend/widgets.json b/public/language/hy/admin/extend/widgets.json
index a8928471c5..d54fd6f5ff 100644
--- a/public/language/hy/admin/extend/widgets.json
+++ b/public/language/hy/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Քարտ",
"container.card-header": "Քարտի վերնագիր",
"container.card-body": "Քարտի կառուցվածք",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Զգուշացում",
"alert.confirm-delete": "Վստա՞հ եք, որ ցանկանում եք ջնջել այս վիջեթը:",
diff --git a/public/language/hy/admin/settings/reputation.json b/public/language/hy/admin/settings/reputation.json
index e11aaccc65..b1785d9487 100644
--- a/public/language/hy/admin/settings/reputation.json
+++ b/public/language/hy/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Վարկանիշի կարգավորումներ",
"disable": "Անջատել վարկանիշի համակարգը",
"disable-down-voting": "Անջատել Down Voting-ը",
- "votes-are-public": "Բոլոր ձայները հրապարակային են",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Անջատել վարկանիշի համակարգը",
"min-rep-upvote": "Նվազագույն հեղինակություն դրական քվեարկության համար",
"upvotes-per-day": "Օրական կողմ ձայներ (սահմանված է 0 անսահմանափակ կողմ ձայների համար)",
diff --git a/public/language/hy/error.json b/public/language/hy/error.json
index c5166adb4c..d06500260e 100644
--- a/public/language/hy/error.json
+++ b/public/language/hy/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Ներեցեք, ձեր իմ մասին չի կարող լինել ավելի քան %1 նիշ(ներ):",
"cant-chat-with-yourself": "Դուք չեք կարող զրուցել ինքներդ ձեզ հետ:",
"chat-restricted": "Նրանք պետք է հետևեն ձեզ, որպեսզի կարողանաք զրուցել նրանց հետ",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Զրույցի համակարգն անջատված է",
"too-many-messages": "Դուք չափազանց շատ հաղորդագրություններ եք ուղարկել, խնդրում ենք սպասել մի քիչ:",
"invalid-chat-message": "Զրույցի անվավեր հաղորդագրություն",
diff --git a/public/language/hy/modules.json b/public/language/hy/modules.json
index e121ea6bf1..62f73844d5 100644
--- a/public/language/hy/modules.json
+++ b/public/language/hy/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Սենյակ %1",
"chat.chatting-with": "Զրուցել",
- "chat.placeholder": "Գրեք հաղորդագրություն այստեղ, տեղադրեք նկարներ, սեղմեք \"enter\" ուղարկելու համար",
- "chat.placeholder.mobile": "Գրեք նամակը այստեղ",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Ցույց տալ վերջին նամակը",
"chat.usernames-and-x-others": "%1 և %2 ուրիշները",
"chat.chat-with-usernames": "Գրել %1 - ին",
diff --git a/public/language/hy/notifications.json b/public/language/hy/notifications.json
index 96a515cbd4..ed3f074473 100644
--- a/public/language/hy/notifications.json
+++ b/public/language/hy/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 և %3 ուրիշները պատասխանել են %4 - ին։",
"user-posted-topic": "%1-ը նոր թեմա է տեղադրել՝ %2",
"user-edited-post": "%1-ը խմբագրել է գրառում %2-ում",
- "user-posted-topic-with-tag": "%1 պիտակով նոր թեմա է տեղադրել %2 - ում։",
- "user-posted-topic-with-tag-dual": "%1 պիտակով նոր թեմա է տեղադրել %2 և %3 - ում։",
- "user-posted-topic-with-tag-triple": "%1 պիտակով նոր թեմա է տեղադրել %2, %3 և %4 - ում։",
- "user-posted-topic-with-tag-multiple": "%1 պիտակով նոր թեմա է տեղադրել %2 - ում։",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 նոր թեմա է տեղադրել %2",
"user-started-following-you": "%1 սկսեց հետևել ձեզ",
"user-started-following-you-dual": "%1 և %2 սկսեցին հետևել ձեզ:",
@@ -75,6 +75,7 @@
"email-confirmed": "Էլփոստը հաստատված է",
"email-confirmed-message": "Շնորհակալություն ձեր էլփոստը հաստատելու համար: Ձեր հաշիվն այժմ ամբողջությամբ ակտիվացված է:",
"email-confirm-error-message": "Ձեր էլփոստի հասցեն վավերացնելիս խնդիր առաջացավ: Հավանաբար կոդը անվավեր է կամ ժամկետանց է:",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Հաստատման էլփոստը ուղարկվել է",
"none": "None",
"notification-only": "Միայն ծանուցում",
diff --git a/public/language/hy/post-queue.json b/public/language/hy/post-queue.json
index a5dc59fcf4..2dae2a1575 100644
--- a/public/language/hy/post-queue.json
+++ b/public/language/hy/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Հեռացնել ընտրվածը",
"remove-selected-confirm": "Ցանկանու՞մ եք հեռացնել %1 ընտրված գրառումները:",
"bulk-accept-success": "Ընդունված է %1 գրառում",
- "bulk-reject-success": "%1 գրառում մերժվել է"
+ "bulk-reject-success": "%1 գրառում մերժվել է",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/hy/themes/harmony.json b/public/language/hy/themes/harmony.json
index 92097bb834..72b6b4166a 100644
--- a/public/language/hy/themes/harmony.json
+++ b/public/language/hy/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Մուտք գործել կամ գրանցվել որոնման համար:",
"settings.title": "Թեմայի կարգավորումներ",
"settings.enableQuickReply": "Միացնել արագ արձագանքը",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Կենտրոնական վերնագրի տարրեր",
"settings.mobileTopicTeasers": "Ցույց տալ թեմայի թիզերները բջջայինով",
"settings.stickyToolbar": "Կպչուն գործիքագոտի",
diff --git a/public/language/hy/user.json b/public/language/hy/user.json
index 27c5e0b5af..ac2228c424 100644
--- a/public/language/hy/user.json
+++ b/public/language/hy/user.json
@@ -78,6 +78,7 @@
"change-password": "փոխել գաղտնաբառը",
"change-password-error": "Սխալ գաղտնաբառ",
"change-password-error-wrong-current": "Ձեր ընթացիկ գաղտնաբառը սխալ է",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Գաղտնաբառը պետք է համընկնի",
"change-password-error-privileges": "Դուք իրավունք չունեք փոխելու այս գաղտնաբառը:",
"change-password-success": "Ձեր գաղտնաբառը թարմացվել է:",
diff --git a/public/language/hy/users.json b/public/language/hy/users.json
index e94f9f3271..42c66aa7e9 100644
--- a/public/language/hy/users.json
+++ b/public/language/hy/users.json
@@ -1,5 +1,6 @@
{
"all-users": "Բոլոր օգտատերերը",
+ "followed-users": "Followed Users",
"latest-users": "Վերջին օգտատերերը",
"top-posters": "Ամենաշատ գրառողները",
"most-reputation": "Ամենաբարձր վարկանիշը",
diff --git a/public/language/id/admin/development/info.json b/public/language/id/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/id/admin/development/info.json
+++ b/public/language/id/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/id/admin/extend/widgets.json b/public/language/id/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/id/admin/extend/widgets.json
+++ b/public/language/id/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/id/admin/settings/reputation.json b/public/language/id/admin/settings/reputation.json
index e4fff22620..479069e3a4 100644
--- a/public/language/id/admin/settings/reputation.json
+++ b/public/language/id/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/id/error.json b/public/language/id/error.json
index 6ad4b31b96..51e20212f9 100644
--- a/public/language/id/error.json
+++ b/public/language/id/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Kamu tidak dapat chat dengan akun sendiri",
"chat-restricted": "Pengguna ini telah membatasi percakapa mereka. Mereka harus mengikutimu sebelum kamu dapat melakukan percakapan dengan mereka",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Chat system disabled",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
diff --git a/public/language/id/modules.json b/public/language/id/modules.json
index 991e7bfeb8..9222e101f9 100644
--- a/public/language/id/modules.json
+++ b/public/language/id/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Berbincang dengan",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/id/notifications.json b/public/language/id/notifications.json
index 4b6259caba..0a067492e4 100644
--- a/public/language/id/notifications.json
+++ b/public/language/id/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 telah membuat topik baru: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 mulai mengikutimu.",
"user-started-following-you-dual": "%1 and %2 started following you.",
@@ -75,6 +75,7 @@
"email-confirmed": "Email telah Dikonfirmasi",
"email-confirmed-message": "Terimakasih telah melakukan validasi email. Akunmu saat ini telah aktif sepenuhnya.",
"email-confirm-error-message": "Terjadi masalah saat melakukan validasi emailmu. Mungkin terjadi kesalahan kode atau waktu habis.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Email konfirmasi telah dikirim.",
"none": "None",
"notification-only": "Notification Only",
diff --git a/public/language/id/post-queue.json b/public/language/id/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/id/post-queue.json
+++ b/public/language/id/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/id/themes/harmony.json b/public/language/id/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/id/themes/harmony.json
+++ b/public/language/id/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/id/user.json b/public/language/id/user.json
index a8e0f29e1e..e13955912d 100644
--- a/public/language/id/user.json
+++ b/public/language/id/user.json
@@ -78,6 +78,7 @@
"change-password": "Ganti Kata Sandi",
"change-password-error": "Kata Sandi Salah!",
"change-password-error-wrong-current": "Kata Sandi kamu saat ini salah!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Kata Sandi harus sesuai!",
"change-password-error-privileges": "Kamu tidak memiliki hak untuk mengganti kata sandi ini.",
"change-password-success": "Kata Sandi kamu telah diperbarui!",
diff --git a/public/language/id/users.json b/public/language/id/users.json
index 6d1ecde478..cbdb652b31 100644
--- a/public/language/id/users.json
+++ b/public/language/id/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "Pengguna Terakhir",
"top-posters": "Posting Terbanyak",
"most-reputation": "Reputasi Terbanyak",
diff --git a/public/language/it/admin/development/info.json b/public/language/it/admin/development/info.json
index 28b9bf2831..d5bb340bc5 100644
--- a/public/language/it/admin/development/info.json
+++ b/public/language/it/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodi hanno risposto entro %2ms!",
"host": "host",
- "primary": "processi primari/eseguiti",
+ "primary": "primario / lavori",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registrato",
"sockets": "Socket",
+ "connection-count": "Conteggio connessioni",
"guests": "Ospiti",
"info": "Informazioni"
diff --git a/public/language/it/admin/extend/widgets.json b/public/language/it/admin/extend/widgets.json
index 0b9b4cb2a4..d5ebc44952 100644
--- a/public/language/it/admin/extend/widgets.json
+++ b/public/language/it/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Scheda",
"container.card-header": "Intestazione della scheda",
"container.card-body": "Corpo della scheda",
+ "container.title": "Titolo",
+ "container.body": "Corpo",
"container.alert": "Avviso",
"alert.confirm-delete": "Sei sicuro di voler eliminare questo widget?",
diff --git a/public/language/it/admin/settings/reputation.json b/public/language/it/admin/settings/reputation.json
index f84ec4ee04..5dd42ceeac 100644
--- a/public/language/it/admin/settings/reputation.json
+++ b/public/language/it/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Impostazioni reputazione",
"disable": "Disabilita sistema reputazione",
"disable-down-voting": "Disabilita voto negativo",
- "votes-are-public": "Tutti i voti sono pubblici",
+ "upvote-visibility": "Visibilità del voto positivo",
+ "upvote-visibility-all": "Tutti possono vedere i voti positivi",
+ "upvote-visibility-loggedin": "Solo gli utenti registrati possono vedere i voti positivi",
+ "upvote-visibility-privileged": "Solo gli utenti privilegiati come amministratori e moderatori possono visualizzare i voti positivi",
+ "downvote-visibility": "Visibilità del voto negativo",
+ "downvote-visibility-all": "Tutti possono vedere i voti negativi",
+ "downvote-visibility-loggedin": "Solo gli utenti registrati possono vedere i voti negativi",
+ "downvote-visibility-privileged": "Solo gli utenti privilegiati come amministratori e moderatori possono visualizzare i voti negativi",
"thresholds": "Soglie di attività",
"min-rep-upvote": "Reputazione minima per votare positivamente i post",
"upvotes-per-day": "Voti positivi al giorno (impostare a 0 per i voti positivi illimitati)",
diff --git a/public/language/it/error.json b/public/language/it/error.json
index fa8cb7480f..b54386f4e4 100644
--- a/public/language/it/error.json
+++ b/public/language/it/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Spiacenti, il testo non può essere più lungo di %1 caratteri.",
"cant-chat-with-yourself": "Non puoi chattare con te stesso!",
"chat-restricted": "Questo utente ha ristretto i suoi messaggi in chat alle persone che segue. Per poter chattare con te ti deve prima seguire.",
+ "chat-user-blocked": "Sei stato bloccato da questo utente.",
"chat-disabled": "Il sistema di chat è stato disabilitato",
"too-many-messages": "Hai inviato troppi messaggi, aspetta un attimo.",
"invalid-chat-message": "Messaggio chat non valido",
diff --git a/public/language/it/modules.json b/public/language/it/modules.json
index 1d29c33648..4a244172ac 100644
--- a/public/language/it/modules.json
+++ b/public/language/it/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Stanza %1",
"chat.chatting-with": "Messaggia con",
- "chat.placeholder": "Digita il messaggio di chat qui, trascina le immagini, premi invio per inviare",
- "chat.placeholder.mobile": "Digita il messaggio di chat qui",
+ "chat.placeholder": "Digita qui il messaggio di chat, trascina e rilascia le immagini",
+ "chat.placeholder.mobile": "Digita il messaggio di chat",
+ "chat.placeholder.message-room": "Messaggio #%1",
"chat.scroll-up-alert": "Vai al messaggio più recente",
"chat.usernames-and-x-others": "%1 & %2 altri",
"chat.chat-with-usernames": "Chatta con %1",
diff --git a/public/language/it/notifications.json b/public/language/it/notifications.json
index 737dfd0f20..b9a35fcac8 100644
--- a/public/language/it/notifications.json
+++ b/public/language/it/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 e %3 altri hanno postato risposte a: %4",
"user-posted-topic": "%1 ha postato una nuova discussione: %2",
"user-edited-post": "%1 ha modificato un post in %2",
- "user-posted-topic-with-tag": "%1 ha postato una nuova discussione con tag %2",
- "user-posted-topic-with-tag-dual": "%1 ha postato una nuova discussione con i tag %2 e %3",
- "user-posted-topic-with-tag-triple": "%1 ha postato una nuova discussione con e tag %2, %3 e %4",
- "user-posted-topic-with-tag-multiple": "%1 ha postato una nuova discussione con i tag %2",
+ "user-posted-topic-with-tag": "%1 ha postato %2 (taggato %3)",
+ "user-posted-topic-with-tag-dual": "%1 ha postato %2 (taggato %3 e %4)",
+ "user-posted-topic-with-tag-triple": "%1 ha postato %2 (taggato %3, %4, e %5)",
+ "user-posted-topic-with-tag-multiple": "%1 ha postato %2 (taggato %3)",
"user-posted-topic-in-category": "%1 ha postato una nuova discussione in %2",
"user-started-following-you": "%1 ha iniziato a seguirti.",
"user-started-following-you-dual": "%1 e %2 hanno iniziato a seguirti.",
@@ -75,6 +75,7 @@
"email-confirmed": "Email Confermata",
"email-confirmed-message": "Grazie per aver validato la tua email. Il tuo account è ora completamente attivato.",
"email-confirm-error-message": "C'è stato un problema nella validazione del tuo indirizzo email. Potrebbe essere il codice non valido o scaduto.",
+ "email-confirm-error-message-already-validated": "Il tuo indirizzo email è già stato convalidato.",
"email-confirm-sent": "Email di conferma inviata.",
"none": "Nessuna",
"notification-only": "Solo Notifiche",
diff --git a/public/language/it/post-queue.json b/public/language/it/post-queue.json
index 6e9deaa491..b9ebfe9bfb 100644
--- a/public/language/it/post-queue.json
+++ b/public/language/it/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Rimuovi selezionati",
"remove-selected-confirm": "Vuoi rimuovere %1 post selezionati?",
"bulk-accept-success": "%1 post accettati",
- "bulk-reject-success": "%1 post rifiutati"
+ "bulk-reject-success": "%1 post rifiutati",
+ "links-in-this-post": "Link in questo post"
}
\ No newline at end of file
diff --git a/public/language/it/themes/harmony.json b/public/language/it/themes/harmony.json
index 130e1f2c48..b63252bdaa 100644
--- a/public/language/it/themes/harmony.json
+++ b/public/language/it/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Accedi o registrati per effettuare la ricerca.",
"settings.title": "Impostazioni tema",
"settings.enableQuickReply": "Abilita risposta rapida",
- "settings.enableBreadcrumbs": "Abilita breadcrumb",
+ "settings.enableBreadcrumbs": "Mostra breadcrumb nelle pagine Categoria e Discussione",
+ "settings.enableBreadcrumbs.why": "I breadcrumb sono visibili nella maggior parte delle pagine per facilitare la navigazione. Il design di base delle pagine delle categorie e delle discussioni prevede mezzi alternativi per ricollegarsi alle pagine principali, ma il breadcrumb può essere disattivato per ridurre la confusione.",
"settings.centerHeaderElements": "Centra elementi dell'intestazione",
"settings.mobileTopicTeasers": "Mostra le anteprime delle discussioni su mobile",
"settings.stickyToolbar": "Barra degli strumenti adesiva",
diff --git a/public/language/it/user.json b/public/language/it/user.json
index 7f5bac3720..157d3c22a4 100644
--- a/public/language/it/user.json
+++ b/public/language/it/user.json
@@ -78,6 +78,7 @@
"change-password": "Cambia la Password",
"change-password-error": "Password non valida!",
"change-password-error-wrong-current": "La tua password corrente non è corretta!",
+ "change-password-error-same-password": "La tua nuova password corrisponde alla password attuale, utilizza una nuova password.",
"change-password-error-match": "Le password devono coincidere!",
"change-password-error-privileges": "Non hai il permesso di cambiare questa password.",
"change-password-success": "La tua password è stata aggiornata!",
diff --git a/public/language/it/users.json b/public/language/it/users.json
index bfbbc52a6f..bf4e3b0aca 100644
--- a/public/language/it/users.json
+++ b/public/language/it/users.json
@@ -1,5 +1,6 @@
{
"all-users": "Tutti gli utenti",
+ "followed-users": "Utenti seguiti",
"latest-users": "Ultimi Utenti",
"top-posters": "Utenti più attivi",
"most-reputation": "Reputazione più alta",
diff --git a/public/language/ja/admin/development/info.json b/public/language/ja/admin/development/info.json
index f70dd00849..857c419a66 100644
--- a/public/language/ja/admin/development/info.json
+++ b/public/language/ja/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1ノードは%2ms以内に応答しました!",
"host": "ホスト",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "オンライン",
@@ -19,6 +19,7 @@
"registered": "登録数",
"sockets": "ソケット数",
+ "connection-count": "Connection Count",
"guests": "ゲスト数",
"info": "情報"
diff --git a/public/language/ja/admin/extend/widgets.json b/public/language/ja/admin/extend/widgets.json
index a6d4b8dc56..e6a320a8de 100644
--- a/public/language/ja/admin/extend/widgets.json
+++ b/public/language/ja/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "警告",
"alert.confirm-delete": "このウィジェットを削除してもよろしいですか?",
diff --git a/public/language/ja/admin/settings/reputation.json b/public/language/ja/admin/settings/reputation.json
index 2ae070ba58..790f0e1d0f 100644
--- a/public/language/ja/admin/settings/reputation.json
+++ b/public/language/ja/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "評価の設定",
"disable": "レピュテーションシステムを無効にする",
"disable-down-voting": "低評価を無効にする",
- "votes-are-public": "すべての投票は公開されています",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "アクティビティのしきい値",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/ja/error.json b/public/language/ja/error.json
index 651ca4edcc..fe36d33b8e 100644
--- a/public/language/ja/error.json
+++ b/public/language/ja/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "申し訳ありませんが、あなたの私についての項目が%1より長くすることができません。",
"cant-chat-with-yourself": "自分にチャットすることはできません!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Chat system disabled",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
diff --git a/public/language/ja/modules.json b/public/language/ja/modules.json
index 221c7c04c9..597165666b 100644
--- a/public/language/ja/modules.json
+++ b/public/language/ja/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "とチャット",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/ja/notifications.json b/public/language/ja/notifications.json
index ab09acafd9..679de2e917 100644
--- a/public/language/ja/notifications.json
+++ b/public/language/ja/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 が新しいスレッドを投稿しました。: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1があなたをフォローしました。",
"user-started-following-you-dual": "%1 と %2 があなたをフォローしました。",
@@ -75,6 +75,7 @@
"email-confirmed": "Eメールが確認されました",
"email-confirmed-message": "メールアドレス検証をして頂き、ありがとうございます。あなたのアカウントは完全にアクティブになりました。",
"email-confirm-error-message": "あなたのEメールアドレス検証に問題があります。コードが無効か、期限切れです。",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "確認メールが送信されました。",
"none": "なし",
"notification-only": "通知のみ",
diff --git a/public/language/ja/post-queue.json b/public/language/ja/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/ja/post-queue.json
+++ b/public/language/ja/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/ja/themes/harmony.json b/public/language/ja/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/ja/themes/harmony.json
+++ b/public/language/ja/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/ja/user.json b/public/language/ja/user.json
index bba4d3a261..7aaf0e8cd2 100644
--- a/public/language/ja/user.json
+++ b/public/language/ja/user.json
@@ -78,6 +78,7 @@
"change-password": "パスワードを変更",
"change-password-error": "無効のパスワード!",
"change-password-error-wrong-current": "現在のパスワードは正しくありません!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "パスワードは一致しません!",
"change-password-error-privileges": "パスワードを更新する権限はありません。",
"change-password-success": "パスワードを更新しました!",
diff --git a/public/language/ja/users.json b/public/language/ja/users.json
index acde8c9719..d0408692ee 100644
--- a/public/language/ja/users.json
+++ b/public/language/ja/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "新しいユーザー",
"top-posters": "最も投稿したユーザー",
"most-reputation": "最も評価されたユーザー",
diff --git a/public/language/ko/admin/development/info.json b/public/language/ko/admin/development/info.json
index 4237eaa8ae..08cb8a739b 100644
--- a/public/language/ko/admin/development/info.json
+++ b/public/language/ko/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1개의 노드가 %2밀리초 안에 응답했습니다!",
"host": "호스트",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "PID",
"nodejs": "Node.js",
"online": "온라인",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "소켓",
+ "connection-count": "Connection Count",
"guests": "비회원",
"info": "정보"
diff --git a/public/language/ko/admin/extend/widgets.json b/public/language/ko/admin/extend/widgets.json
index 33add708a4..4c52217ff2 100644
--- a/public/language/ko/admin/extend/widgets.json
+++ b/public/language/ko/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "이 위젯을 삭제하시겠습니까?",
diff --git a/public/language/ko/admin/settings/reputation.json b/public/language/ko/admin/settings/reputation.json
index 43bb0328db..0451e4bc49 100644
--- a/public/language/ko/admin/settings/reputation.json
+++ b/public/language/ko/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "평판 설정",
"disable": "평판 시스템 비활성화",
"disable-down-voting": "비추천 비활성화",
- "votes-are-public": "모든 투표 공개",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "활동 임계값",
"min-rep-upvote": "게시물을 추천할 수 있는 최소 평판",
"upvotes-per-day": "하루에 가능한 추천 횟수 (무제한 추천을 위해 0으로 설정)",
diff --git a/public/language/ko/error.json b/public/language/ko/error.json
index cb6153953c..f276a770ce 100644
--- a/public/language/ko/error.json
+++ b/public/language/ko/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "죄송합니다. 자기 소개는 최대 %1자보다 길 수 없습니다.",
"cant-chat-with-yourself": "자기 자신과 채팅할 수 없습니다!",
"chat-restricted": "이 사용자는 채팅 메시지를 제한했습니다. 채팅할 수 있도록 팔로우해야 합니다",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "채팅 시스템이 비활성화되었습니다",
"too-many-messages": "너무 많은 메시지를 보냈습니다. 잠시 기다려주세요.",
"invalid-chat-message": "유효하지 않은 채팅 메시지",
diff --git a/public/language/ko/modules.json b/public/language/ko/modules.json
index 29760612b9..f91693d75a 100644
--- a/public/language/ko/modules.json
+++ b/public/language/ko/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "대화방 %1",
"chat.chatting-with": "대화 중",
- "chat.placeholder": "여기에 채팅 메시지를 입력하세요. 이미지는 끌어다 놓으세요. 전송하려면 Enter 키를 누르세요.",
- "chat.placeholder.mobile": "여기에 채팅 메시지를 입력하세요.",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "가장 최근 메시지로 이동",
"chat.usernames-and-x-others": "%1 및 다른 %2명",
"chat.chat-with-usernames": "%1과 대화",
diff --git a/public/language/ko/notifications.json b/public/language/ko/notifications.json
index 1e9b72af2b..7f099f0c79 100644
--- a/public/language/ko/notifications.json
+++ b/public/language/ko/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 및 다른 %3명이 답글을 게시했습니다: %4",
"user-posted-topic": "%1님이 새 토픽을 게시했습니다: %2",
"user-edited-post": "%1님이 %2에서 게시물을 편집했습니다.",
- "user-posted-topic-with-tag": "%1님이 태그 %2를 포함한 새 토픽을 게시했습니다.",
- "user-posted-topic-with-tag-dual": "%1님이 태그 %2 및 %3를 포함한 새 토픽을 게시했습니다.",
- "user-posted-topic-with-tag-triple": "%1님이 태그 %2, %3 및 %4를 포함한 새 토픽을 게시했습니다.",
- "user-posted-topic-with-tag-multiple": "%1님이 태그 %2를 포함한 새 토픽을 게시했습니다.",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1님이 카테고리 %2에 새 토픽을 게시했습니다.",
"user-started-following-you": "%1님이 나를 팔로우하기 시작했습니다.",
"user-started-following-you-dual": "%1 및 %2님이 나를 팔로우하기 시작했습니다.",
@@ -75,6 +75,7 @@
"email-confirmed": "이메일 확인됨",
"email-confirmed-message": "이메일 확인에 감사드립니다. 계정이 이제 완전히 활성화되었습니다.",
"email-confirm-error-message": "이메일 주소를 확인하는 데 문제가 발생했습니다. 코드가 잘못되었거나 만료되었을 수 있습니다.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "확인 이메일이 전송되었습니다.",
"none": "없음",
"notification-only": "알림만",
diff --git a/public/language/ko/post-queue.json b/public/language/ko/post-queue.json
index 012d75df2e..4010f972a7 100644
--- a/public/language/ko/post-queue.json
+++ b/public/language/ko/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "선택된 것 제거",
"remove-selected-confirm": "선택된 %1개의 게시물을 제거하시겠습니까?",
"bulk-accept-success": "%1개의 게시물이 승인되었습니다.",
- "bulk-reject-success": "%1개의 게시물이 거부되었습니다."
+ "bulk-reject-success": "%1개의 게시물이 거부되었습니다.",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/ko/themes/harmony.json b/public/language/ko/themes/harmony.json
index b60d445f68..e9b4b96845 100644
--- a/public/language/ko/themes/harmony.json
+++ b/public/language/ko/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "검색하려면 로그인하거나 등록하세요.",
"settings.title": "테마 설정",
"settings.enableQuickReply": "빠른 답장 활성화",
- "settings.enableBreadcrumbs": "사이트 이동 경로 활성화",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "헤더 요소 가운데 정렬",
"settings.mobileTopicTeasers": "모바일에서 토픽 미리보기 표시",
"settings.stickyToolbar": "툴바 고정",
diff --git a/public/language/ko/user.json b/public/language/ko/user.json
index 6c95172b49..375df29975 100644
--- a/public/language/ko/user.json
+++ b/public/language/ko/user.json
@@ -78,6 +78,7 @@
"change-password": "비밀번호 변경",
"change-password-error": "유효하지 않은 비밀번호!",
"change-password-error-wrong-current": "현재 비밀번호가 올바르지 않습니다!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "비밀번호가 일치해야 합니다!",
"change-password-error-privileges": "이 비밀번호를 변경할 권한이 없습니다.",
"change-password-success": "비밀번호가 업데이트되었습니다!",
diff --git a/public/language/ko/users.json b/public/language/ko/users.json
index 56d2b1c1bc..22a34b4a92 100644
--- a/public/language/ko/users.json
+++ b/public/language/ko/users.json
@@ -1,5 +1,6 @@
{
"all-users": "모든 사용자",
+ "followed-users": "Followed Users",
"latest-users": "최신 사용자",
"top-posters": "최다 게시자",
"most-reputation": "가장 많은 평판",
diff --git a/public/language/lt/admin/development/info.json b/public/language/lt/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/lt/admin/development/info.json
+++ b/public/language/lt/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/lt/admin/extend/widgets.json b/public/language/lt/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/lt/admin/extend/widgets.json
+++ b/public/language/lt/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/lt/admin/settings/reputation.json b/public/language/lt/admin/settings/reputation.json
index e4fff22620..479069e3a4 100644
--- a/public/language/lt/admin/settings/reputation.json
+++ b/public/language/lt/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/lt/error.json b/public/language/lt/error.json
index d329383e60..f1bbb93154 100644
--- a/public/language/lt/error.json
+++ b/public/language/lt/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Atsiprašome, bet aprašymas apie jus negali būti ilgesnis negu %1 simbolis (ių)",
"cant-chat-with-yourself": "Jūs negalite susirašinėti su savimi!",
"chat-restricted": "Šis vartotojas apribojo savo žinutes. Jie turi sekti jus kad jūs galėtumėte pradėti bendrauti su jais",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Susirašinėjimų sistema išjungta",
"too-many-messages": "Išsiuntėte per daug pranešimų, kurį laiką prašome palaukti.",
"invalid-chat-message": "Bloga žinutė",
diff --git a/public/language/lt/modules.json b/public/language/lt/modules.json
index 8d8f34de03..790766a5d3 100644
--- a/public/language/lt/modules.json
+++ b/public/language/lt/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chat with",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/lt/notifications.json b/public/language/lt/notifications.json
index c212e1b3de..47ba471ff7 100644
--- a/public/language/lt/notifications.json
+++ b/public/language/lt/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 paskelbė naują temą: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 pradėjo sekti tave",
"user-started-following-you-dual": "%1 and %2 started following you.",
@@ -75,6 +75,7 @@
"email-confirmed": "El. paštas patvirtintas",
"email-confirmed-message": "Dėkojame už el. pašto patvirtinimą. Jūsų paskyra pilnai aktyvuota.",
"email-confirm-error-message": "Įvyko klaida mėginant patvirtinti Jūsų el. pašto adresą. Galbūt kodas yra neteisingas, arba nebegalioajantis.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Patvirtinimo laiškas išsiųstas.",
"none": "None",
"notification-only": "Notification Only",
diff --git a/public/language/lt/post-queue.json b/public/language/lt/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/lt/post-queue.json
+++ b/public/language/lt/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/lt/themes/harmony.json b/public/language/lt/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/lt/themes/harmony.json
+++ b/public/language/lt/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/lt/user.json b/public/language/lt/user.json
index 1d9d72c74a..9a546285f2 100644
--- a/public/language/lt/user.json
+++ b/public/language/lt/user.json
@@ -78,6 +78,7 @@
"change-password": "Pakeisti slaptažodį",
"change-password-error": "Negalimas slaptažodis!",
"change-password-error-wrong-current": "Jūsų dabartinis slaptažodis neteisingas!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Slaptažodžiai privalo sutapti!",
"change-password-error-privileges": "Jūs neturite teisių pakeisti šį slaptažodį.",
"change-password-success": "Jūsų slaptažodis atnaujintas!",
diff --git a/public/language/lt/users.json b/public/language/lt/users.json
index 4febc6a4ae..06c20ade22 100644
--- a/public/language/lt/users.json
+++ b/public/language/lt/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "Paskutiniai vartotojai",
"top-posters": "Geriausi autoriai",
"most-reputation": "Didžiausia reputacija",
diff --git a/public/language/lv/admin/development/info.json b/public/language/lv/admin/development/info.json
index d07a526789..87cb89d8cf 100644
--- a/public/language/lv/admin/development/info.json
+++ b/public/language/lv/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 serveri atbildēja %2ms laikā!",
"host": "serveris",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "tiešsaistē",
@@ -19,6 +19,7 @@
"registered": "Reģistrētie",
"sockets": "Tīkla savienojumi",
+ "connection-count": "Connection Count",
"guests": "Viesi",
"info": "Info"
diff --git a/public/language/lv/admin/extend/widgets.json b/public/language/lv/admin/extend/widgets.json
index 851c089e33..0d7ae39171 100644
--- a/public/language/lv/admin/extend/widgets.json
+++ b/public/language/lv/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Brīdinājums",
"alert.confirm-delete": "Vai tiešām vēlies izdzēst šo logrīku?",
diff --git a/public/language/lv/admin/settings/reputation.json b/public/language/lv/admin/settings/reputation.json
index 6df67ebd1c..6192bdfe99 100644
--- a/public/language/lv/admin/settings/reputation.json
+++ b/public/language/lv/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Ranga punktu sistēma",
"disable": "Atspējot ranga punktu sistēmu",
"disable-down-voting": "Atspējot balsošanu \"pret\"",
- "votes-are-public": "Visi balsojumi ir publiski",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Aktivitātes sliekšņi",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/lv/error.json b/public/language/lv/error.json
index 2fbd1cf4a8..0d71b060eb 100644
--- a/public/language/lv/error.json
+++ b/public/language/lv/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Atvaino, Tavā \"Par mani\" nevar būt vairāk kā %1 rakstzīmes.",
"cant-chat-with-yourself": "Nevar sarunāties pats ar sevi!",
"chat-restricted": "Šis lietotājs ir ierobežojis savas sarunas. Viņam ir Tev jāseko, pirms vari sarunāties ar viņu",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Sarunu sistēma ir atspējota",
"too-many-messages": "Tu esi publicējis pārāk daudz rakstu, lūdzu, kādu laiku uzgaidi.",
"invalid-chat-message": "Nederīga saruna",
diff --git a/public/language/lv/modules.json b/public/language/lv/modules.json
index 41bd1996d3..b1c0ab27ef 100644
--- a/public/language/lv/modules.json
+++ b/public/language/lv/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Sarunāties ar",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/lv/notifications.json b/public/language/lv/notifications.json
index ef3573784a..b1c56866b7 100644
--- a/public/language/lv/notifications.json
+++ b/public/language/lv/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 ir ievietojis jaunu tematu: %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 sāka Tev sekot.",
"user-started-following-you-dual": "%1 un %2 sāka Tev sekot.",
@@ -75,6 +75,7 @@
"email-confirmed": "E-pasta adrese ir apstiprināta",
"email-confirmed-message": "Paldies, ka apstiprināji e-pasta adresi. Tavs konts tagad ir pilnībā aktivizēts.",
"email-confirm-error-message": "Tavā e-pasta adreses apstiprināšanā radās problēma. Iespējams, kods ir nederīgs vai ir beidzies derīguma termiņš.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Apstiprinājuma e-pasts ir nosūtīts.",
"none": "Neko nedarīt",
"notification-only": "Tikai paziņot",
diff --git a/public/language/lv/post-queue.json b/public/language/lv/post-queue.json
index 2a716a258e..31a5fc40f0 100644
--- a/public/language/lv/post-queue.json
+++ b/public/language/lv/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/lv/themes/harmony.json b/public/language/lv/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/lv/themes/harmony.json
+++ b/public/language/lv/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/lv/user.json b/public/language/lv/user.json
index d64918c487..aa1c0e6981 100644
--- a/public/language/lv/user.json
+++ b/public/language/lv/user.json
@@ -78,6 +78,7 @@
"change-password": "Mainīt paroli",
"change-password-error": "Nederīga parole!",
"change-password-error-wrong-current": "Pašreizējā parole nav pareiza!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Parolēm jāsakrīt!",
"change-password-error-privileges": "Tev nav tiesības mainīt šo paroli.",
"change-password-success": "Parole ir atjaunināta!",
diff --git a/public/language/lv/users.json b/public/language/lv/users.json
index 97e2626bf3..b016c675ac 100644
--- a/public/language/lv/users.json
+++ b/public/language/lv/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "Jaunākie lietotāji",
"top-posters": "Visvairāk rakstu",
"most-reputation": "Visvairāk ranga punktu",
diff --git a/public/language/ms/admin/development/info.json b/public/language/ms/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/ms/admin/development/info.json
+++ b/public/language/ms/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/ms/admin/extend/widgets.json b/public/language/ms/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/ms/admin/extend/widgets.json
+++ b/public/language/ms/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/ms/admin/settings/reputation.json b/public/language/ms/admin/settings/reputation.json
index e4fff22620..479069e3a4 100644
--- a/public/language/ms/admin/settings/reputation.json
+++ b/public/language/ms/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/ms/error.json b/public/language/ms/error.json
index d17d2c54f7..49846b7e28 100644
--- a/public/language/ms/error.json
+++ b/public/language/ms/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Maaf, penerangan tentang anda tidak boleh lebih %1 aksara().",
"cant-chat-with-yourself": "Anda tidak boleh sembang dengan diri sendiri!",
"chat-restricted": "Pengguna ini menyekat ruangan sembangnya. Dia hendaklah mengikut anda sebelum kalian dapat bersembang",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Sistem borak tidak diaktifkan",
"too-many-messages": "Anda menghantar terlalu banyak pesanan, sila tunggu seketika.",
"invalid-chat-message": "Mesej borak tidak sah",
diff --git a/public/language/ms/modules.json b/public/language/ms/modules.json
index 2e1026ca70..9cfae84566 100644
--- a/public/language/ms/modules.json
+++ b/public/language/ms/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Room %1",
"chat.chatting-with": "Chat with",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/ms/notifications.json b/public/language/ms/notifications.json
index a852e75ac5..e849c3d99b 100644
--- a/public/language/ms/notifications.json
+++ b/public/language/ms/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 membuka topik baru : %2",
"user-edited-post": "%1 has edited a post in %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 has posted a new topic in %2",
"user-started-following-you": "%1 mula mengikut anda.",
"user-started-following-you-dual": "%1 dan %2 mula mengikuti anda.",
@@ -75,6 +75,7 @@
"email-confirmed": "Emel Disahkan",
"email-confirmed-message": "Terima kasih kerana mengesahkan emel anda. Akaun anda telah diaktifkan sepenuhnya.",
"email-confirm-error-message": "Berlaku masalah semasa mengesahkan emel anda. Mungkin kod tidak sah atau tamat tempoh.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Pengesahan emel telah dihantar.",
"none": "None",
"notification-only": "Notification Only",
diff --git a/public/language/ms/post-queue.json b/public/language/ms/post-queue.json
index 021ed0d83f..24b33da2e6 100644
--- a/public/language/ms/post-queue.json
+++ b/public/language/ms/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/ms/themes/harmony.json b/public/language/ms/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/ms/themes/harmony.json
+++ b/public/language/ms/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/ms/user.json b/public/language/ms/user.json
index f2ae132b26..63525d064c 100644
--- a/public/language/ms/user.json
+++ b/public/language/ms/user.json
@@ -78,6 +78,7 @@
"change-password": "Tukar kata laluan",
"change-password-error": "Kata laluan salah!",
"change-password-error-wrong-current": "Kata laluan anda sekarang tidak sah",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Kata laluan mesti padan",
"change-password-error-privileges": "Anda tidak mempunyai kebenaran untuk mengubah kata laluan ini",
"change-password-success": "Kata laluan dikemaskini",
diff --git a/public/language/ms/users.json b/public/language/ms/users.json
index 568a3c6d3c..91f6d4d969 100644
--- a/public/language/ms/users.json
+++ b/public/language/ms/users.json
@@ -1,5 +1,6 @@
{
"all-users": "All Users",
+ "followed-users": "Followed Users",
"latest-users": "Pengguna terkini",
"top-posters": "Pengirim terbanyak",
"most-reputation": "Reputasi terbaik",
diff --git a/public/language/nb/admin/development/info.json b/public/language/nb/admin/development/info.json
index 11202d9c3a..9834719daf 100644
--- a/public/language/nb/admin/development/info.json
+++ b/public/language/nb/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/nb/admin/extend/widgets.json b/public/language/nb/admin/extend/widgets.json
index 5d2832feed..db72f2feb3 100644
--- a/public/language/nb/admin/extend/widgets.json
+++ b/public/language/nb/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/nb/admin/settings/reputation.json b/public/language/nb/admin/settings/reputation.json
index c17d74f8ed..c0f19e8ee8 100644
--- a/public/language/nb/admin/settings/reputation.json
+++ b/public/language/nb/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Omdømmeinnstillinger",
"disable": "Skru av omdømmesystem",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum omdømme for å stemme opp innlegg",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/nb/error.json b/public/language/nb/error.json
index 67c39591c6..8ec0487c84 100644
--- a/public/language/nb/error.json
+++ b/public/language/nb/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Beklager, om meg kan ikke være lengre enn %1 tegn.",
"cant-chat-with-yourself": "Du kan ikke chatte med deg selv!",
"chat-restricted": "Denne brukeren har begrenset sine samtalemeldinger. De må følge deg før du kan chatte med dem",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Chattesystem er deaktivert",
"too-many-messages": "Du har sendt for mange meldinger, vennligst vent en stund.",
"invalid-chat-message": "Ugyldig samtalemelding",
diff --git a/public/language/nb/modules.json b/public/language/nb/modules.json
index 27471d0082..909c1dca14 100644
--- a/public/language/nb/modules.json
+++ b/public/language/nb/modules.json
@@ -1,8 +1,9 @@
{
"chat.room-id": "Rom %1",
"chat.chatting-with": "Chat med",
- "chat.placeholder": "Type chat message here, drag & drop images, press enter to send",
- "chat.placeholder.mobile": "Type chat message here",
+ "chat.placeholder": "Type chat message here, drag & drop images",
+ "chat.placeholder.mobile": "Type chat message",
+ "chat.placeholder.message-room": "Message #%1",
"chat.scroll-up-alert": "Go to most recent message",
"chat.usernames-and-x-others": "%1 & %2 others",
"chat.chat-with-usernames": "Chat with %1",
diff --git a/public/language/nb/notifications.json b/public/language/nb/notifications.json
index 29752bf30d..2914fa0986 100644
--- a/public/language/nb/notifications.json
+++ b/public/language/nb/notifications.json
@@ -52,10 +52,10 @@
"user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4",
"user-posted-topic": "%1 har skrevet en ny tråd: %2",
"user-edited-post": "%1 har redigert ett innlegg i %2",
- "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2",
- "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3",
- "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4",
- "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2",
+ "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)",
+ "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)",
+ "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)",
+ "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)",
"user-posted-topic-in-category": "%1 har publisert et nytt innlegg i %2",
"user-started-following-you": "%1 begynte å følge deg.",
"user-started-following-you-dual": "%1 og 2% har begynt å følge deg.",
@@ -75,6 +75,7 @@
"email-confirmed": "E-post bekreftet",
"email-confirmed-message": "Takk for at du har validert din e-post. Kontoen din er nå fullstendig aktivert.",
"email-confirm-error-message": "Det oppsto et problem under validering av e-posten din. Koden kan ha vært ugyldig eller ha utløpt.",
+ "email-confirm-error-message-already-validated": "Your email address was already validated.",
"email-confirm-sent": "Bekreftelses-e-post sendt.",
"none": "Ingen",
"notification-only": "Kun notifikasjon",
diff --git a/public/language/nb/post-queue.json b/public/language/nb/post-queue.json
index 58d2a16f8d..efec1c28f7 100644
--- a/public/language/nb/post-queue.json
+++ b/public/language/nb/post-queue.json
@@ -38,5 +38,6 @@
"remove-selected": "Remove Selected",
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
- "bulk-reject-success": "%1 posts rejected"
+ "bulk-reject-success": "%1 posts rejected",
+ "links-in-this-post": "Links in this post"
}
\ No newline at end of file
diff --git a/public/language/nb/themes/harmony.json b/public/language/nb/themes/harmony.json
index 4e75b9f716..01038d7641 100644
--- a/public/language/nb/themes/harmony.json
+++ b/public/language/nb/themes/harmony.json
@@ -7,7 +7,8 @@
"login-register-to-search": "Login or register to search.",
"settings.title": "Theme settings",
"settings.enableQuickReply": "Enable quick reply",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages",
+ "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.",
"settings.centerHeaderElements": "Center header elements",
"settings.mobileTopicTeasers": "Show topic teasers on mobile",
"settings.stickyToolbar": "Sticky toolbar",
diff --git a/public/language/nb/user.json b/public/language/nb/user.json
index ee7ab00a19..7d708a3975 100644
--- a/public/language/nb/user.json
+++ b/public/language/nb/user.json
@@ -78,6 +78,7 @@
"change-password": "Endre passord",
"change-password-error": "Ugyldig passord!",
"change-password-error-wrong-current": "Ditt gjeldende passord er ikke korrekt!",
+ "change-password-error-same-password": "Your new password matches your current password, please use a new password.",
"change-password-error-match": "Passordene må samsvare!",
"change-password-error-privileges": "Du har ikke rettigheter tli å endre dette passordet.",
"change-password-success": "Passordet ditt ble oppdatert!",
diff --git a/public/language/nb/users.json b/public/language/nb/users.json
index 173ea13547..1f03314930 100644
--- a/public/language/nb/users.json
+++ b/public/language/nb/users.json
@@ -1,5 +1,6 @@
{
"all-users": "Alle brukere",
+ "followed-users": "Followed Users",
"latest-users": "Seneste brukere",
"top-posters": "Flest innlegg",
"most-reputation": "Best omdømme",
diff --git a/public/language/nl/admin/development/info.json b/public/language/nl/admin/development/info.json
index 774d976cc8..b5ee1a8838 100644
--- a/public/language/nl/admin/development/info.json
+++ b/public/language/nl/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / run jobs",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,6 +19,7 @@
"registered": "Geregistreerd",
"sockets": "Sockets",
+ "connection-count": "Connection Count",
"guests": "Gasten",
"info": "Informatie"
diff --git a/public/language/nl/admin/extend/widgets.json b/public/language/nl/admin/extend/widgets.json
index 69e466af86..e35e6d79dc 100644
--- a/public/language/nl/admin/extend/widgets.json
+++ b/public/language/nl/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "Card",
"container.card-header": "Card Header",
"container.card-body": "Card Body",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "Alert",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
diff --git a/public/language/nl/admin/settings/reputation.json b/public/language/nl/admin/settings/reputation.json
index e4fff22620..479069e3a4 100644
--- a/public/language/nl/admin/settings/reputation.json
+++ b/public/language/nl/admin/settings/reputation.json
@@ -2,7 +2,14 @@
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
- "votes-are-public": "All Votes Are Public",
+ "upvote-visibility": "Up Vote visibility",
+ "upvote-visibility-all": "Everyone can see up votes",
+ "upvote-visibility-loggedin": "Only logged in users can see up votes",
+ "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes",
+ "downvote-visibility": "Down Vote visibility",
+ "downvote-visibility-all": "Everyone can see down votes",
+ "downvote-visibility-loggedin": "Only logged in users can see down votes",
+ "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes",
"thresholds": "Activity Thresholds",
"min-rep-upvote": "Minimum reputation to upvote posts",
"upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)",
diff --git a/public/language/nl/error.json b/public/language/nl/error.json
index 6da3349f1d..8a3f3d6bfc 100644
--- a/public/language/nl/error.json
+++ b/public/language/nl/error.json
@@ -153,6 +153,7 @@
"about-me-too-long": "Sorry, je beschrijving kan niet langer zijn dan %1 karakter(s).",
"cant-chat-with-yourself": "Het is niet mogelijk om met jezelf een chatgesprek te houden.",
"chat-restricted": "Deze gebruiker heeft beperkingen aan de chatfunctie opgelegd waardoor deze eerst iemand moet volgen voordat deze persoon een nieuwe chat mag initiëren.",
+ "chat-user-blocked": "You have been blocked by this user.",
"chat-disabled": "Chat systeem uitgeschakeld",
"too-many-messages": "Je hebt in korte tijd veel berichten verstuurd, als je even wacht mag je weer berichten sturen.",
"invalid-chat-message": "Ongeldig bericht",
diff --git a/public/language/nl/global.json b/public/language/nl/global.json
index 8da73852f3..6b4c511edc 100644
--- a/public/language/nl/global.json
+++ b/public/language/nl/global.json
@@ -11,7 +11,7 @@
"500.message": "Oeps! Ziet er naar uit dat iets fout ging!",
"400.title": "Foutief verzoek",
"400.message": "It looks like this link is malformed, please double-check and try again.
NodeBB ไม่สามารถเข้าถึงตัวจัดการแพคเกจดำเนินการติดตั้งเวอร์ชันล่าสุดได้หรือไม่?
NodeBB ไม่สามารถติดต่อตัวจัดการแพคเกจได้ในขณะนี้เราไม่แนะนำให้อัปเกรด
", "alert.incompatible": "เวอร์ชันของ NodeBB (v%1) จะถูกล้างเพื่อให้มีการอัพเกรดไป v%2 ของปลั๊กอินนี้ โปรดอัปเดต NodeBB ของคุณหากคุณต้องการติดตั้งปลั๊กอินเวอร์ชันใหม่นี้", "alert.possibly-incompatible": "
ไม่พบข้อมูลความเข้ากันได้
ปลั๊กอินนี้ไม่ได้ระบุเวอร์ชันเฉพาะสำหรับการติดตั้งที่ให้เวอร์ชัน NodeBB ของคุณ ไม่สามารถรับประกันความสามารถในการใช้งานร่วมกันได้เต็มรูปแบบและอาจทำให้ NodeBB ของคุณทำงานไม่ได้อย่างถูกต้องอีกต่อไป
ในกรณีที่ NodeBB ไม่สามารถบูตได้อย่างถูกต้อง:
$ ./nodebb reset plugin=\"%1\"ติดตั้งปลั๊กอินนี้เวอร์ชันล่าสุดต่อหรือไม่?
", - "alert.reorder": "Plugins Re-ordered", - "alert.reorder-success": "Please rebuild and restart your NodeBB to fully complete the process.", + "alert.reorder": "ปลั๊กอินถูกเรียงลำดับใหม่แล้ว", + "alert.reorder-success": "โปรดสร้างและเริ่มต้น NodeBB ใหม่เพื่อเสร็จสิ้นกระบวนการ", "license.title": "ข้อมูลลิขสิทธิ์ปลั๊กอิน", "license.intro": "ปลั๊กอิน %1ได้รับอนุญาตภายใต้ %2 โปรดอ่านและทำความเข้าใจข้อกำหนดสิทธิ์การใช้งานก่อนเปิดใช้งานปลั๊กอินนี้", diff --git a/public/language/th/admin/extend/rewards.json b/public/language/th/admin/extend/rewards.json index 2706a25f51..c334de8498 100644 --- a/public/language/th/admin/extend/rewards.json +++ b/public/language/th/admin/extend/rewards.json @@ -1,17 +1,17 @@ { "rewards": "Rewards", - "add-reward": "Add reward", - "condition-if-users": "If User's", - "condition-is": "Is:", - "condition-then": "Then:", - "max-claims": "Amount of times reward is claimable", - "zero-infinite": "Enter 0 for infinite", - "select-reward": "Select reward", - "delete": "Delete", - "enable": "Enable", - "disable": "Disable", + "add-reward": "เพิ่มรางวัล", + "condition-if-users": "ถ้า ... ของผู้ใช้งาน", + "condition-is": "มีค่า:", + "condition-then": "แล้ว:", + "max-claims": "จำนวนครั้งที่สามารถรับรางวัลได้", + "zero-infinite": "ใส่ 0 ถ้ารับได้ไม่จำกัด", + "select-reward": "เลือกรางวัล", + "delete": "ลบ", + "enable": "เปิดการใช้งาน", + "disable": "ปิดการใช้งาน", - "alert.delete-success": "Successfully deleted reward", - "alert.no-inputs-found": "Illegal reward - no inputs found!", - "alert.save-success": "Successfully saved rewards" + "alert.delete-success": "ลบรางวัลสำเร็จ", + "alert.no-inputs-found": "รางวัลไม่ถูกต้อง - ยังไม่ได้ใส่ข้อมูล!", + "alert.save-success": "บันทึกรางวัลสำเร็จ" } \ No newline at end of file diff --git a/public/language/th/admin/extend/widgets.json b/public/language/th/admin/extend/widgets.json index 41d352d04b..b9309eaaa1 100644 --- a/public/language/th/admin/extend/widgets.json +++ b/public/language/th/admin/extend/widgets.json @@ -12,6 +12,8 @@ "container.card": "การ์ด", "container.card-header": "ส่วนหัวของการ์ด", "container.card-body": "ข้างในการ์ด", + "container.title": "ชื่อ", + "container.body": "เนื้อหา", "container.alert": "แจ้งเตือน", "alert.confirm-delete": "คุณต้องการจะลบวิดเจ็ตนี้หรือไม่?", diff --git a/public/language/th/admin/manage/categories.json b/public/language/th/admin/manage/categories.json index 8a9ff471b0..6d114d5abb 100644 --- a/public/language/th/admin/manage/categories.json +++ b/public/language/th/admin/manage/categories.json @@ -1,31 +1,31 @@ { - "manage-categories": "Manage Categories", - "add-category": "Add category", - "jump-to": "Jump to...", - "settings": "Category Settings", - "edit-category": "Edit Category", - "privileges": "Privileges", - "back-to-categories": "Back to categories", - "name": "Category Name", - "description": "Category Description", - "bg-color": "Background Colour", - "text-color": "Text Colour", - "bg-image-size": "Background Image Size", - "custom-class": "Custom Class", - "num-recent-replies": "# of Recent Replies", - "ext-link": "External Link", - "subcategories-per-page": "Subcategories per page", + "manage-categories": "จัดการหมวดหมู่", + "add-category": "เพิ่มหมวดหมู่", + "jump-to": "ไปที่...", + "settings": "การตั้งค่าหมวดหมู่", + "edit-category": "แก้ไขหมวดหมู่", + "privileges": "สิทธิ์", + "back-to-categories": "กลับไปที่หมวดหมู่ทั้งหมด", + "name": "ชื่อหมวดหมู่", + "description": "คำอธิบายหมวดหมู่", + "bg-color": "สีพื้น", + "text-color": "สีข้อความ", + "bg-image-size": "ขนาดภาพพื้นหลัง", + "custom-class": "ปรับแต่งคลาส", + "num-recent-replies": "จำนวนตอบกลับล่าสุด", + "ext-link": "ลิงก์ภายนอก", + "subcategories-per-page": "จำนวนหมวดหมู่ย่อยต่อหน้า", "is-section": "Treat this category as a section", - "post-queue": "Post queue", + "post-queue": "คิวการโพสต์", "tag-whitelist": "Tag Whitelist", - "upload-image": "Upload Image", - "upload": "Upload", - "delete-image": "Remove", - "category-image": "Category Image", - "image-and-icon": "Image & Icon", + "upload-image": "อัปโหลดรูป", + "upload": "อัปโหลด", + "delete-image": "ลบ", + "category-image": "รูปภาพหมวดหมู่", + "image-and-icon": "ภาพ & ไอคอน", "parent-category": "Parent Category", "optional-parent-category": "(Optional) Parent Category", - "top-level": "Top Level", + "top-level": "ระดับบนสุด", "parent-category-none": "(None)", "copy-parent": "Copy Parent", "copy-settings": "Copy Settings From", @@ -33,8 +33,8 @@ "clone-children": "Clone Children Categories And Settings", "purge": "Purge Category", - "enable": "Enable", - "disable": "Disable", + "enable": "เปิดการใช้งาน", + "disable": "ปิดการใช้งาน", "edit": "Edit", "analytics": "Analytics", diff --git a/public/language/th/admin/manage/users.json b/public/language/th/admin/manage/users.json index 482fc0148f..d876b10871 100644 --- a/public/language/th/admin/manage/users.json +++ b/public/language/th/admin/manage/users.json @@ -2,8 +2,8 @@ "manage-users": "Manage Users", "users": "ผู้ใช้", "edit": "จัดการ", - "make-admin": "ทำให้เป็นแอดมิน", - "remove-admin": "ยกเลิกการเป็นแอดมิน", + "make-admin": "ทำให้เป็นผู้ดูแลระบบ", + "remove-admin": "ยกเลิกการเป็นผู้ดูแลระบบ", "change-email": "เปลี่ยนอีเมล", "new-email": "เพิ่มอีเมลใหม่", "validate-email": "ยืนยันอีเมล", @@ -90,25 +90,25 @@ "alerts.flag-reset-success": "ยกเลิกรายงานแล้ว!", "alerts.no-remove-yourself-admin": "คุณไม่สามารถที่จะยกเลิกตัวเองจากการเป็นผู้ดูแลระบบ", "alerts.make-admin-success": "ขณะนี้ผู้ใช้เป็นผู้ดูแลระบบแล้ว", - "alerts.confirm-remove-admin": "คุณต้องการลบผู้ดูแลระบบคนนี้หรือไม่?", - "alerts.remove-admin-success": "ผู้ใช้ไม่ได้เป็นผู้ดูแลอีกต่อไป", - "alerts.make-global-mod-success": "ขณะนี้ผู้ใช้เป็นผู้ดูแลระดับโลกแล้ว", - "alerts.confirm-remove-global-mod": "คุณต้องการลบผู้ดูแลทั่วโลกนี้หรือไม่?", - "alerts.remove-global-mod-success": "ผู้ใช้ไม่เป็นผู้ดูแลระดับโลกอีกแล้ว", - "alerts.make-moderator-success": "ขณะนี้ผู้ใช้เป็นผู้ดูแล", - "alerts.confirm-remove-moderator": "คุณต้องการนำผู้ดูแลนี้ออกหรือไม่?", - "alerts.remove-moderator-success": "ผู้ใช้ไม่ได้เป็นผู้ดูแลอีกต่อไป", + "alerts.confirm-remove-admin": "คุณต้องการปลดผู้ดูแลระบบคนนี้หรือไม่?", + "alerts.remove-admin-success": "ผู้ใช้ไม่ได้เป็นผู้ดูแลระบบอีกต่อไป", + "alerts.make-global-mod-success": "ขณะนี้ผู้ใช้เป็นผู้ดูแลบอร์ดรวมแล้ว", + "alerts.confirm-remove-global-mod": "คุณต้องการปลดผู้ดูแลบอร์ดรวมนี้หรือไม่?", + "alerts.remove-global-mod-success": "ผู้ใช้ไม่เป็นผู้ดูแลบอร์ดรวมอีกแล้ว", + "alerts.make-moderator-success": "ขณะนี้ผู้ใช้เป็นผู้ดูแลบอร์ดแล้ว", + "alerts.confirm-remove-moderator": "คุณต้องการปลดผู้ดูแลบอร์ดนี้ออกหรือไม่?", + "alerts.remove-moderator-success": "ผู้ใช้ไม่ได้เป็นผู้ดูแลบอร์ดอีกต่อไป", "alerts.confirm-validate-email": "คุณต้องการที่ยืนยันอีเมลของผู้ใช้เหล่านี้หรือไม่?", "alerts.confirm-force-password-reset": "คุณต้องการให้ผู้ใช้เหล่านี้ถูกรีเซ็ตรหัสผ่านและออกจากระบบหรือไม่?", "alerts.validate-email-success": "อีเมลที่ได้รับการยืนยัน", "alerts.validate-force-password-reset-success": "รหัสผ่านของผู้ใช้งานถูกรีเซ็ต และการเข้าระบบถูกถอดออก", "alerts.password-reset-confirm": "คุณต้องการที่จะส่งอีเมลการล้างค่ารหัสผ่านให้กับผู้ใช้เหล่านี้หรือไม่?", "alerts.password-reset-email-sent": "อีเมลรีเซ็ตรหัสผ่านถูกส่งแล้ว", - "alerts.confirm-delete": "Warning!Do you really want to delete user(s)?
This action is not reversible! Only the user account will be deleted, their posts and topics will remain.
", - "alerts.delete-success": "ผู้ใช้งานโดนลบ!", - "alerts.confirm-delete-content": "Warning!Do you really want to delete these user(s) content?
This action is not reversible! The users' accounts will remain, but their posts and topics will be deleted.
", - "alerts.delete-content-success": "User(s) Content Deleted!", - "alerts.confirm-purge": "Warning!Do you really want to delete user(s) and their content?
This action is not reversible! All user data and content will be erased!
", + "alerts.confirm-delete": "คำเตือน!คุณต้องการลบ ผู้ใช้งานหรือไม่?
คำสั่งนี้ไม่สามารถย้อนกลับได้! เฉพาะบัญชีผู้ใช้งานเท่านั้นที่จะถูกลบ โพสต์และกระทู้ของผู้ใช้งานจะยังคงอยู่
", + "alerts.delete-success": "ผู้ใช้งานถูกลบแล้ว!", + "alerts.confirm-delete-content": "คำเตือน!คุณต้องการลบเนื้อหาของผู้ใช้งานหรือไม่?
คำสั่งนี้ไม่สามารถย้อนกลับได้! บัญชีผู้ใช้งานจะยังคงอยู่ แต่โพสต์และกระทู้ของผู้ใช้งานจะถูกลบ
", + "alerts.delete-content-success": "เนื้อหาของผู้ใช้งานถูกลบแล้ว!", + "alerts.confirm-purge": "คำเตือน!คุณต้องการลบผู้ใช้งานและเนื้อหาหรือไม่?
คำสั่งนี้ไม่สามารถย้อนกลับได้! ข้อมูลผู้ใช้งานและเนื้อหาจะถูกลบทั้งหมด!
", "alerts.create": "สร้างผู้ใช้งาน", "alerts.button-create": "สร้าง", "alerts.button-cancel": "ยกเลิก", @@ -119,8 +119,8 @@ "alerts.prompt-email": "อีเมล: ", "alerts.email-sent-to": "อีเมลคำเชิญถูกส่งไปที่ %1", - "alerts.x-users-found": "%1 user(s) found, (%2 seconds)", - "alerts.select-a-single-user-to-change-email": "Select a single user to change email", + "alerts.x-users-found": "พบผู้ใช้งาน %1 ราย (ใช้เวลา %2 วินาที)", + "alerts.select-a-single-user-to-change-email": "เลือกผู้ใช้งานที่จะเปลี่ยนอีเมล", "export": "ส่งออกไฟล์", "export-users-fields-title": "เลือกฟิลด์สำหรับ CSV", "export-field-email": "อีเมล", @@ -143,9 +143,9 @@ "export-field-signature": "ลายเซ็น", "export-field-aboutme": "เกี่ยวกับฉัน", - "export-users-started": "Exporting users as csv, this might take a while. You will receive a notification when it is complete.", - "export-users-completed": "Users exported as csv, click here to download.", - "email": "Email", - "password": "Password", - "manage": "Manage" + "export-users-started": "กำลังส่งออกข้อมูลผู้ใช้งานเป็น CSV ซึ่งอาจใช้เวลาสักระยะ คุณจะได้รับการแจ้งเตือนเมื่อเสร็จแล้ว", + "export-users-completed": "ข้อมูลผู้ใช้งานถูกส่งออกเป็น CSV แล้ว คลิกที่นี่เพื่อดาวน์โหลด", + "email": "อีเมล", + "password": "รหัสผ่าน", + "manage": "จัดการ" } \ No newline at end of file diff --git a/public/language/th/admin/settings/homepage.json b/public/language/th/admin/settings/homepage.json index 48f9ebe23a..5a0b8eda6e 100644 --- a/public/language/th/admin/settings/homepage.json +++ b/public/language/th/admin/settings/homepage.json @@ -4,5 +4,5 @@ "home-page-route": "เส้นทางหน้าแรก", "custom-route": "เส้นทางที่กำหนดเอง", "allow-user-home-pages": "อนุญาตหน้าแรกของผู้ใช้", - "home-page-title": "Title ของหน้าแรก (ค่าเริ่มต้น \"Home\")" + "home-page-title": "ชื่อของหน้าแรก (ค่าเริ่มต้นคือ \"Home\")" } \ No newline at end of file diff --git a/public/language/th/admin/settings/reputation.json b/public/language/th/admin/settings/reputation.json index e4fff22620..cfa0047e73 100644 --- a/public/language/th/admin/settings/reputation.json +++ b/public/language/th/admin/settings/reputation.json @@ -1,37 +1,44 @@ { "reputation": "Reputation Settings", - "disable": "Disable Reputation System", - "disable-down-voting": "Disable Down Voting", - "votes-are-public": "All Votes Are Public", - "thresholds": "Activity Thresholds", - "min-rep-upvote": "Minimum reputation to upvote posts", - "upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)", - "upvotes-per-user-per-day": "Upvotes per user per day (set to 0 for unlimited upvotes)", - "min-rep-downvote": "Minimum reputation to downvote posts", - "downvotes-per-day": "Downvotes per day (set to 0 for unlimited downvotes)", - "downvotes-per-user-per-day": "Downvotes per user per day (set to 0 for unlimited downvotes)", - "min-rep-chat": "Minimum reputation to send chat messages", - "min-rep-post-links": "Minimum reputation to post links", - "min-rep-flag": "Minimum reputation to flag posts", - "min-rep-website": "Minimum reputation to add \"Website\" to user profile", - "min-rep-aboutme": "Minimum reputation to add \"About me\" to user profile", - "min-rep-signature": "Minimum reputation to add \"Signature\" to user profile", - "min-rep-profile-picture": "Minimum reputation to add \"Profile Picture\" to user profile", - "min-rep-cover-picture": "Minimum reputation to add \"Cover Picture\" to user profile", + "disable": "ปิดการใช้งานระบบชื่อเสียง", + "disable-down-voting": "ปิดการใช้งานการโหวดลง", + "upvote-visibility": "การมองเห็นผลโหวตขึ้น", + "upvote-visibility-all": "ทุกคนสามารถเห็นผลโหวตขึ้น", + "upvote-visibility-loggedin": "เฉพาะผู้ที่เข้าระบบแล้วถึงเห็นผลโหวตขึ้น", + "upvote-visibility-privileged": "เฉพาะผู้ที่ได้สิทธิ์เช่นผู้ดูแลระบบหรือผู้ควบคุมถึงเห็นผลโหวตขึ้น", + "downvote-visibility": "การมองเห็นผลโหวตลง", + "downvote-visibility-all": "ทุกคนสามารถเห็นผลโหวตลง", + "downvote-visibility-loggedin": "เฉพาะผู้ที่เข้าระบบแล้วถึงเห็นผลโหวตลง", + "downvote-visibility-privileged": "เฉพาะผู้ที่ได้สิทธิ์เช่นผู้ดูแลระบบหรือผู้ควบคุมถึงเห็นผลโหวตลง", + "thresholds": "เกณฑ์สำหรับการกระทำ", + "min-rep-upvote": "ชื่อเสียงขั้นต่ำที่สามารถโหวดโพสต์ขึ้นได้", + "upvotes-per-day": "จำนวนโหวดขึ้นต่อวัน (ตั้งค่าเป็น 0 ถ้าให้โหวดขึ้นได้ไม่จำกัดจำนวน)", + "upvotes-per-user-per-day": "จำนวนโหวดขึ้นต่อผู้ใช้งานต่อวัน (ตั้งค่าเป็น 0 ถ้าให้โหวดขึ้นได้ไม่จำกัดจำนวน)", + "min-rep-downvote": "ชื่อเสียงขั้นต่ำที่สามารถโหวดโพสต์ลงได้", + "downvotes-per-day": "จำนวนโหวดลงต่อวัน (ตั้งค่าเป็น 0 ถ้าให้โหวดลงได้ไม่จำกัดจำนวน)", + "downvotes-per-user-per-day": "จำนวนโหวดลงต่อผู้ใช้งานต่อวัน (ตั้งค่าเป็น 0 ถ้าให้โหวดลงได้ไม่จำกัดจำนวน)", + "min-rep-chat": "ชื่อเสียงขึ้นต่ำที่สามารถส่งข้อความแชทได้", + "min-rep-post-links": "ชื่อเสียงขึ้นต่ำที่สามารถโพสต์ลิงก์ได้", + "min-rep-flag": "ชื่อเสียงขึ้นต่ำที่สามารถรายงานโพสต์ได้", + "min-rep-website": "ชื่อเสียงขึ้นต่ำที่สามารถเพิ่ม เว็บไซต์ ลงในหน้าโปรไฟล์ผู้ใช้", + "min-rep-aboutme": "ชื่อเสียงขึ้นต่ำที่สามารถเพิ่ม ข้อมูลเกี่ยวกับฉัน ลงในหน้าโปรไฟล์ผู้ใช้", + "min-rep-signature": "ชื่อเสียงขึ้นต่ำที่สามารถเพิ่ม ลายเซ็น ลงในหน้าโปรไฟล์ผู้ใช้", + "min-rep-profile-picture": "ชื่อเสียงขึ้นต่ำที่สามารถเพิ่ม รูปภาพโปรไฟล์ ลงในหน้าโปรไฟล์ผู้ใช้", + "min-rep-cover-picture": "ชื่อเสียงขึ้นต่ำที่สามารถเพิ่ม รูปภาพปก ลงในหน้าโปรไฟล์ผู้ใช้", - "flags": "Flag Settings", - "flags.limit-per-target": "Maximum number of times something can be flagged", - "flags.limit-per-target-placeholder": "Default: 0", - "flags.limit-per-target-help": "When a post or user is flagged multiple times, each additional flag is considered a "report" and added to the original flag. Set this option to a number other than zero to limit the number of reports an item can receive.", - "flags.limit-post-flags-per-day": "Maximum number of times a user can flag posts in a day", - "flags.limit-post-flags-per-day-help": "Set to 0 to disable, (default: 10)", - "flags.limit-user-flags-per-day": "Maximum number of times a user can flag users in a day", - "flags.limit-user-flags-per-day-help": "Set to 0 to disable, (default: 10)", - "flags.auto-flag-on-downvote-threshold": "Number of downvotes to auto flag posts", - "flags.auto-flag-on-downvote-threshold-help": "Set to 0 to disable, (default: 0)", - "flags.auto-resolve-on-ban": "Automatically resolve all of a user's tickets when they are banned", - "flags.action-on-resolve": "Do the following when a flag is resolved", - "flags.action-on-reject": "Do the following when a flag is rejected", - "flags.action.nothing": "Do nothing", - "flags.action.rescind": "Rescind the notification sent to moderators/administrators" + "flags": "การตั้งค่าการรายงาน", + "flags.limit-per-target": "จำนวนครั้งสูงสุดที่บางอย่างสามารถถูกรายงานได้", + "flags.limit-per-target-placeholder": "ค่าเริ่มต้น: 0", + "flags.limit-per-target-help": "เมื่อโพสต์หรือผู้ใช้งานถูกรายงานหลายครั้ง ทุกการรายงานเพิ่มเติมจะถูกนับเป็น "จำนวนรายงาน" ตั้งค่าตัวเลือกนี้เป็นตัวเลขอื่นนอกเหนือจาก 0 เพื่อจำกัดจำนวนรายงานที่สามารถได้รับ", + "flags.limit-post-flags-per-day": "จำนวนครั้งสูงสุดที่ผู้ใช้งานหนึ่งสามารถรายงานโพสต์ได้ใน 1 วัน", + "flags.limit-post-flags-per-day-help": "ตั้งค่าเป็น 0 ถ้าสามารถทำได้ไม่จำกัด (ค่าเริ่มต้น: 10)", + "flags.limit-user-flags-per-day": "จำนวนครั้งสูงสุดที่ผู้ใช้งานหนึ่งสามารถรายงานผู้ใช้งานอื่นได้ใน 1 วัน", + "flags.limit-user-flags-per-day-help": "ตั้งค่าเป็น 0 ถ้าสามารถทำได้ไม่จำกัด (ค่าเริ่มต้น: 10)", + "flags.auto-flag-on-downvote-threshold": "จำนวนการโหวดลงที่ทำให้ระบบรายงานโพสต์โดยอัตโนมัติทำงาน", + "flags.auto-flag-on-downvote-threshold-help": "ตั้งค่าเป็น 0 ถ้าสามารถทำได้ไม่จำกัด (ค่าเริ่มต้น: 10)", + "flags.auto-resolve-on-ban": "ถือว่ารายงานทั้งหมดของผู้ใช้งานถูกจัดการแล้วเมื่อผู้ใช้งานนั้นโดนแบน", + "flags.action-on-resolve": "เมื่อการรายงานถูกจัดการแล้ว ให้ทำดังต่อไปนี้", + "flags.action-on-reject": "เมื่อการรายงานถูกปฏิเสธ ให้ทำดังต่อไปนี้", + "flags.action.nothing": "ไม่ทำอะไร", + "flags.action.rescind": "ยกเลิกการแจ้งเตือน ผู้ดูแลบอร์ด และผู้ดูแลระบบ" } \ No newline at end of file diff --git a/public/language/th/admin/settings/sockets.json b/public/language/th/admin/settings/sockets.json index d04ee42fcf..0ad873891a 100644 --- a/public/language/th/admin/settings/sockets.json +++ b/public/language/th/admin/settings/sockets.json @@ -1,6 +1,6 @@ { "reconnection": "Reconnection Settings", - "max-attempts": "Max Reconnection Attempts", - "default-placeholder": "Default: %1", - "delay": "Reconnection Delay" + "max-attempts": "จำนวนการเชื่อมต่อใหม่สูงสุด", + "default-placeholder": "ค่าเริ่มต้น: %1", + "delay": "เวลาที่รอก่อนเชื่อมต่อใหม่" } \ No newline at end of file diff --git a/public/language/th/admin/settings/tags.json b/public/language/th/admin/settings/tags.json index c1cdb2b644..34b0620615 100644 --- a/public/language/th/admin/settings/tags.json +++ b/public/language/th/admin/settings/tags.json @@ -1,13 +1,13 @@ { "tag": "Tag Settings", - "link-to-manage": "Manage Tags", - "system-tags": "System Tags", - "system-tags-help": "Only privileged users will be able to use these tags.", - "tags-per-topic": "Tags per topic", - "min-per-topic": "Minimum Tags per Topic", - "max-per-topic": "Maximum Tags per Topic", - "min-length": "Minimum Tag Length", - "max-length": "Maximum Tag Length", - "related-topics": "Related Topics", - "max-related-topics": "Maximum related topics to display (if supported by theme)" + "link-to-manage": "จัดการแท็ก", + "system-tags": "แท็กของระบบ", + "system-tags-help": "เฉพาะผู้ที่มีสิทธิ์พิเศษถึงสามารถใช้แท็กเหล่านี้ได้", + "tags-per-topic": "จำนวนแท็กของกระทู้", + "min-per-topic": "จำนวนแท็กของกระทู้ขั้นต่ำ", + "max-per-topic": "จำนวนแท็กของกระทู้สูงสุด", + "min-length": "ความยาวแท็กขั้นต่ำ", + "max-length": "ความยาวแท็กสูงสุด", + "related-topics": "กระทู้ที่เกี่ยวข้อง", + "max-related-topics": "แสดงจำนวนกระทู้ที่เกี่ยวข้องมากสุด (ถ้าธีมรองรับ)" } \ No newline at end of file diff --git a/public/language/th/error.json b/public/language/th/error.json index b9ade6bfae..5b7a298cfc 100644 --- a/public/language/th/error.json +++ b/public/language/th/error.json @@ -153,6 +153,7 @@ "about-me-too-long": "ขออภัย \"เกี่ยวกับฉัน\" ของคุณไม่สามารถยาวเกิน %1 ตัวอักษร(s) ได้", "cant-chat-with-yourself": "คุณไม่สามารถแชทกับตัวเองได้นะ!", "chat-restricted": "ผู้ใช้นี้ถูกจำกัดข้อความแชท เขาต้องติดตามคุณก่อน คุณจึงจะสามารถแชทกับเขาได้", + "chat-user-blocked": "คุณถูกบล็อกโดยผู้ใช้คนนี้", "chat-disabled": "ระบบแชทถูกปิดใช้งาน", "too-many-messages": "คุณได้ส่งข้อความมากเกินไป กรุณารอสักครู่", "invalid-chat-message": "ข้อความแชทไม่ถูกต้อง", diff --git a/public/language/th/global.json b/public/language/th/global.json index f5aac99b63..e594121bd5 100644 --- a/public/language/th/global.json +++ b/public/language/th/global.json @@ -134,7 +134,7 @@ "unsaved-changes": "การเปลี่ยนแปลงของคุณจะไม่ได้รับการบันทึก คุณแน่ใจหรือว่าต้องการออกจากที่นี่?", "reconnecting-message": "เหมือนกับว่าการเชื่อมต่อของคุณเพื่อไปยัง %1 นั้นขาดหาย กรุณารอสักครู่ เรากำลังพยายามเชื่อมต่อใหม่", "play": "เล่น", - "cookies.message": "เว็บไวต์นี้ใช้คุกกี้เพื่อที่จะทำให้แน่ใจว่า คุณได้รับประสบการณ์ที่เยี่ยมยอดที่สุดในการเข้าใช้เว็บไซต์ของเรา", + "cookies.message": "เว็บไซต์นี้ใช้คุกกี้เพื่อที่จะทำให้แน่ใจว่า คุณได้รับประสบการณ์ที่เยี่ยมยอดที่สุดในการเข้าใช้เว็บไซต์ของเรา", "cookies.accept": "เข้าใจแล้ว!!!", "cookies.learn-more": "เรียนรู้เพิ่มเติม", "edited": "ถูกแก้ไขแล้ว", diff --git a/public/language/th/modules.json b/public/language/th/modules.json index 2a3ae08a34..bbabe4b7c7 100644 --- a/public/language/th/modules.json +++ b/public/language/th/modules.json @@ -1,12 +1,13 @@ { "chat.room-id": "ห้อง %1", "chat.chatting-with": "คุยกับ", - "chat.placeholder": "พิมพ์ข้อความแชทที่นี้ ลากและปล่อยรูปภาพ กดปุ่ม enter เพื่อส่ง", - "chat.placeholder.mobile": "พิมพ์ข้อความแชทที่นี่", + "chat.placeholder": "พิมพ์ข้อความแชทที่นี่ หรือลากรูปภาพมาปล่อย", + "chat.placeholder.mobile": "พิมพ์ข้อความแชท", + "chat.placeholder.message-room": "ข้อความ %1", "chat.scroll-up-alert": "ไปที่ข้อความล่าสุด", - "chat.usernames-and-x-others": "%1, %2 และผู้อื่น", + "chat.usernames-and-x-others": "%1 และอีก %2 คน", "chat.chat-with-usernames": "แชทกับ %1", - "chat.chat-with-usernames-and-x-others": "แชทกับ %1, %2 และผู้อื่น", + "chat.chat-with-usernames-and-x-others": "แชทกับ %1 และอีก %2 คน", "chat.send": "ส่ง", "chat.no-active": "คุณไม่มีแชทที่คุยอยู่", "chat.user-typing-1": "%1 กำลังพิมพ์ ...", diff --git a/public/language/th/notifications.json b/public/language/th/notifications.json index b367a012fb..4c0996ea8d 100644 --- a/public/language/th/notifications.json +++ b/public/language/th/notifications.json @@ -52,10 +52,10 @@ "user-posted-to-multiple": "%1, %2 และอีก %3 คน ได้โพสต์คำตอบไปยัง %4", "user-posted-topic": "%1ได้โพสต์กระทู้ใหม่ : %2", "user-edited-post": "%1 ได้แก้ไขโพสต์ใน %2", - "user-posted-topic-with-tag": "%1 ได้โพสต์กระทู้ใหม่ที่ติดแท็ก %2", - "user-posted-topic-with-tag-dual": "%1 ได้โพสต์กระทู้ใหม่ที่ติดแท็ก %2 และ %3", - "user-posted-topic-with-tag-triple": "%1 ได้โพสต์กระทู้ใหม่ที่ติดแท็ก %2, %3 และ %4", - "user-posted-topic-with-tag-multiple": "%1 ได้โพสต์กระทู้ใหม่ที่ติดแท็ก %2", + "user-posted-topic-with-tag": "%1 ได้โพสต์ %2 (ติดแท็ก %3)", + "user-posted-topic-with-tag-dual": "%1 ได้โพสต์ %2 (ติดแท็ก %3 และ %4)", + "user-posted-topic-with-tag-triple": "%1 ได้โพสต์ %2 (ติดแท็ก %3, %4 และ %5)", + "user-posted-topic-with-tag-multiple": "%1 ได้โพสต์ %2 (ติดแท็ก %3)", "user-posted-topic-in-category": "%1 ได้โพสต์กระทู้ใหม่ใน %2", "user-started-following-you": "%1 ได้เริ่มติดตามคุณ", "user-started-following-you-dual": "%1และ%2ได้เริ่มติดตามคุณ", @@ -75,6 +75,7 @@ "email-confirmed": "อีเมลได้รับการยืนยันแล้ว", "email-confirmed-message": "ขอบคุณที่ยืนยันอีเมลของคุณ บัญชีของคุณสามารถใช้งานได้แล้ว", "email-confirm-error-message": "มีปัญหาในการยืนยันอีเมลของคุณ รหัสอาจไม่ถูกต้องหรือหมดอายุแล้ว", + "email-confirm-error-message-already-validated": "อีเมลของคุณได้รับการยืนยันไปแล้ว", "email-confirm-sent": "ส่งอีเมลยืนยันแล้ว", "none": "ไม่มี", "notification-only": "แจ้งเตือนอย่างเดียว", diff --git a/public/language/th/post-queue.json b/public/language/th/post-queue.json index 117c166ffa..21320ff288 100644 --- a/public/language/th/post-queue.json +++ b/public/language/th/post-queue.json @@ -26,7 +26,7 @@ "notify-user": "แจ้งเตือนผู้ใช้งาน", "confirm-reject": "คุณต้องการปฏิเสธโพสต์นี้หรือไม่?", "confirm-remove": "คุณต้องการลบโพสต์นี้หรือไม่??", - "bulk-actions": "คำสั่งทีละมากๆ", + "bulk-actions": "จัดการทีละมากๆ", "accept-all": "ยอมรับทั้งหมด", "accept-selected": "ยอมรับที่เลือก", "reject-all": "ปฏิเสธทั้งหมด", @@ -38,5 +38,6 @@ "remove-selected": "ลบที่เลือก", "remove-selected-confirm": "คุณต้องการลบโพสต์ที่เลือกจำนวน %1 โพสต์หรือไม่?", "bulk-accept-success": "%1 โพสต์ถูกยอมรับ", - "bulk-reject-success": "%1 โพสต์ถูกปฏิเสธ" + "bulk-reject-success": "%1 โพสต์ถูกปฏิเสธ", + "links-in-this-post": "ลิงก์ในโพสต์นี้" } \ No newline at end of file diff --git a/public/language/th/themes/harmony.json b/public/language/th/themes/harmony.json index ad25121e17..94bb567d0a 100644 --- a/public/language/th/themes/harmony.json +++ b/public/language/th/themes/harmony.json @@ -7,7 +7,8 @@ "login-register-to-search": "เข้าสู่ระบบหรือสมัครบัญชีเพื่อค้นหา", "settings.title": "การตั้งค่าธีม", "settings.enableQuickReply": "เปิดใช้งานการตอบกลับทันที", - "settings.enableBreadcrumbs": "เปิดใช้งานแถบนำทาง", + "settings.enableBreadcrumbs": "แสดงแถบนำทางในหน้าหมวดหมู่และกระทู้", + "settings.enableBreadcrumbs.why": "ในหน้าส่วนใหญ่จะเห็นแถบนำทางเพื่อช่วยให้ไปที่หน้าต่างๆได้สะดวก การออกแบบหน้าหมวดหมู่และกระทู้มีวิธีกลับไปยังหน้าหลักอยู่แล้ว จึงสามารถปิดการแสดงแถบนำทางเพื่อไม่ให้หน้าดูรกเกินไป", "settings.centerHeaderElements": "ทำให้ข้อความส่วนหัวอยู่ตรงกลาง", "settings.mobileTopicTeasers": "แสดงตัวอย่างเนื้อหากระทู้บนมือถือ", "settings.stickyToolbar": "แถบเครื่องมือแบบ sticky", diff --git a/public/language/th/user.json b/public/language/th/user.json index e68b9dc4f0..710c660180 100644 --- a/public/language/th/user.json +++ b/public/language/th/user.json @@ -78,6 +78,7 @@ "change-password": "เปลี่ยนรหัสผ่าน", "change-password-error": "รหัสผ่านใช้ไม่ได้", "change-password-error-wrong-current": "รหัสผ่านปัจจุบันไม่ถูกต้อง", + "change-password-error-same-password": "รหัสผ่านของคุณเหมือนกับรหัสผ่านปัจจุบัน โปรดเลือกรหัสผ่านใหม่", "change-password-error-match": "รหัสผ่านต้องเหมือนกัน", "change-password-error-privileges": "คุณไม่มีสิทธิเปลี่ยนรหัสผ่านนี้", "change-password-success": "รหัสผ่านของคุณได้รับการแก้ไขแล้ว", @@ -170,7 +171,7 @@ "info.reported-by": "ถูกรายงานโดย:", "info.no-flags": "ไม่พบโพสต์ที่ถูกรายงาน", "info.ban-history": "ประวัติแบนล่าสุด", - "info.no-ban-history": "ผู้ใช้นี้ถูกแบนแล้ว", + "info.no-ban-history": "ผู้ใช้รายนี้ยังไม่เคยถูกแบน", "info.banned-until": "แบนจนกว่า %1", "info.banned-expiry": "หมดอายุ", "info.ban-expired": "การแบนหมดอายุ", diff --git a/public/language/th/users.json b/public/language/th/users.json index e2cb57f4ea..91872ee541 100644 --- a/public/language/th/users.json +++ b/public/language/th/users.json @@ -1,5 +1,6 @@ { "all-users": "ผู้ใช้งานทั้งหมด", + "followed-users": "ผู้ใช้งานที่ติดตาม", "latest-users": "ผู้ใช้งานล่าสุด", "top-posters": "ผู้ที่โพสต์มากที่สุด", "most-reputation": "ผู้ที่มีชื่อเสียงมากที่สุด", diff --git a/public/language/tr/admin/development/info.json b/public/language/tr/admin/development/info.json index 4aa20f221e..d1bccbc674 100644 --- a/public/language/tr/admin/development/info.json +++ b/public/language/tr/admin/development/info.json @@ -3,7 +3,7 @@ "ip": "IP %1", "nodes-responded": "%2ms içinde %1 düğüm yanıt verdi!", "host": "sunucu", - "primary": "ana sunucu / işlemleri gerçekleştir", + "primary": "primary / jobs", "pid": "pid", "nodejs": "nodejs", "online": "çevrimiçi", @@ -19,6 +19,7 @@ "registered": "Kayıtlı", "sockets": "Soketler", + "connection-count": "Connection Count", "guests": "Ziyaretçiler", "info": "Bilgi" diff --git a/public/language/tr/admin/extend/widgets.json b/public/language/tr/admin/extend/widgets.json index 41e26ab4ee..ee28840a68 100644 --- a/public/language/tr/admin/extend/widgets.json +++ b/public/language/tr/admin/extend/widgets.json @@ -12,6 +12,8 @@ "container.card": "Kart", "container.card-header": "Kart Başlığı", "container.card-body": "Kart İçeriği", + "container.title": "Title", + "container.body": "Body", "container.alert": "Uyarı", "alert.confirm-delete": "Bu bileşeni silmek istediğinizden emin misiniz?", diff --git a/public/language/tr/admin/settings/reputation.json b/public/language/tr/admin/settings/reputation.json index 850e692e36..9d14776e72 100644 --- a/public/language/tr/admin/settings/reputation.json +++ b/public/language/tr/admin/settings/reputation.json @@ -2,7 +2,14 @@ "reputation": "İtibar Ayarları", "disable": "İtibar Sistemini Devre Dışı Bırak", "disable-down-voting": "Eksi Oyu Devre Dışı Bırak", - "votes-are-public": "Tüm Oylar Herkese Açık", + "upvote-visibility": "Up Vote visibility", + "upvote-visibility-all": "Everyone can see up votes", + "upvote-visibility-loggedin": "Only logged in users can see up votes", + "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes", + "downvote-visibility": "Down Vote visibility", + "downvote-visibility-all": "Everyone can see down votes", + "downvote-visibility-loggedin": "Only logged in users can see down votes", + "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes", "thresholds": "Etkinlik Eşikleri", "min-rep-upvote": "Artılanan iletiler için gereken minimum itibar", "upvotes-per-day": "Artı oy günlük limiti (sınırsız artı oy için 0 giriniz)", diff --git a/public/language/tr/error.json b/public/language/tr/error.json index 5001e2807f..f044301fee 100644 --- a/public/language/tr/error.json +++ b/public/language/tr/error.json @@ -153,6 +153,7 @@ "about-me-too-long": "Hakkınızda yazdıklarınız en fazla %1 karakter olabilir.", "cant-chat-with-yourself": "Kendinizle sohbet edemezsiniz!", "chat-restricted": "Bu kullanıcı sohbet ayarlarını kısıtlamış. Bu kişiye mesaj gönderebilmeniz için sizi takip etmeleri gerekiyor", + "chat-user-blocked": "You have been blocked by this user.", "chat-disabled": "Sohbet özelliği kapalı", "too-many-messages": "Ardı ardına çok fazla mesaj yolladınız, lütfen biraz bekleyiniz.", "invalid-chat-message": "Geçersiz sohbet mesajı", diff --git a/public/language/tr/modules.json b/public/language/tr/modules.json index 61aa0841b7..53ef99d661 100644 --- a/public/language/tr/modules.json +++ b/public/language/tr/modules.json @@ -1,8 +1,9 @@ { "chat.room-id": "Oda %1", "chat.chatting-with": "Sohbet", - "chat.placeholder": "Mesajı yazın veya resim sürükleyip bırakın", - "chat.placeholder.mobile": "Sohbet içeriğini buraya giriniz", + "chat.placeholder": "Type chat message here, drag & drop images", + "chat.placeholder.mobile": "Type chat message", + "chat.placeholder.message-room": "Message #%1", "chat.scroll-up-alert": "En son yazılan mesaja geri dönün", "chat.usernames-and-x-others": "%1 & %2 başka kişi", "chat.chat-with-usernames": "%1 ile sohbet edin", diff --git a/public/language/tr/notifications.json b/public/language/tr/notifications.json index 4b432e2d32..0ab796c447 100644 --- a/public/language/tr/notifications.json +++ b/public/language/tr/notifications.json @@ -52,10 +52,10 @@ "user-posted-to-multiple": "%1, %2 ve %3 diğer kullanıcı şu konuya ileti yazdılar: %4", "user-posted-topic": "%1 şu yeni konuyu oluşturdu: %2", "user-edited-post": "%1 şu konudaki bir iletiyi değiştirdi: %2", - "user-posted-topic-with-tag": "%1 şu etiketi kullanarak yeni bir konu oluşturdu: %2", - "user-posted-topic-with-tag-dual": "%1 şu etiketleri kullanarak yeni bir konu oluşturdu: %2 ve %3", - "user-posted-topic-with-tag-triple": "%1 şu etiketleri kullanarak yeni bir konu oluşturdu: %2, %3 ve %4", - "user-posted-topic-with-tag-multiple": "%1 şu etiketleri kullanarak yeni bir konu oluşturdu: %2", + "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)", + "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)", + "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)", + "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)", "user-posted-topic-in-category": "%1 şu kategoride yeni bir başlık oluşturdu: %2", "user-started-following-you": "%1 sizi takip etmeye başladı", "user-started-following-you-dual": "%1 ve %2 sizi takip etmeye başladı.", @@ -75,6 +75,7 @@ "email-confirmed": "E-posta onaylandı", "email-confirmed-message": "E-postanızı onayladığınız için teşekkürler. Hesabınız tamamen aktif edildi.", "email-confirm-error-message": "E-posta adresinizi onaylarken bir hata oluştu. Kodunuz geçersiz ya da eski olabilir.", + "email-confirm-error-message-already-validated": "Your email address was already validated.", "email-confirm-sent": "Onay e-postası gönderildi.", "none": "Hiçbiri", "notification-only": "Sadece Bildirim", diff --git a/public/language/tr/post-queue.json b/public/language/tr/post-queue.json index 1cb68ec41c..e643e82d46 100644 --- a/public/language/tr/post-queue.json +++ b/public/language/tr/post-queue.json @@ -38,5 +38,6 @@ "remove-selected": "Seçili olanları kaldır", "remove-selected-confirm": "Seçili %1 iletiyi kaldırmak istiyor musunuz? ", "bulk-accept-success": "%1 ileti onaylandı", - "bulk-reject-success": "%1 ileti reddedildi" + "bulk-reject-success": "%1 ileti reddedildi", + "links-in-this-post": "Links in this post" } \ No newline at end of file diff --git a/public/language/tr/themes/harmony.json b/public/language/tr/themes/harmony.json index 4c3582602a..524af6091f 100644 --- a/public/language/tr/themes/harmony.json +++ b/public/language/tr/themes/harmony.json @@ -7,7 +7,8 @@ "login-register-to-search": "Aramak için giriş yapın veya kaydolun", "settings.title": "Tema Ayarları", "settings.enableQuickReply": "Hızlı Cevabı Etkinleştir", - "settings.enableBreadcrumbs": "Başlıklar için yol izini (breadcrumbs) göster", + "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages", + "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.", "settings.centerHeaderElements": "Tepedeki Merkezi Öğeler", "settings.mobileTopicTeasers": "Başlık Önizlemelerini mobilde göster", "settings.stickyToolbar": "Yapışkan Araç Çubuğu", diff --git a/public/language/tr/user.json b/public/language/tr/user.json index 19ff16fc21..d3f9cb859f 100644 --- a/public/language/tr/user.json +++ b/public/language/tr/user.json @@ -78,6 +78,7 @@ "change-password": "Şifre Değiştir", "change-password-error": "Geçersiz Şifre", "change-password-error-wrong-current": "Şu anki şifre doğru değil!", + "change-password-error-same-password": "Your new password matches your current password, please use a new password.", "change-password-error-match": "Şifreler aynı olmalı!", "change-password-error-privileges": "Bu şifreyi değiştirme yetkiniz yok.", "change-password-success": "Şifreniz güncellendi!", diff --git a/public/language/tr/users.json b/public/language/tr/users.json index 60fd516e80..db602962b0 100644 --- a/public/language/tr/users.json +++ b/public/language/tr/users.json @@ -1,5 +1,6 @@ { "all-users": "Tüm kullanıcılar", + "followed-users": "Followed Users", "latest-users": "En Yeni Kullanıcılar", "top-posters": "En Fazla Gönderim Yapanlar", "most-reputation": "En Saygınlar", diff --git a/public/language/uk/admin/development/info.json b/public/language/uk/admin/development/info.json index c28dc7bb38..42f90c8282 100644 --- a/public/language/uk/admin/development/info.json +++ b/public/language/uk/admin/development/info.json @@ -3,7 +3,7 @@ "ip": "IP %1", "nodes-responded": "%1 вузлів відповіли за %2мс!", "host": "host", - "primary": "primary / run jobs", + "primary": "primary / jobs", "pid": "pid", "nodejs": "nodejs", "online": "online", @@ -19,6 +19,7 @@ "registered": "Зареєстровано", "sockets": "Сокети", + "connection-count": "Connection Count", "guests": "Гостей", "info": "Інфо" diff --git a/public/language/uk/admin/extend/widgets.json b/public/language/uk/admin/extend/widgets.json index daa000f268..b2574ff74f 100644 --- a/public/language/uk/admin/extend/widgets.json +++ b/public/language/uk/admin/extend/widgets.json @@ -12,6 +12,8 @@ "container.card": "Card", "container.card-header": "Card Header", "container.card-body": "Card Body", + "container.title": "Title", + "container.body": "Body", "container.alert": "Тривога", "alert.confirm-delete": "Ви впевнені, що бажаєте видалити цей віджет?", diff --git a/public/language/uk/admin/settings/reputation.json b/public/language/uk/admin/settings/reputation.json index b0da969c93..f9009085ba 100644 --- a/public/language/uk/admin/settings/reputation.json +++ b/public/language/uk/admin/settings/reputation.json @@ -2,7 +2,14 @@ "reputation": "Налаштування репутації", "disable": "Вимкнути систему репутації", "disable-down-voting": "Вимкнути голосування проти", - "votes-are-public": "Всі голоси публічні", + "upvote-visibility": "Up Vote visibility", + "upvote-visibility-all": "Everyone can see up votes", + "upvote-visibility-loggedin": "Only logged in users can see up votes", + "upvote-visibility-privileged": "Only privileged users like admins & moderators can see up votes", + "downvote-visibility": "Down Vote visibility", + "downvote-visibility-all": "Everyone can see down votes", + "downvote-visibility-loggedin": "Only logged in users can see down votes", + "downvote-visibility-privileged": "Only privileged users like admins & moderators can see down votes", "thresholds": "Допуски активності", "min-rep-upvote": "Minimum reputation to upvote posts", "upvotes-per-day": "Upvotes per day (set to 0 for unlimited upvotes)", diff --git a/public/language/uk/error.json b/public/language/uk/error.json index c599867465..b40f9e10b3 100644 --- a/public/language/uk/error.json +++ b/public/language/uk/error.json @@ -153,6 +153,7 @@ "about-me-too-long": "Вибачте, але \"Про мене\" не може бути довшим за %1 символ(и).", "cant-chat-with-yourself": "Ви не можете писати самому собі!", "chat-restricted": "Цей користувач обмежив повідомлення. Він має стежити за вами, перш ніж ви зможете спілкуватися з ним", + "chat-user-blocked": "You have been blocked by this user.", "chat-disabled": "Чат вимкнено", "too-many-messages": "Ви надіслали забагато повідомлень, зачекайте трішки.", "invalid-chat-message": "Невірне повідомлення чату", diff --git a/public/language/uk/modules.json b/public/language/uk/modules.json index 7c61d6bea9..4c280a1356 100644 --- a/public/language/uk/modules.json +++ b/public/language/uk/modules.json @@ -1,8 +1,9 @@ { "chat.room-id": "Room %1", "chat.chatting-with": "Чат з", - "chat.placeholder": "Type chat message here, drag & drop images, press enter to send", - "chat.placeholder.mobile": "Type chat message here", + "chat.placeholder": "Type chat message here, drag & drop images", + "chat.placeholder.mobile": "Type chat message", + "chat.placeholder.message-room": "Message #%1", "chat.scroll-up-alert": "Go to most recent message", "chat.usernames-and-x-others": "%1 & %2 others", "chat.chat-with-usernames": "Chat with %1", diff --git a/public/language/uk/notifications.json b/public/language/uk/notifications.json index 74aeed642d..ee638917a6 100644 --- a/public/language/uk/notifications.json +++ b/public/language/uk/notifications.json @@ -52,10 +52,10 @@ "user-posted-to-multiple": "%1, %2 and %3 others have posted replies to: %4", "user-posted-topic": "%1 запостив нову тему: %2", "user-edited-post": "%1 has edited a post in %2", - "user-posted-topic-with-tag": "%1 has posted a new topic with tag %2", - "user-posted-topic-with-tag-dual": "%1 has posted a new topic with tags %2 and %3", - "user-posted-topic-with-tag-triple": "%1 has posted a new topic with tags %2, %3 and %4", - "user-posted-topic-with-tag-multiple": "%1 has posted a new topic with tags %2", + "user-posted-topic-with-tag": "%1 has posted %2 (tagged %3)", + "user-posted-topic-with-tag-dual": "%1 has posted %2 (tagged %3 and %4)", + "user-posted-topic-with-tag-triple": "%1 has posted %2 (tagged %3, %4, and %5)", + "user-posted-topic-with-tag-multiple": "%1 has posted %2 (tagged %3)", "user-posted-topic-in-category": "%1 has posted a new topic in %2", "user-started-following-you": "%1 почав стежити за вами.", "user-started-following-you-dual": "%1 та %2 почали стежити за вами.", @@ -75,6 +75,7 @@ "email-confirmed": "Електронну пошту підтверджено", "email-confirmed-message": "Дякуємо за підтвердження електронної пошти. Ваш акаунт тепер повністю активовано.", "email-confirm-error-message": "При перевірці вашої електронної пошти сталася проблема. Можливо код був недійсним або простроченим.", + "email-confirm-error-message-already-validated": "Your email address was already validated.", "email-confirm-sent": "Підтвердження по електронній пошті було надіслано.", "none": "Немає", "notification-only": "Тільки сповіщення", diff --git a/public/language/uk/post-queue.json b/public/language/uk/post-queue.json index 34399ad65f..2e727c8723 100644 --- a/public/language/uk/post-queue.json +++ b/public/language/uk/post-queue.json @@ -38,5 +38,6 @@ "remove-selected": "Remove Selected", "remove-selected-confirm": "Do you want to remove %1 selected posts?", "bulk-accept-success": "%1 posts accepted", - "bulk-reject-success": "%1 posts rejected" + "bulk-reject-success": "%1 posts rejected", + "links-in-this-post": "Links in this post" } \ No newline at end of file diff --git a/public/language/uk/themes/harmony.json b/public/language/uk/themes/harmony.json index 4e75b9f716..01038d7641 100644 --- a/public/language/uk/themes/harmony.json +++ b/public/language/uk/themes/harmony.json @@ -7,7 +7,8 @@ "login-register-to-search": "Login or register to search.", "settings.title": "Theme settings", "settings.enableQuickReply": "Enable quick reply", - "settings.enableBreadcrumbs": "Enable breadcrumbs", + "settings.enableBreadcrumbs": "Show breadcrumbs in Category and Topic pages", + "settings.enableBreadcrumbs.why": "Breadcrumbs are visible in most pages for ease-of-navigation. The base design of the category and topic pages has alternative means to link back to parent pages, but the breadcrumb can be toggled off to reduce clutter.", "settings.centerHeaderElements": "Center header elements", "settings.mobileTopicTeasers": "Show topic teasers on mobile", "settings.stickyToolbar": "Sticky toolbar", diff --git a/public/language/uk/user.json b/public/language/uk/user.json index 8f712b26e1..5d30fb6ae7 100644 --- a/public/language/uk/user.json +++ b/public/language/uk/user.json @@ -78,6 +78,7 @@ "change-password": "Змінити пароль", "change-password-error": "Невірний пароль!", "change-password-error-wrong-current": "Ваш поточний пароль не вірний!", + "change-password-error-same-password": "Your new password matches your current password, please use a new password.", "change-password-error-match": "Паролі мають співпадати!", "change-password-error-privileges": "У вас немає прав змінювати цей пароль.", "change-password-success": "Ваш пароль оновлено!", diff --git a/public/language/uk/users.json b/public/language/uk/users.json index 04f05b8419..397671fb7a 100644 --- a/public/language/uk/users.json +++ b/public/language/uk/users.json @@ -1,5 +1,6 @@ { "all-users": "All Users", + "followed-users": "Followed Users", "latest-users": "Останні користувачі", "top-posters": "Кращі автори", "most-reputation": "Найбільша репутація", diff --git a/public/language/vi/admin/admin.json b/public/language/vi/admin/admin.json index 3089b0067e..854e80eb92 100644 --- a/public/language/vi/admin/admin.json +++ b/public/language/vi/admin/admin.json @@ -1,18 +1,18 @@ { - "alert.confirm-rebuild-and-restart": "Bạn có chắc chắn muốn xây lại và khởi động lại NodeBB?", + "alert.confirm-rebuild-and-restart": "Bạn có chắc chắn muốn xây dựng lại và khởi động lại NodeBB?", "alert.confirm-restart": "Bạn có chắc muốn khởi động lại NodeBB", "acp-title": "%1 | Bảng Điểu Khiển Quản Trị NodeBB", "settings-header-contents": "Nội dung", - "changes-saved": "Changes Saved", - "changes-saved-message": "Your changes to the NodeBB configuration have been saved.", + "changes-saved": "Đã Lưu Thay Đổi", + "changes-saved-message": "Những thay đổi của bạn đối với cấu hình NodeBB đã được lưu.", "changes-not-saved": "Thay Đổi Chưa Được Lưu", "changes-not-saved-message": "NodeBB đã gặp sự cố khi lưu các thay đổi của bạn. (%1)", - "save-changes": "Save changes", - "min": "Min:", - "max": "Max:", - "view": "View", - "edit": "Edit", - "add": "Add", - "select-icon": "Select Icon" + "save-changes": "Lưu thay đổi", + "min": "Tối thiểu:", + "max": "Tối đa:", + "view": "Xem", + "edit": "Sửa", + "add": "Thêm", + "select-icon": "Chọn Biểu Tượng" } \ No newline at end of file diff --git a/public/language/vi/admin/advanced/cache.json b/public/language/vi/admin/advanced/cache.json index d06443e357..bb874c1930 100644 --- a/public/language/vi/admin/advanced/cache.json +++ b/public/language/vi/admin/advanced/cache.json @@ -1,10 +1,10 @@ { - "cache": "Cache", + "cache": "Bộ đệm", "post-cache": "Bộ Nhớ Đệm Bài Viết", "group-cache": "Bộ Nhớ Đệm Nhóm", "local-cache": "Bộ Nhớ Đệm Cục Bộ", "object-cache": "Bộ Nhớ Đệm Đối Tượng", "percent-full": "%1% Đầy", - "post-cache-size": "Kích thước cache bài viết", - "items-in-cache": "Thành phần trong Cache" + "post-cache-size": "Kích Cỡ Bộ Đệm Bài Đăng", + "items-in-cache": "Các Mục trong Bộ Đệm" } \ No newline at end of file diff --git a/public/language/vi/admin/advanced/database.json b/public/language/vi/admin/advanced/database.json index a1ae4cd261..3197226f05 100644 --- a/public/language/vi/admin/advanced/database.json +++ b/public/language/vi/admin/advanced/database.json @@ -2,15 +2,15 @@ "x-b": "%1 b", "x-mb": "%1 mb", "x-gb": "%1 gb", - "uptime-seconds": "Thời gian hoạt động(giây)", - "uptime-days": "Thời gian hoạt động(Ngày)", + "uptime-seconds": "Hoạt động theo Giây", + "uptime-days": "Hoạt động theo Ngày", "mongo": "MongoDB", "mongo.version": "Phiên bản MongoDB ", - "mongo.storage-engine": "Phương Thức Lưu Trữ", + "mongo.storage-engine": "Công Cụ Lưu Trữ", "mongo.collections": "Tập dữ liệu", "mongo.objects": "Đối tượng", - "mongo.avg-object-size": "Kích thước trung bình", + "mongo.avg-object-size": "Kích cỡ Trung bình Đối Tượng", "mongo.data-size": "Kích thước dữ liệu", "mongo.storage-size": "Kích thước lưu trữ", "mongo.index-size": "Kích thước chỉ mục", @@ -26,14 +26,14 @@ "redis": "Redis", "redis.version": "Phiên bản Redis", - "redis.keys": "Chìa khóa", + "redis.keys": "Khóa", "redis.expires": "Hết hạn", "redis.avg-ttl": "TTL Trung Bình", "redis.connected-clients": "Khách Đã Kết Nối", "redis.connected-slaves": "Nô lệ được kết nối", "redis.blocked-clients": "Khách Xem Bị Khóa", "redis.used-memory": "Bộ Nhớ Đã Sử Dụng", - "redis.memory-frag-ratio": "Tỷ lệ phân mảnh bộ nhớ", + "redis.memory-frag-ratio": "Tỷ Lệ Phân Mảnh Bộ Nhớ", "redis.total-connections-recieved": "Tổng Số Kết Nối Nhận Được", "redis.total-commands-processed": "Tổng Số Kết Nối Được Xử Lý", "redis.iops": "Hoạt động tức thời. Môi giây", diff --git a/public/language/vi/admin/advanced/errors.json b/public/language/vi/admin/advanced/errors.json index 53789387a9..539a1ac827 100644 --- a/public/language/vi/admin/advanced/errors.json +++ b/public/language/vi/admin/advanced/errors.json @@ -1,7 +1,7 @@ { - "errors": "Errors", + "errors": "Lỗi", "figure-x": "Hình %1", - "error-events-per-day": "sự kiện mỗi ngày%1",
+ "error-events-per-day": "sự kiện ngày %1",
"error.404": "404 Không Tìm Thấy",
"error.503": "503 Dịch Vụ Không Sẵn Có",
"manage-error-log": "Quản Lý Nhật Ký Lỗi",
diff --git a/public/language/vi/admin/advanced/events.json b/public/language/vi/admin/advanced/events.json
index 8113569d43..dc47fd286f 100644
--- a/public/language/vi/admin/advanced/events.json
+++ b/public/language/vi/admin/advanced/events.json
@@ -9,9 +9,9 @@
"filter-type": "Loại Sự Kiện",
"filter-start": "Ngày Bắt Đầu",
"filter-end": "Ngày Kết Thúc",
- "filter-user": "Filter by User",
- "filter-user.placeholder": "Type user name to filter...",
- "filter-group": "Filter by Group",
- "filter-group.placeholder": "Type group name to filter...",
+ "filter-user": "Lọc theo Người Dùng",
+ "filter-user.placeholder": "Nhập tên người dùng để lọc...",
+ "filter-group": "Lọc theo Nhóm",
+ "filter-group.placeholder": "Nhập tên nhóm để lọc...",
"filter-per-page": "Mỗi Trang"
}
\ No newline at end of file
diff --git a/public/language/vi/admin/appearance/customise.json b/public/language/vi/admin/appearance/customise.json
index 5613f36d8b..566f693fb0 100644
--- a/public/language/vi/admin/appearance/customise.json
+++ b/public/language/vi/admin/appearance/customise.json
@@ -1,20 +1,20 @@
{
- "customise": "Customise",
+ "customise": "Tùy chỉnh",
"custom-css": "CSS/SASS Tùy Chỉnh",
"custom-css.description": "Nhập các khai báo CSS/SASS của riêng bạn tại đây, sẽ được áp dụng sau tất cả các kiểu khác.",
"custom-css.enable": "Bật CSS/SASS Tùy Chỉnh",
"custom-js": "Javascript tùy chỉnh",
"custom-js.description": "Nhập javascript của riêng bạn ở đây. Nó sẽ được thực hiện sau khi trang được tải hoàn toàn.",
- "custom-js.enable": "Bật Javascript tùy chỉnh",
+ "custom-js.enable": "Bật Javascript Tùy Chỉnh",
"custom-header": "Tùy Chỉnh Phần Đầu Trang",
- "custom-header.description": "Nhập HTML tùy chỉnh tại đây (VD: Thẻ Meta, v.v...), sẽ được thêm vào phần <head>. Thẻ Script được phép, nhưng không được khuyến khích, vì phần Tùy Chỉnh Javascript đã có sẵn.",
+ "custom-header.description": "Nhập HTML tùy chỉnh ở đây (VD: Thẻ Meta, v.v...), sẽ được thêm vào phần <head>. Thẻ Script được phép, nhưng không được khuyến khích, vì phần Tùy Chỉnh Javascript đã có sẵn.",
"custom-header.enable": "Bật Tùy Chỉnh Phần Đầu Trang",
"custom-css.livereload": "Bật tải lại trực tiếp",
"custom-css.livereload.description": "Bật điều này để buộc tất cả các phiên trên mọi thiết bị trong tài khoản của bạn phải làm mới bất cứ khi nào bạn nhấp vào lưu",
"bsvariables": "_variables.scss",
- "bsvariables.description": "Override bootstrap variables here. You can also use a tool like bootstrap.build and paste the output here.YYYY-MM-DD",
@@ -42,10 +42,10 @@
"search-plugin-tooltip": "Cài đặt một plugin tìm kiếm từ trang plugin để kích hoạt chức năng tìm kiếm",
"control-panel": "Điều khiển hệ thống",
- "rebuild-and-restart": "Xây Dựng Lại & Khởi Động Lại",
- "restart": "Khởi động lại",
- "restart-warning": "Xây dựng lại hoặc Khởi động lại NodeBB của bạn sẽ hủy tất cả các kết nối hiện có trong vài giây.",
- "restart-disabled": "Việc xây dựng lại và khởi động lại NodeBB của bạn đã bị vô hiệu hóa vì bạn dường như không chạy nó qua daemon thích hợp.",
+ "rebuild-and-restart": "Dựng lại & Chạy lại",
+ "restart": "Chạy lại",
+ "restart-warning": "Dựng lại hay Chạy lại NodeBB của bạn sẽ hủy tất cả các kết nối hiện có trong vài giây.",
+ "restart-disabled": "Dựng lại và Chạy lại NodeBB của bạn đã bị vô hiệu hóa vì bạn dường như không chạy nó qua daemon thích hợp.",
"maintenance-mode": "Chế Độ Bảo Trì",
"maintenance-mode-title": "Bấm vào đây để thiết lập chế độ bảo trì cho NodeBB",
"dark-mode": "Chế Độ Tối",
@@ -62,7 +62,7 @@
"registered": "Đã đăng ký",
"user-presence": "Người Dùng Có Mặt",
- "on-categories": "Trên Danh Sách Chuyên Mục",
+ "on-categories": "Trên danh sách danh mục",
"reading-posts": "Đọc bài viết",
"browsing-topics": "Duyệt qua chủ đề",
"recent": "Gần đây",
@@ -86,16 +86,16 @@
"details.no-topics": "Không có chủ đề nào được đăng trong khung thời gian đã chọn",
"details.no-searches": "Không có tìm kiếm nào được thực hiện trong khung thời gian đã chọn",
"details.no-logins": "Không có thông tin đăng nhập nào được ghi lại trong khung thời gian đã chọn",
- "details.logins-static": "NodeBB chỉ lưu dữ liệu phiên trong %1 ngày và do đó, bảng này bên dưới sẽ chỉ hiển thị các phiên hoạt động gần đây nhất",
+ "details.logins-static": "NodeBB chỉ lưu dữ liệu phiên trong %1 ngày, bảng bên dưới chỉ hiển thị các phiên hoạt động gần đây nhất",
"details.logins-login-time": "Thời gian đăng nhập",
"start": "Bắt đầu",
"end": "Kết thúc",
"filter": "Bộ lọc",
- "view-as-json": "Xem dưới dạng JSON",
+ "view-as-json": "Xem kiểu JSON",
"expand-analytics": "Mở rộng phân tích",
"clear-search-history": "Xóa lịch sử tìm kiếm",
"clear-search-history-confirm": "Bạn có chắc chắn muốn xóa toàn bộ lịch sử tìm kiếm không?",
- "search-term": "Term",
- "search-count": "Count",
- "view-all": "View all"
+ "search-term": "Cụm từ",
+ "search-count": "Số lần",
+ "view-all": "Xem tất cả"
}
diff --git a/public/language/vi/admin/development/info.json b/public/language/vi/admin/development/info.json
index 4a76411c21..f8e2480b94 100644
--- a/public/language/vi/admin/development/info.json
+++ b/public/language/vi/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nút đã phản hồi trong %2ms!",
"host": "máy chủ",
- "primary": "công việc chính/điều hành",
+ "primary": "chính / công việc",
"pid": "pid",
"nodejs": "nodejs",
"online": "trực tuyến",
@@ -19,6 +19,7 @@
"registered": "Đã đăng ký",
"sockets": "Sockets",
+ "connection-count": "Số Lượng Kết Nối",
"guests": "Khách",
"info": "Thông tin"
diff --git a/public/language/vi/admin/development/logger.json b/public/language/vi/admin/development/logger.json
index 0fd7dc3d28..bbe6db943a 100644
--- a/public/language/vi/admin/development/logger.json
+++ b/public/language/vi/admin/development/logger.json
@@ -1,7 +1,7 @@
{
- "logger": "Logger",
+ "logger": "Ghi Nhật Ký",
"logger-settings": "Cài Đặt Ghi Nhật Ký",
- "description": "Bật cái này, bạn sẽ nhận nhật ký ở công cụ dòng lệnh của bạn. Nếu có đường dẫn cụ thể, nhật ký sẽ được lưu vào một tệp thay thế. Ghi nhật ký HTTP có lợi để thu thập thống kê về ai, khi nào và những gì mọi người truy cập trên diễn đàn. Ngoài ghi nhật ký yêu cầu HTTP, chúng tôi có thể ghi nhật ký sự kiện socket.io. Ghi nhật ký Socket.io, kết hợp với màn hình redis-cli, có thể hữu ích để tìm hiểu nội bộ NodeBB.",
+ "description": "Bật cái này, bạn sẽ nhận nhật ký ở công cụ dòng lệnh của bạn. Nếu có đường dẫn cụ thể, nhật ký sẽ được lưu vào một tệp thay thế. Nhật ký HTTP có lợi để thu thập thống kê ai đó, khi nào và những gì họ làm diễn đàn. Ngoài ghi nhật ký yêu cầu HTTP, chúng ta có thể ghi nhật ký sự kiện socket.io. Ghi nhật ký Socket.io, kết hợp giám sát redis-cli, có thể hữu ích để tìm hiểu bên trong NodeBB.",
"explanation": "Chỉ cần chọn/bỏ chọn cài đặt ghi nhật ký để bật hoặc tắt ghi nhật ký một cách nhanh chóng. Không cần khởi động lại.",
"enable-http": "Bật ghi nhật ký HTTP",
"enable-socket": "Bật ghi nhật ký sự kiện socket.io",
diff --git a/public/language/vi/admin/extend/plugins.json b/public/language/vi/admin/extend/plugins.json
index 09a7817bf6..6716e75d18 100644
--- a/public/language/vi/admin/extend/plugins.json
+++ b/public/language/vi/admin/extend/plugins.json
@@ -15,7 +15,7 @@
"reorder-plugins": "Sắp Xếp Lại Plugin",
"order-active": "Sắp Xếp Plugin Hoạt Động",
"dev-interested": "Bạn quan tâm đến việc viết plugin cho NodeBB?",
- "docs-info": "Tài liệu đầy đủ về tác giả plugin có thể được tìm thấy trong Cổng Thông Tin Tài Liệu NodeBB .",
+ "docs-info": "Tài liệu đầy đủ về tác giả plugin có thể được tìm thấy trong Cổng Tài Liệu NodeBB .",
"order.description": "Một số plugin nhất định hoạt động lý tưởng khi chúng được khởi tạo trước / sau các plugin khác.",
"order.explanation": "Các plugin tải theo thứ tự đã đặt ra ở đây, từ trên xuống dưới",
@@ -40,9 +40,9 @@
"alert.upgraded": "Đã Nâng Cấp Plugin",
"alert.installed": "Đã Cài Đặt Plugin",
"alert.uninstalled": "Đã Gỡ Bỏ Plugin",
- "alert.activate-success": "Vui lòng xây dựng lại và khởi động lại NodeBB của bạn để kích hoạt hoàn toàn plugin này",
+ "alert.activate-success": "Hãy dựng lại và chạy lại NodeBB của bạn để kích hoạt plugin này",
"alert.deactivate-success": "Đã hủy kích hoạt plugin thành công",
- "alert.upgrade-success": "Vui lòng xây dựng lại và khởi động lại NodeBB của bạn để nâng cấp đầy đủ plugin này.",
+ "alert.upgrade-success": "Hãy dựng lại và chạy lại NodeBB của bạn để nâng cấp plugin này.",
"alert.install-success": "Đã cài đặt thành công plugin, vui lòng kích hoạt plugin.",
"alert.uninstall-success": "Đã hủy kích hoạt và gỡ cài đặt plugin thành công.",
"alert.suggest-error": "NodeBB không thể tiếp cận trình quản lý gói, hãy tiến hành cài đặt phiên bản mới nhất?
Phiên bản NodeBB (v%1) của bạn chỉ được xóa để nâng cấp lên v%2 của plugin này. Vui lòng cập nhật NodeBB của bạn nếu muốn cài đặt phiên bản mới hơn của plugin này.
", "alert.possibly-incompatible": "Không Có Thông Tin Tương Thích
Plugin này không đưa ra một phiên bản cụ thể để cài đặt với phiên bản NodeBB của bạn. Không đảm bảo khả năng tương thích hoàn toàn và có thể khiến NodeBB của bạn không hoạt động bình thường.
Trường hợp NodeBB không thể hoạt động đúng:
$ ./nodebb reset plugin=\"%1\"Tiếp tục cài đặt phiên bản mới nhất của plugin này?
", "alert.reorder": "Các Plugin Đã Được Sắp Xếp Lại", - "alert.reorder-success": "Vui lòng xây dựng lại và khởi động lại NodeBB của bạn để hoàn tất quá trình.", + "alert.reorder-success": "Hãy dựng lại và chạy lại NodeBB của bạn để hoàn tất quá trình.", "license.title": "Thông Tin Cấp Phép Plugin", "license.intro": "Plugin %1 được cấp phép theo %2. Vui lòng đọc và hiểu các điều khoản cấp phép trước khi kích hoạt plugin này.", diff --git a/public/language/vi/admin/extend/rewards.json b/public/language/vi/admin/extend/rewards.json index bbb0c9d22d..ba946f9af6 100644 --- a/public/language/vi/admin/extend/rewards.json +++ b/public/language/vi/admin/extend/rewards.json @@ -1,12 +1,12 @@ { "rewards": "Phần thưởng", - "add-reward": "Add reward", + "add-reward": "Thêm phần thưởng", "condition-if-users": "Nếu Người Dùng", "condition-is": "Là:", "condition-then": "Sau đó:", "max-claims": "Số lần nhận thưởng có thể nhận được", "zero-infinite": "Nhập 0 cho vô hạn", - "select-reward": "Select reward", + "select-reward": "Chọn phần thưởng", "delete": "Xóa", "enable": "Bật", "disable": "Tắt", diff --git a/public/language/vi/admin/extend/widgets.json b/public/language/vi/admin/extend/widgets.json index 271ee1eede..e5b3d4a09b 100644 --- a/public/language/vi/admin/extend/widgets.json +++ b/public/language/vi/admin/extend/widgets.json @@ -1,5 +1,5 @@ { - "widgets": "Widgets", + "widgets": "Tiện ích", "available": "Tiện ích có sẵn", "explanation": "Chọn một tiện ích từ menu thả xuống, sau đó kéo và thả nó vào khu vực tiện ích của mẫu ở bên trái.", "none-installed": "Không tìm thấy tiện ích nào! Kích hoạt plugin tiện ích cần thiết trong bảng điều khiểnplugins .", @@ -12,6 +12,8 @@ "container.card": "Thẻ", "container.card-header": "Đầu Thẻ", "container.card-body": "Thân Thẻ", + "container.title": "Tiêu đề", + "container.body": "Thân", "container.alert": "Cảnh báo", "alert.confirm-delete": "Bạn có chắc muốn xóa tiện ích này không?", diff --git a/public/language/vi/admin/manage/admins-mods.json b/public/language/vi/admin/manage/admins-mods.json index c29516bd31..f74258ee68 100644 --- a/public/language/vi/admin/manage/admins-mods.json +++ b/public/language/vi/admin/manage/admins-mods.json @@ -1,13 +1,13 @@ { - "manage-admins-and-mods": "Manage Admins & Mods", + "manage-admins-and-mods": "Quản lý Quản Trị Viên & Người Điều Hành", "administrators": "Quản Trị Viên", - "global-moderators": "Người Quản Lý Chung", + "global-moderators": "Người Điều Hành Chung", "moderators": "Người điều hành", - "no-global-moderators": "Không Có Người Quản Lý Chung", + "no-global-moderators": "Không Có Người Điều Hành Chung", "no-sub-categories": "Không có danh mục phụ", "view-children": "Xem con (%1)", "no-moderators": "Không Có Người Điều Hành", "add-administrator": "Thêm Quản Trị Viên", - "add-global-moderator": "Thêm Người Quản Lý Chung", + "add-global-moderator": "Thêm Người Điều Hành Chung", "add-moderator": "Thêm Người Điều Hành" } \ No newline at end of file diff --git a/public/language/vi/admin/manage/categories.json b/public/language/vi/admin/manage/categories.json index d12779ddff..07352e45c8 100644 --- a/public/language/vi/admin/manage/categories.json +++ b/public/language/vi/admin/manage/categories.json @@ -17,7 +17,7 @@ "subcategories-per-page": "Danh mục phụ mỗi trang", "is-section": "Coi danh mục này như một phần", "post-queue": "Xếp hàng bài đăng", - "tag-whitelist": "Danh Sách Trắng Gắn Thẻ ", + "tag-whitelist": "Danh Sách Trắng Thẻ", "upload-image": "Tải Lên Ảnh", "upload": "Tải lên", "delete-image": "Xóa", diff --git a/public/language/vi/admin/manage/digest.json b/public/language/vi/admin/manage/digest.json index 80010b7fb1..0a3af43dfb 100644 --- a/public/language/vi/admin/manage/digest.json +++ b/public/language/vi/admin/manage/digest.json @@ -1,13 +1,13 @@ { "lead": "Một danh sách các số liệu thống kê và thời gian phân phối được hiển thị dưới đây.", - "disclaimer": "Xin lưu ý rằng việc gửi email không được đảm bảo, do bản chất của công nghệ email. Nhiều yếu tố quyết định đến việc liệu một email được gửi đến máy chủ người nhận cuối cùng có được gửi đến hộp thư đến của người dùng hay không, bao gồm danh tiếng của máy chủ, địa chỉ IP nằm trong danh sách đen và liệu DKIM/SPF/DMARC được cấu hình.", + "disclaimer": "Lưu ý việc gửi email là không đảm bảo, do bản chất của công nghệ email. Nhiều yếu tố ảnh hưởng đến một email được gửi đến máy chủ người nhận cuối cùng có được gửi đến hộp thư của người dùng hay không, bao gồm danh tiếng máy chủ, địa chỉ IP nằm trong danh sách đen và liệu DKIM/SPF/DMARC được cấu hình.", "disclaimer-continued": "Gửi thành công nghĩa là tin nhắn được NodeBB gửi thành công và máy chủ người nhận nhận được. Nó không có nghĩa là email đã đến hộp thư đến. Để có kết quả tốt nhất, chúng tôi khuyên bạn nên sử dụng dịch vụ gửi email của bên thứ ba, chẳng hạn như SendGrid.", "user": "Người dùng", - "subscription": "Loại đăng ký", + "subscription": "Loại Đăng Ký", "last-delivery": "Gửi thành công lần cuối", "default": "Mặc định hệ thống", - "default-help": "Mặc định hệ thống nghĩa là người dùng không đè lên toàn bộ cài đặt thông báo diễn đàn, hiện là: "%1"", + "default-help": "Mặc định hệ thống nghĩa là người dùng không ghi đè lên toàn bộ cài đặt thông báo diễn đàn, hiện là: "%1"", "resend": "Gửi Lại Thông Báo", "resend-all-confirm": "Bạn có muốn thực hiện thủ công lần chạy thông báo này không?", "resent-single": "Đã hoàn tất gửi lại thông báo thủ công", diff --git a/public/language/vi/admin/manage/privileges.json b/public/language/vi/admin/manage/privileges.json index fbe4434e79..27f999cff3 100644 --- a/public/language/vi/admin/manage/privileges.json +++ b/public/language/vi/admin/manage/privileges.json @@ -1,7 +1,7 @@ { "manage-privileges": "Quản Lý Đặc Quyền", "discard-changes": "Loại bỏ các thay đổi", - "global": "Chung", + "global": "Toàn bộ", "admin": "Quản Trị Viên", "group-privileges": "Đặc Quyền Nhóm", "user-privileges": "Đặc Quyền Người Dùng", @@ -32,7 +32,7 @@ "schedule-topics": "Lên Lịch Chủ Đề", "tag-topics": "Gắn Thẻ Chủ Đề", "edit-posts": "Chỉnh Sửa Bài Đăng", - "view-edit-history": "Xem Lịch Sử Chỉnh Sửa", + "view-edit-history": "Xem Lịch Sử Sửa", "delete-posts": "Xóa Bài Đăng", "view-deleted": "Xem Bài Viết Đã Xóa", "upvote-posts": "Ủng Hộ Bài Đăng", diff --git a/public/language/vi/admin/manage/registration.json b/public/language/vi/admin/manage/registration.json index adc7ff9d32..b30cde0329 100644 --- a/public/language/vi/admin/manage/registration.json +++ b/public/language/vi/admin/manage/registration.json @@ -11,7 +11,7 @@ "list.ip-spam": "Tần suất: %1 Xuất hiện: %2", "invitations": "Lời mời", - "invitations.description": "Dưới đây là danh sách hoàn tất các lời mời đã gửi. Bấm ctrl-f để tìm kiếm trong danh sách bằng email hoặc tên đăng nhập.0, nó sẽ là môt mã truy cập cao cấp, có thể giả định danh tính của những người dùng khác dựa trên tham số _uid",
"description": "Mô tả",
- "last-seen": "Last seen",
- "created": "Created",
- "create-token": "Create Token",
- "update-token": "Update Token",
- "master-token": "Master token",
- "last-seen-never": "Khóa này chưa bao giờ được dùng.",
+ "last-seen": "Nhìn thấy lần cuối",
+ "created": "Đã tạo",
+ "create-token": "Tạo Token",
+ "update-token": "Cập Nhật Token",
+ "master-token": "Token Chính",
+ "last-seen-never": "Khóa này chưa bao giờ dùng.",
"no-description": "Không có mô tả cụ thể.",
"actions": "Hành Động",
"edit": "Sửa",
"roll": "Cuộn",
- "delete-confirm": "Bạn có chắc chắn muốn xóa mã thông báo này không? Nó sẽ không thể phục hồi được.",
- "roll-confirm": "Bạn có chắc chắn muốn tạo lại mã thông báo này không? Mã thông báo cũ sẽ bị thu hồi ngay lập tức và không thể phục hồi được."
+ "delete-confirm": "Bạn có chắc muốn xóa token này không? Nó không thể phục hồi.",
+ "roll-confirm": "Bạn có chắc muốn tạo lại token này không? Token cũ sẽ bị thu hồi ngay và không thể phục hồi được."
}
\ No newline at end of file
diff --git a/public/language/vi/admin/settings/chat.json b/public/language/vi/admin/settings/chat.json
index 8fdf0a4339..20aa9a5d6e 100644
--- a/public/language/vi/admin/settings/chat.json
+++ b/public/language/vi/admin/settings/chat.json
@@ -3,12 +3,12 @@
"chat-settings": "Cài Đặt Trò Chuyện",
"disable": "Tắt trò chuyện",
"disable-editing": "Tắt chỉnh sửa / xóa tin nhắn trò chuyện",
- "disable-editing-help": "Quản trị viên và Người Quản Lý Chung được miễn hạn chế này",
+ "disable-editing-help": "Quản trị viên và người điều hành chung được miễn hạn chế này",
"max-length": "Độ dài tối đa của tin nhắn trò chuyện",
"max-chat-room-name-length": "Độ dài tối đa tên phòng trò chuyện",
"max-room-size": "Số lượng người dùng tối đa trong phòng trò chuyện",
"delay": "Thời gian giữa các tin nhắn trò chuyện (ms)",
- "notification-delay": "Độ trễ thông báo cho tin nhắn trò chuyện",
+ "notification-delay": "Độ trễ thông báo tin nhắn trò chuyện",
"notification-delay-help": "Các tin nhắn bổ sung được gửi trong khoảng thời gian này sẽ được đối chiếu và người dùng sẽ được thông báo một lần trong mỗi khoảng thời gian trì hoãn. Đặt giá trị này thành 0 để tắt độ trễ.",
"restrictions.seconds-edit-after": "Số giây mà một tin nhắn trò chuyện sẽ vẫn có thể chỉnh sửa được.",
"restrictions.seconds-delete-after": "Số giây một tin nhắn trò chuyện sẽ vẫn có thể bị xóa."
diff --git a/public/language/vi/admin/settings/email.json b/public/language/vi/admin/settings/email.json
index 9c07f52103..11f573f92a 100644
--- a/public/language/vi/admin/settings/email.json
+++ b/public/language/vi/admin/settings/email.json
@@ -12,7 +12,7 @@
"smtp-transport.enabled": "Bật truyền tải SMTP",
"smtp-transport-help": "Bạn có thể chọn từ danh sách các dịch vụ nổi bật hoặc nhập một dịch vụ tùy chỉnh.",
"smtp-transport.service": "Chọn một dịch vụ",
- "smtp-transport.service-custom": "Tùy chỉnh dịch vụ ",
+ "smtp-transport.service-custom": "Tùy Chỉnh Dịch Vụ ",
"smtp-transport.service-help": "Chọn tên dịch vụ ở trên để sử dụng thông tin đã biết về nó. Ngoài ra, hãy chọn "Dịch vụ tùy chỉnh" và nhập các chi tiết bên dưới.",
"smtp-transport.gmail-warning1": "Nếu bạn đang sử dụng GMail làm nhà cung cấp email của mình, bạn sẽ phải tạo "Mật Khẩu Ứng Dụng" để NodeBB xác thực thành công. Bạn có thể tạo một cái tại trang Mật Khẩu Ứng Dụng .",
"smtp-transport.gmail-warning2": "Để biết thêm thông tin về giải pháp này, hãy tham khảo bài viết NodeMailer về vấn đề này. Giải pháp thay thế là sử dụng plugin trình gửi email của bên thứ ba như SendGrid, Mailgun, v.v.. Duyệt qua các plugin có sẵn tại đây.",
@@ -39,7 +39,7 @@
"subscriptions": "Thông Báo Email",
"subscriptions.disable": "Tắt thông báo email",
"subscriptions.hour": "Giờ Thông Báo",
- "subscriptions.hour-help": "Vui lòng nhập một số đại diện cho giờ để gửi thông báo email đã lên lịch (VD: 0 cho nửa đêm, 17 cho 5h chiều). Hãy nhớ rằng đây là giờ theo chính máy chủ và có thể không khớp chính xác với đồng hồ hệ thống của bạn.0 cho nửa đêm, 17 cho 5:00 chiều). Hãy nhớ rằng đây là giờ theo chính máy chủ và có thể không khớp chính xác với đồng hồ hệ thống của bạn.url trong config.json",
+ "logo.url-help": "Khi nhấp vào logo, đưa người dùng đến địa chỉ này. Nếu để trống, người dùng sẽ được chuyển đến chỉ mục diễn đàn. url trong config.json",
"logo.alt-text": "Văn Bản Thay Thế",
"log.alt-text-placeholder": "Văn bản thay thế cho khả năng tiếp cận",
"favicon": "Biểu tượng ưa thích",
@@ -32,21 +32,21 @@
"pwa": "Ứng Dụng Web Tiến Bộ",
"touch-icon": "Biểu Tượng Cảm Ứng",
"touch-icon.upload": "Tải lên",
- "touch-icon.help": "Kích thước và định dạng được đề xuất: 512x512, chỉ định dạng PNG. Nếu không có biểu tượng cảm ứng nào, NodeBB sẽ quay trở lại sử dụng favicon.",
- "maskable-icon": "Biểu tượng có thể che được (Màn Trang Chủ)",
- "maskable-icon.help": "Kích thước và định dạng nên là: 512x512, chỉ định dạng PNG. Nếu không có biểu tượng có thể che được nào được chỉ định, NodeBB sẽ trở lại Biểu tượng cảm ứng.",
+ "touch-icon.help": "Kích cỡ và định dạng được đề xuất: 512x512, chỉ định dạng PNG. Nếu không có biểu tượng cảm ứng nào, NodeBB sẽ quay trở lại sử dụng favicon.",
+ "maskable-icon": "Biểu tượng có thể che được (Màn Hình Trang Chủ)",
+ "maskable-icon.help": "Kích thước và định dạng nên là: 512x512, chỉ định dạng PNG. Nếu không có biểu tượng có thể che được nào được chỉ định, NodeBB sẽ trở lại Biểu Tượng Chạm.",
"outgoing-links": "Liên Kết Đi",
"outgoing-links.warning-page": "Sử Dụng Trang Cảnh Báo Liên Kết Đi",
"search": "Tìm kiếm",
- "search-default-in": "Tìm kiếm trong",
- "search-default-in-quick": "Tìm kiếm nhanh trong",
- "search-default-sort-by": "Sắp xếp theo",
+ "search-default-in": "Tìm Trong",
+ "search-default-in-quick": "Tìm Nhanh Trong",
+ "search-default-sort-by": "Xếp theo",
"outgoing-links.whitelist": "Các tên miền trong danh sách trắng sẽ bỏ qua trang cảnh báo",
"site-colors": "Dữ Liệu Mô Tả Màu Trang",
"theme-color": "Màu Giao Diện",
"background-color": "Màu Nền",
"background-color-help": "Màu được sử dụng cho nền màn hình khởi động khi trang web được cài đặt làm PWA",
- "undo-timeout": "Hoàn tác thời gian chờ",
- "undo-timeout-help": "Một số thao tác như chuyển chủ đề sẽ cho phép người kiểm duyệt hoàn tác hành động của họ trong một khung thời gian nhất định. Đặt thành 0 để tắt hoàn toàn hoàn tác.",
+ "undo-timeout": "Thời Gian Chờ Hoàn Tác",
+ "undo-timeout-help": "Một số thao tác như chuyển chủ đề sẽ cho phép mod hoàn tác hành động của họ trong khung giờ nhất định. Đặt thành 0 để tắt hoàn toàn hoàn tác.",
"topic-tools": "Công cụ chủ đề"
}
diff --git a/public/language/vi/admin/settings/group.json b/public/language/vi/admin/settings/group.json
index e9a887faaf..b97b763363 100644
--- a/public/language/vi/admin/settings/group.json
+++ b/public/language/vi/admin/settings/group.json
@@ -4,7 +4,7 @@
"private-groups.help": "Nếu bật, tham gia nhóm cần chủ nhóm chấp nhận (Mặc định: được bật)",
"private-groups.warning": "Coi chừng! Nếu tắt tùy chọn này và bạn có nhóm riêng tư, chúng sẽ tự động trở thành công khai.",
"allow-multiple-badges": "Cho Phép Nhiều Huy Hiệu",
- "allow-multiple-badges-help": "Cờ này có thể được dùng để người dùng chọn nhiều huy hiệu nhóm, yêu cầu hỗ trợ giao diện.",
+ "allow-multiple-badges-help": "Cờ này có thể được dùng để người dùng chọn nhiều huy hiệu nhóm, yêu cầu giao diện hỗ trợ.",
"max-name-length": "Độ Dài Tên Nhóm Tối Đa",
"max-title-length": "Độ Dài Tựa Đề Nhóm Tối Đa",
"cover-image": "Ảnh Bìa Nhóm",
diff --git a/public/language/vi/admin/settings/homepage.json b/public/language/vi/admin/settings/homepage.json
index d4a3e81eb4..17426f63d2 100644
--- a/public/language/vi/admin/settings/homepage.json
+++ b/public/language/vi/admin/settings/homepage.json
@@ -1,8 +1,8 @@
{
"home-page": "Trang Chủ",
- "description": "Chọn trang hiển thị khi người dùng được chuyển hướng đến URL gốc diễn đàn của bạn.",
+ "description": "Chọn trang hiển thị khi người dùng chuyển hướng đến URL gốc diễn đàn của bạn.",
"home-page-route": "Liên Kết Trang Chủ",
"custom-route": "Tùy Chỉnh Liên Kết",
"allow-user-home-pages": "Cho Phép Trang Chủ Người Dùng",
- "home-page-title": "Tiêu đề của trang chủ (mặc định là \"Trang chủ\")"
+ "home-page-title": "Tiêu đề trang chủ (mặc định là \"Trang chủ\")"
}
\ No newline at end of file
diff --git a/public/language/vi/admin/settings/languages.json b/public/language/vi/admin/settings/languages.json
index dfb1401e51..bca038be61 100644
--- a/public/language/vi/admin/settings/languages.json
+++ b/public/language/vi/admin/settings/languages.json
@@ -1,6 +1,6 @@
{
- "language-settings": "Cài đặt ngôn ngữ",
- "description": "Ngôn ngữ mặc định xác định ngôn ngữ cho tất cả người dùng đang truy cập diễn đàn của bạn. 30, hoặc một tháng). Đặt là 0 để luôn hiển thị ngày tháng, để trống để luôn hiển thị thời gian tương đối.",
+ "timestamp.cut-off-help": "Ngày & giờ sẽ được hiển thị tương đối (VD: \"3 giờ trước\" / \"5 ngày trước\"), và địa phương hóa thành nhiều\n\t\t\t\t\tngôn ngữ. Sau một thời gian, dòng chữ này có thể tự chuyển sang hiển thị ngày giờ địa phương\n\t\t\t\t\t(VD: 5 Tháng 11, 2016 15:30).30, hoặc một tháng). Đặt là 0 để luôn hiển thị ngày tháng, để trống để luôn hiển thị thời gian tương đối.",
"timestamp.necro-threshold": "Ngưỡng Necro (ngày)",
"timestamp.necro-threshold-help": "Một thông báo sẽ được hiển thị giữa các bài đăng nếu thời gian giữa chúng dài hơn ngưỡng yêu cầu. (Mặc định: 7, hoặc một tuần). Đặt thành 0 để tắt.",
"timestamp.topic-views-interval": "Khoảng thời gian xem chủ đề tăng dần (phút)",
@@ -39,11 +39,11 @@
"teaser.last-reply": "Cuối cùng - Hiển thị câu trả lời mới nhất hoặc trình giữ chỗ \"Không trả lời\" nếu không có câu trả lời",
"teaser.first": "Đầu tiên",
"showPostPreviewsOnHover": "Hiển thị bản xem trước của các bài đăng khi di chuột qua",
- "unread-and-recent": "Unread & Recent Settings",
+ "unread-and-recent": "Cài Đặt Chưa Đọc & Gần Đây",
"unread.cutoff": "Số ngày giới hạn chưa đọc",
"unread.min-track-last": "Số bài viết tối thiểu trong chủ đề trước khi theo dõi lần đọc cuối cùng",
"recent.max-topics": "Chủ đề tối đa trên trang / gần đây",
- "recent.categoryFilter.disable": "Tắt tính năng lọc chủ đề trong chuyên mục bị bỏ qua trên trang /gần đây",
+ "recent.categoryFilter.disable": "Tắt lọc chủ đề trong danh mục bị bỏ qua trên trang /recent",
"signature": "Cài Đặt Chữ Ký",
"signature.disable": "Tắt chữ ký",
"signature.no-links": "Tắt liên kết trong chữ ký",
@@ -60,5 +60,5 @@
"backlinks.help": "Nếu một bài đăng tham chiếu đến chủ đề khác, một liên kết ngược đến bài đăng sẽ được chèn vào chủ đề được tham chiếu vào lúc đó.",
"ip-tracking": "Theo dõi IP",
"ip-tracking.each-post": "Theo dõi Địa chỉ IP mỗi bài đăng",
- "enable-post-history": "Bật Lịch Sử Bài Đăng"
+ "enable-post-history": "Bật lịch sử đăng bài"
}
\ No newline at end of file
diff --git a/public/language/vi/admin/settings/reputation.json b/public/language/vi/admin/settings/reputation.json
index 12b29ddcf7..4914fb3a8b 100644
--- a/public/language/vi/admin/settings/reputation.json
+++ b/public/language/vi/admin/settings/reputation.json
@@ -2,16 +2,23 @@
"reputation": "Cài Đặt Đánh Giá Uy Tín",
"disable": "Tắt Hệ Thống Đánh Giá Uy Tín",
"disable-down-voting": "Tắt Phản Đối",
- "votes-are-public": "Tất Cả Bình Chọn Là Công Khai",
+ "upvote-visibility": "Khả năng hiển thị số ủng hộ",
+ "upvote-visibility-all": "Mọi người có thể xem số ủng hộ",
+ "upvote-visibility-loggedin": "Chỉ người dùng đã đăng nhập mới có thể xem số ủng hộ",
+ "upvote-visibility-privileged": "Chỉ những ai có đặc quyền như admin và mod được xem số ủng hộ",
+ "downvote-visibility": "Khả năng hiển thị số phản đối",
+ "downvote-visibility-all": "Mọi người có thể xem số phản đối",
+ "downvote-visibility-loggedin": "Chỉ ai đã đăng nhập được xem số phản đối",
+ "downvote-visibility-privileged": "Chỉ người dùng đặc quyền như admin hoặc mod có thể xem số phản đối",
"thresholds": "Ngưỡng hoạt động",
"min-rep-upvote": "Uy tín tối thiểu để ủng hộ bài đăng",
- "upvotes-per-day": "Số phiếu ủng hộ mỗi ngày (đặt thành 0 để có số phiếu ủng hộ không giới hạn)",
+ "upvotes-per-day": "Số phiếu ủng hộ mỗi ngày (đặt là 0 để không giới hạn)",
"upvotes-per-user-per-day": "Số phiếu ủng hộ cho mỗi người dùng mỗi ngày (đặt thành 0 để có số phiếu ủng hộ không giới hạn)",
"min-rep-downvote": "Uy tín tối thiểu để phản đối bài đăng",
"downvotes-per-day": "Số phản đối mỗi ngày (đặt là 0 không giới hạn phản đối)",
"downvotes-per-user-per-day": "Số phản đối mỗi người dùng mỗi ngày (đặt là 0 không giới hạn số phản đối)",
"min-rep-chat": "Uy tín tối thiểu để gửi tin nhắn trò chuyện",
- "min-rep-post-links": "Minimum reputation to post links",
+ "min-rep-post-links": "Danh tiếng tối thiểu để đăng liên kết",
"min-rep-flag": "Uy tín tối thiểu để gắn cờ bài đăng",
"min-rep-website": "Uy tín tối thiểu để thêm \"Trang web\" vào hồ sơ người dùng",
"min-rep-aboutme": "Uy tín tối thiểu để thêm \"Giới thiệu bản thân\" vào hồ sơ người dùng",
@@ -23,12 +30,12 @@
"flags.limit-per-target": "Số lần tối đa nội dung nào đó có thể được gắn cờ",
"flags.limit-per-target-placeholder": "Mặc định: 0",
"flags.limit-per-target-help": "Khi một bài đăng hoặc người dùng bị gắn cờ nhiều lần, mỗi cờ bổ sung được coi là một "báo cáo" và được thêm vào cờ gốc. Đặt tùy chọn này thành một số khác 0 để giới hạn số lượng báo cáo mà một mục có thể nhận được.",
- "flags.limit-post-flags-per-day": "Maximum number of times a user can flag posts in a day",
- "flags.limit-post-flags-per-day-help": "Set to 0 to disable, (default: 10)",
- "flags.limit-user-flags-per-day": "Maximum number of times a user can flag users in a day",
- "flags.limit-user-flags-per-day-help": "Set to 0 to disable, (default: 10)",
- "flags.auto-flag-on-downvote-threshold": "Number of downvotes to auto flag posts",
- "flags.auto-flag-on-downvote-threshold-help": "Set to 0 to disable, (default: 0)",
+ "flags.limit-post-flags-per-day": "Số lần tối đa người dùng có thể gắn cờ bài đăng trong một ngày",
+ "flags.limit-post-flags-per-day-help": "Đặt là 0 để tắt, (mặc định: 10)",
+ "flags.limit-user-flags-per-day": "Số lần tối đa người dùng có thể gắn cờ người dùng trong một ngày",
+ "flags.limit-user-flags-per-day-help": "Đặt là 0 để tắt, (mặc định: 10)",
+ "flags.auto-flag-on-downvote-threshold": "Số lượt phản đối đối với bài đăng tự động gắn cờ",
+ "flags.auto-flag-on-downvote-threshold-help": "Đặt là 0 để tắt, (mặc định: 0)",
"flags.auto-resolve-on-ban": "Tự động giải quyết tất cả các yêu cầu của người dùng khi họ bị cấm",
"flags.action-on-resolve": "Làm như sau khi một gắn cờ được giải quyết",
"flags.action-on-reject": "Làm như sau khi một gắn cờ bị từ chối",
diff --git a/public/language/vi/admin/settings/uploads.json b/public/language/vi/admin/settings/uploads.json
index deda121e05..7a1b176219 100644
--- a/public/language/vi/admin/settings/uploads.json
+++ b/public/language/vi/admin/settings/uploads.json
@@ -7,7 +7,7 @@
"orphanExpiryDays": "Ngày lưu giữ các tệp mồ côi",
"orphanExpiryDays-help": "Sau nhiều ngày, các tệp tải lên không rõ nguồn gốc sẽ bị xóa khỏi hệ thống tệp.pdf,xls,doc). Để trống có nghĩa là mọi tệp đều riêng tư.",
+ "private-uploads-extensions-help": "Nhập danh sách phần mở rộng tệp tại đây phân tách bằng dấu phẩy để đặt ở chế độ riêng tư (VD: pdf,xls,doc). Để trống nghĩa là mọi tệp đều riêng tư.",
"resize-image-width-threshold": "Chỉnh kích cỡ ảnh nếu chúng rộng hơn chiều rộng đã đặt",
"resize-image-width-threshold-help": "(tính bằng pixel, mặc định: 1520 pixel, đặt thành 0 để tắt)",
"resize-image-width": "Giảm kích cỡ ảnh xuống đến chiều rộng đã đặt",
@@ -20,11 +20,11 @@
"reject-image-width-help": "Hình ảnh rộng hơn giá trị này sẽ bị từ chối.",
"reject-image-height": "Chiều Cao Ảnh Tối Đa (pixel)",
"reject-image-height-help": "Hình ảnh cao hơn giá trị này sẽ bị từ chối.",
- "allow-topic-thumbnails": "Cho phép người dùng tải lên ảnh mô tả chủ đề",
- "topic-thumb-size": "Kích Cỡ Ảnh Mô Tả Chủ Đề",
+ "allow-topic-thumbnails": "Cho phép người dùng tải lên ảnh thumbnails chủ đề",
+ "topic-thumb-size": "Kích Cỡ Ảnh Thumbnails Chủ Đề",
"allowed-file-extensions": "Cho Phép Phần Mở Rộng Tệp",
"allowed-file-extensions-help": "Nhập danh sách phần mở rộng tệp phân tách bằng dấu phẩy ở đây (VD: pdf,xls,doc). Để trống là cho phép tất cả.",
- "upload-limit-threshold": "Giới hạn tốc độ tải người dùng lên:",
+ "upload-limit-threshold": "Giới hạn tỉ lệ tải lên người dùng:",
"upload-limit-threshold-per-minute": "Mỗi %1 Phút",
"upload-limit-threshold-per-minutes": "Mỗi %1 Phút",
"profile-avatars": "Ảnh Đại Diện Hồ Sơ",
diff --git a/public/language/vi/admin/settings/user.json b/public/language/vi/admin/settings/user.json
index a6c88151fc..ca402454fc 100644
--- a/public/language/vi/admin/settings/user.json
+++ b/public/language/vi/admin/settings/user.json
@@ -16,7 +16,7 @@
"hide-email": "Ẩn email khỏi người dùng",
"show-fullname-as-displayname": "Hiển thị tên đầy đủ của người dùng làm tên hiển thị của họ nếu có",
"themes": "Giao diện",
- "disable-user-skins": "Ngăn người dùng chọn giao diện tùy chỉnh",
+ "disable-user-skins": "Ngăn người dùng chọn trang điểm tùy chỉnh",
"account-protection": "Bảo Vệ Tài Khoản",
"admin-relogin-duration": "Thời lượng đăng nhập lại của quản trị viên (phút)",
"admin-relogin-duration-help": "Sau một khoảng thời gian truy cập nhất định vào phần quản trị sẽ yêu cầu đăng nhập lại, hãy đặt thành 0 để tắt",
@@ -32,18 +32,18 @@
"session-duration": "Thời lượng phiên nếu \"Ghi nhớ tôi\" không được chọn (giây)",
"session-duration-help": "Theo mặc định — hoặc nếu đặt thành 0 — người dùng sẽ duy trì trạng thái đăng nhập trong suốt thời gian của phiên (VD: cửa sổ/tab trình duyệt vẫn mở trong bao lâu). Đặt giá trị này để vô hiệu hóa rõ ràng phiên sau số giây đã chỉ định.",
"online-cutoff": "Số phút sau khi người dùng được coi là không hoạt động",
- "online-cutoff-help": "Nếu người dùng không thao tác trong khoảng thời gian này, được coi là không hoạt động và không nhận được cập nhật theo thời gian thực.",
+ "online-cutoff-help": "Nếu người dùng không thao tác trong thời gian này, sẽ coi là không hoạt động và không cập nhật thời gian thực.",
"registration": "Đăng Ký Người Dùng",
- "registration-type": "Loại Đăng Ký",
- "registration-approval-type": "Loại Xét Duyệt Đăng Ký",
+ "registration-type": "Kiểu Đăng Ký",
+ "registration-approval-type": "Kiểu Xét Duyệt Đăng Ký",
"registration-type.normal": "Bình thường",
- "registration-type.admin-approval": "Quản Trị Viên Phê Duyệt",
- "registration-type.admin-approval-ip": "Quản Trị Viên Phê Duyệt cho IP",
+ "registration-type.admin-approval": "Admin Phê Duyệt",
+ "registration-type.admin-approval-ip": "Amin Duyệt IP",
"registration-type.invite-only": "Chỉ Mời",
- "registration-type.admin-invite-only": "Chỉ Quản Trị Viên Mời",
- "registration-type.disabled": "Không có đăng ký",
- "registration-type.help": "Bình thường - Người dùng có thể đăng ký từ trang /register.Đặt lại mật khẩu thành công, vui lòng đăng nhập lại.",
- "wrong-reset-code.title": "Mã thiết lập lại không đúng",
+ "wrong-reset-code.title": "Mã Đặt Lại Không Đúng",
"wrong-reset-code.message": "Mã thiết lập lại không đúng. Xin hãy thử lại, hoặc yêu cầu một mã thiết lập lại khác.",
"new-password": "Mật Khẩu Mới",
"repeat-password": "Xác Nhận Mật Khẩu",
diff --git a/public/language/vi/search.json b/public/language/vi/search.json
index c8cc0c4c72..65e9d12113 100644
--- a/public/language/vi/search.json
+++ b/public/language/vi/search.json
@@ -7,7 +7,7 @@
"in-titles": "Trong tiêu đề",
"in-titles-posts": "Trong tiêu đề và bài đăng",
"in-posts": "Trong bài đăng",
- "in-bookmarks": "In bookmarks",
+ "in-bookmarks": "Trong dấu trang",
"in-categories": "Trong danh mục",
"in-users": "Trong người dùng",
"in-tags": "Trong thẻ",
@@ -17,7 +17,7 @@
"categories-watched-categories": "Danh mục: Danh mục đã xem",
"type-a-category": "Nhập một danh mục",
"tags": "Thẻ",
- "tags-x": "Tags: %1",
+ "tags-x": "Thẻ: %1",
"type-a-tag": "Nhập một thẻ",
"match-words": "Khớp các từ",
"match-all-words": "Khớp tất cả các từ",
@@ -26,15 +26,15 @@
"any": "Bất kì",
"posted-by": "Đăng bởi",
"posted-by-usernames": "Đăng bởi: %1",
- "type-a-username": "Nhập tên người dùng",
+ "type-a-username": "Nhập tên đăng nhập",
"search-child-categories": "Tìm kiếm chuyên mục con",
- "has-tags": "Có thẻ bên trong",
+ "has-tags": "Có thẻ",
"reply-count": "Số lượt trả lời",
- "replies": "Replies",
- "replies-atleast-count": "Replies: At least %1",
- "replies-atmost-count": "Replies: At most %1",
+ "replies": "Trả lời",
+ "replies-atleast-count": "Trả lời: Ít nhất %1",
+ "replies-atmost-count": "Trả lời: Nhiều nhất là %1",
"at-least": "Tối thiểu",
- "at-most": "Tối đa",
+ "at-most": "Nhiều nhất",
"relevance": "Mức độ liên quan",
"time": "Thời gian",
"post-time": "Thời gian đăng bài",
diff --git a/public/language/vi/social.json b/public/language/vi/social.json
index 6017a94dfc..2a1194b3fd 100644
--- a/public/language/vi/social.json
+++ b/public/language/vi/social.json
@@ -1,12 +1,12 @@
{
- "sign-in-with-twitter": "Đăng nhập bằng Twitter",
+ "sign-in-with-twitter": "Đăng nhập với Twitter",
"sign-up-with-twitter": "Đăng ký với Twitter",
"sign-in-with-github": "Đăng nhập bằng Github",
"sign-up-with-github": "Đăng ký với Github",
"sign-in-with-google": "Đăng nhập bằng Google",
"sign-up-with-google": "Đăng ký với Google",
- "log-in-with-facebook": "Đăng nhập bằng Facebook",
+ "log-in-with-facebook": "Đăng nhập với Facebook",
"continue-with-facebook": "Tiếp tục với Facebook",
- "sign-in-with-linkedin": "Sign in with LinkedIn",
- "sign-up-with-linkedin": "Sign up with LinkedIn"
+ "sign-in-with-linkedin": "Đăng nhập với LinkedIn",
+ "sign-up-with-linkedin": "Đăng ký với LinkedIn"
}
\ No newline at end of file
diff --git a/public/language/vi/tags.json b/public/language/vi/tags.json
index d5dff7118e..9e9f0d754f 100644
--- a/public/language/vi/tags.json
+++ b/public/language/vi/tags.json
@@ -1,17 +1,17 @@
{
- "all-tags": "Tất cả các thẻ",
+ "all-tags": "Tất cả thẻ",
"no-tag-topics": "Không có bài viết nào với thẻ này.",
"no-tags-found": "Không tìm thấy thẻ nào",
"tags": "Thẻ",
- "enter-tags-here": "Enter tags, %1 - %2 characters.",
+ "enter-tags-here": "Nhập thẻ, %1 - %2 ký tự.",
"enter-tags-here-short": "Nhập thẻ...",
"no-tags": "Chưa có thẻ nào.",
"select-tags": "Chọn Thẻ",
- "tag-whitelist": "Tag Whitelist",
- "watching": "Watching",
- "not-watching": "Not Watching",
- "watching.description": "Notify me of new topics.",
- "not-watching.description": "Do not notify me of new topics.",
- "following-tag.message": "You will now be receiving notifications when somebody posts a topic with this tag.",
- "not-following-tag.message": "You will not receive notifications when somebody posts a topic with this tag."
+ "tag-whitelist": "Danh Sách Trắng Thẻ",
+ "watching": "Đang xem",
+ "not-watching": "Chưa xem",
+ "watching.description": "Thông báo tôi chủ đề mới.",
+ "not-watching.description": "Không thông báo tôi chủ đề mới.",
+ "following-tag.message": "Bây giờ bạn sẽ nhận được thông báo khi ai đó đăng chủ đề có thẻ này.",
+ "not-following-tag.message": "Bạn sẽ không nhận được thông báo khi ai đó đăng chủ đề có thẻ này.\n\n \n\n "
}
\ No newline at end of file
diff --git a/public/language/vi/themes/harmony.json b/public/language/vi/themes/harmony.json
index 994678ce86..4f7b19c44e 100644
--- a/public/language/vi/themes/harmony.json
+++ b/public/language/vi/themes/harmony.json
@@ -1,13 +1,14 @@
{
"theme-name": "Chủ Đề Hòa Âm",
- "skins": "Giao diện",
+ "skins": "Trang điểm",
"collapse": "Thu gọn",
"expand": "Mở rộng",
- "sidebar-toggle": "Sidebar Toggle",
+ "sidebar-toggle": "Chuyển Đổi Thanh Bên",
"login-register-to-search": "Đăng nhập hoặc đăng ký để tìm kiếm.",
"settings.title": "Cài đặt chủ đề",
"settings.enableQuickReply": "Bật trả lời nhanh",
- "settings.enableBreadcrumbs": "Enable breadcrumbs",
+ "settings.enableBreadcrumbs": "Hiển thị đường dẫn trong trang Danh mục và Chủ đề",
+ "settings.enableBreadcrumbs.why": "Đường dẫn được hiển thị trong hầu hết các trang để dễ điều hướng. Thiết kế cơ bản của các trang danh mục và chủ đề có các phương tiện thay thế để liên kết trở lại các trang mẹ, nhưng có thể tắt đường dẫn để giảm bớt sự lộn xộn.",
"settings.centerHeaderElements": "Yếu tố tiêu đề trung tâm",
"settings.mobileTopicTeasers": "Hiển thị đoạn giới thiệu chủ đề trên di động",
"settings.stickyToolbar": "Thanh công cụ cố định",
diff --git a/public/language/vi/topic.json b/public/language/vi/topic.json
index 84b7d27226..19bc1289eb 100644
--- a/public/language/vi/topic.json
+++ b/public/language/vi/topic.json
@@ -15,7 +15,7 @@
"replies-to-this-post": "%1 trả lời",
"one-reply-to-this-post": "1 Phản hồi",
"last-reply-time": "Trả lời cuối cùng",
- "reply-options": "Reply options",
+ "reply-options": "Tùy chọn trả lời",
"reply-as-topic": "Trả lời dưới dạng chủ đề",
"guest-login-reply": "Đăng nhập để trả lời",
"login-to-view": "🔒 Đăng nhập để xem",
@@ -35,7 +35,7 @@
"pinned": "Đã ghim",
"pinned-with-expiry": "Được ghim cho đến %1",
"scheduled": "Lên kế hoạch",
- "deleted": "Deleted",
+ "deleted": "Đã xóa",
"moved": "Chuyển đi",
"moved-from": "Đã chuyển từ %1",
"copy-code": "Sao Chép Mã",
@@ -66,7 +66,7 @@
"user-referenced-topic-on": "%1 referenced this topic on %3",
"user-forked-topic-ago": "%1 forked this topic %3",
"user-forked-topic-on": "%1 forked this topic on %3",
- "bookmark-instructions": "Nhấn vào đây để trở lại bài viết đã đọc cuối cùng trong chủ đề này.",
+ "bookmark-instructions": "Bấm vào đây để trở lại bài đọc cuối cùng trong chủ đề này.",
"flag-post": "Gắn cờ bài đăng này",
"flag-user": "Gắn cờ người dùng này",
"already-flagged": "Đã Được Gắn Cờ",
@@ -74,7 +74,7 @@
"resolve-flag": "Xử Lý Cờ",
"merged-message": "Chủ đề này đã được gộp chung thành %2",
"forked-message": "This topic was forked from %2",
- "deleted-message": "Chủ đề này đã bị xóa. Chỉ người dùng có quyền quản lý chủ đề mới được xem.",
+ "deleted-message": "Chủ đề này đã bị xóa. Chỉ người dùng có đặc quyền quản lý chủ đề mới được xem.",
"following-topic.message": "Bạn sẽ nhận được thông báo khi có ai đó gửi bài viết trong chủ đề này.",
"not-following-topic.message": "Bạn sẽ thấy chủ đề này trong danh sách chủ đề chưa đọc, nhưng bạn sẽ không nhận được thông báo khi ai đó đăng lên chủ đề này.",
"ignoring-topic.message": "Bạn sẽ không thấy chủ đề này trong danh sách chủ đề chưa đọc. Bạn sẽ nhận thông báo khi bạn được đề cập hoặc bài viết của bạn được ủng hộ.",
@@ -88,7 +88,7 @@
"unwatch.title": "Ngừng xem chủ đề này",
"share-this-post": "Chia sẻ bài viết này",
"watching": "Đang xem",
- "not-watching": "Không Xem",
+ "not-watching": "Chưa Xem",
"ignoring": "Bỏ qua",
"watching.description": "Thông báo cho tôi về trả lời mới.
Hiển thị chủ đề chưa đọc",
"not-watching.description": "Không thông báo tôi các trả lời mới.
Hiển thị mục chưa đọc nếu chuyên mục bị bỏ qua.",
@@ -124,7 +124,7 @@
"post-delete-confirm": "Bạn có chắc là muốn xóa bài gửi này không?",
"post-restore-confirm": "Bạn có chắc muốn khôi phục bài đăng này không?",
"post-purge-confirm": "Bạn có chắc muốn xóa hẳn bài này?",
- "pin-modal-expiry": "Ngày hết hạn",
+ "pin-modal-expiry": "Ngày Hết Hạn",
"pin-modal-help": "Bạn có thể đặt ngày hết hạn chủ đề được ghim tại đây. Ngoài ra, bạn có thể để trống để giữ chủ đề được ghim cho đến khi chủ đề được bỏ ghim theo cách thủ công.",
"load-categories": "Đang Tải Chuyên Mục",
"confirm-move": "Di chuyển",
@@ -163,11 +163,11 @@
"composer.discard": "Huỷ bỏ",
"composer.submit": "Gửi",
"composer.additional-options": "Tùy chọn bổ sung",
- "composer.post-later": "Post Later",
+ "composer.post-later": "Đăng Sau",
"composer.schedule": "Lên lịch",
"composer.replying-to": "Đang trả lời %1",
"composer.new-topic": "Chủ đề mới",
- "composer.editing-in": "Editing post in %1",
+ "composer.editing-in": "Đang sửa bài đăng trong %1",
"composer.uploading": "đang tải lên...",
"composer.thumb-url-label": "Dán URL hình mô tả chủ đề",
"composer.thumb-title": "Thêm ảnh mô tả cho chủ đề này",
@@ -182,19 +182,19 @@
"sort-by": "Sắp xếp theo",
"oldest-to-newest": "Cũ đến mới",
"newest-to-oldest": "Mới đến cũ",
- "recently-replied": "Recently Replied",
- "recently-created": "Recently Created",
- "most-votes": "Nhiều Bình Chọn",
- "most-posts": "Nhiều Bài Đăng",
- "most-views": "Xem Nhiều",
+ "recently-replied": "Trả Lời Gần Đây",
+ "recently-created": "Đã Tạo Gần Đây",
+ "most-votes": "Nhiều Bình Chọn Nhất",
+ "most-posts": "Nhiều Bài Đăng Nhất",
+ "most-views": "Xem Nhiều Nhất",
"stale.title": "Tạo chủ đề mới thay thế?",
"stale.warning": "Chủ đề bạn đang trả lời đã khá cũ. Bạn có muốn tạo chủ đề mới, và liên kết với chủ đề hiện tại trong bài viết trả lời của bạn?",
"stale.create": "Tạo chủ đề mới",
"stale.reply-anyway": "Trả lời chủ đề này",
- "link-back": "Re: [%1](%2)",
- "diffs.title": "Lịch sử chỉnh sửa bài viết",
- "diffs.description": "Bài viết này có %1 sửa đổi. Nhấp vào một trong các bản sửa đổi bên dưới để xem nội dung bài đăng tại thời điểm đó.",
- "diffs.no-revisions-description": "Bài viết này có %1 sửa đổi",
+ "link-back": "Trả lời: [%1](%2)",
+ "diffs.title": "Lịch Sử Sửa Bài",
+ "diffs.description": "Bài này có %1 sửa đổi. Bấm vào một trong các bản sửa đổi bên dưới để xem nội dung bài tại thời điểm đó.",
+ "diffs.no-revisions-description": "Bài này có %1 sửa đổi",
"diffs.current-revision": "bản sửa đổi hiện tại",
"diffs.original-revision": "bản sửa đổi gốc",
"diffs.restore": "Khôi phục bản sửa đổi này",
@@ -208,13 +208,13 @@
"last-post": "Bài viết cuối cùng",
"go-to-my-next-post": "Đi tới bài kế tiếp của tôi",
"no-more-next-post": "Bạn không có bài viết nào khác trong chủ đề này",
- "open-composer": "Open composer",
+ "open-composer": "Mỏ composer",
"post-quick-reply": "Trả lời nhanh",
"navigator.index": "Post %1 of %2",
"navigator.unread": "%1 chưa đọc",
- "upvote-post": "Upvote post",
- "downvote-post": "Downvote post",
- "post-tools": "Post tools",
- "unread-posts-link": "Unread posts link",
- "thumb-image": "Topic thumbnail image"
+ "upvote-post": "Ủng hộ bài đăng",
+ "downvote-post": "Phản đối bài đăng",
+ "post-tools": "Công cụ đăng bài",
+ "unread-posts-link": "Liên kết bài đăng chưa đọc",
+ "thumb-image": "Ảnh thumbnail chủ đề"
}
\ No newline at end of file
diff --git a/public/language/vi/unread.json b/public/language/vi/unread.json
index a976987f49..5d814d0526 100644
--- a/public/language/vi/unread.json
+++ b/public/language/vi/unread.json
@@ -3,14 +3,14 @@
"no-unread-topics": "Không có chủ đề chưa đọc.",
"load-more": "Tải Thêm",
"mark-as-read": "Đánh dấu đã đọc",
- "mark-as-unread": "Mark as Unread",
+ "mark-as-unread": "Đánh Dấu Chưa Đọc",
"selected": "Đã chọn",
"all": "Tất cả",
"all-categories": "Tất cả danh mục",
"topics-marked-as-read.success": "Chủ đề được đánh dấu đã đọc",
"all-topics": "Tất Cả Chủ Đề",
"new-topics": "Chủ đề mới",
- "watched-topics": "Chủ đề đã xem",
- "unreplied-topics": "Chủ Đề Chưa Có Trả Lời",
+ "watched-topics": "Chủ Đề Đã Xem",
+ "unreplied-topics": "Chủ Đề Chưa Trả Lời",
"multiple-categories-selected": "Chọn Nhiều"
}
\ No newline at end of file
diff --git a/public/language/vi/uploads.json b/public/language/vi/uploads.json
index f32f535b40..49d929e52d 100644
--- a/public/language/vi/uploads.json
+++ b/public/language/vi/uploads.json
@@ -4,6 +4,6 @@
"upload-success": "Tải tệp lên thành công!",
"maximum-file-size": "Tối đa %1 kb",
"no-uploads-found": "Không có tải lên được tìm thấy",
- "public-uploads-info": "Các file tải lên được xuất bản, mọi người đều có thể xem được.",
- "private-uploads-info": "Các file tải lên được để ở chế độ bí mật, chỉ những người dùng đăng nhập mới có thể xem."
+ "public-uploads-info": "Tải lên là công khai, mọi người đều xem được.",
+ "private-uploads-info": "Tải lên là riêng tư, những ai đã đăng nhập mới có thể xem."
}
\ No newline at end of file
diff --git a/public/language/vi/user.json b/public/language/vi/user.json
index 1480a91a23..2b59e82480 100644
--- a/public/language/vi/user.json
+++ b/public/language/vi/user.json
@@ -1,9 +1,9 @@
{
- "user-menu": "User menu",
+ "user-menu": "Menu Người Dùng",
"banned": "Bị cấm",
- "unbanned": "Unbanned",
+ "unbanned": "Bỏ cấm",
"muted": "Đã Im Lặng",
- "unmuted": "Unmuted",
+ "unmuted": "Bỏ tắt tiếng",
"offline": "Ngoại tuyến",
"deleted": "Đã xoá",
"username": "Tên Đăng Nhập",
@@ -65,7 +65,7 @@
"change-picture": "Đổi Hình Ảnh",
"change-username": "Đổi tên đăng nhập",
"change-email": "Đổi email",
- "email-updated": "Email Updated",
+ "email-updated": "Đã Cập Nhật Email",
"email-same-as-password": "Vui lòng nhập mật khẩu hiện tại của bạn để tiếp tục – bạn đã nhập lại email mới",
"edit": "Sửa",
"edit-profile": "Sửa Hồ Sơ",
@@ -73,11 +73,12 @@
"uploaded-picture": "Ảnh đã tải lên",
"upload-new-picture": "Tải lên ảnh mới",
"upload-new-picture-from-url": "Tải Lên Ảnh Mới Từ URL",
- "current-password": "Mật khẩu hiện tại",
+ "current-password": "Mật Khẩu Hiện Tại",
"new-password": "Mật Khẩu Mới",
"change-password": "Đổi Mật Khẩu",
"change-password-error": "Mật khẩu không hợp lệ!",
- "change-password-error-wrong-current": "Mật khẩu hiện tại của bạn không đúng",
+ "change-password-error-wrong-current": "Mật khẩu hiện tại của bạn không đúng!",
+ "change-password-error-same-password": "Mật khẩu mới của bạn trùng với mật khẩu hiện tại của bạn, vui lòng sử dụng mật khẩu mới.",
"change-password-error-match": "Mật khẩu phải trùng khớp!",
"change-password-error-privileges": "Bạn không có quyền thay đổi mật khẩu này",
"change-password-success": "Đã cập nhật mật khẩu của bạn!",
@@ -91,7 +92,7 @@
"upload-a-picture": "Tải lên một hình ảnh",
"remove-uploaded-picture": "Xoá ảnh đã tải lên",
"upload-cover-picture": "Tải ảnh bìa lên",
- "remove-cover-picture-confirm": "Bạn có thật sự muốn xóa hình ảnh này?",
+ "remove-cover-picture-confirm": "Bạn có chắc muốn xóa ảnh bìa này?",
"crop-picture": "Cắt ảnh",
"upload-cropped-picture": "Cắt và tải lên",
"avatar-background-colour": "Màu nền ảnh đại diện",
@@ -136,7 +137,7 @@
"upvote-notif-freq.disabled": "Đã tắt",
"browsing": "Đang xem cài đặt",
"open-links-in-new-tab": "Mở liên kết trong tab mới.",
- "enable-topic-searching": "Bật tìm kiếm trong chủ đề",
+ "enable-topic-searching": "Bật Tìm Kiếm Trong Chủ Đề",
"topic-search-help": "Nếu bật, tìm kiếm trong chủ đề sẽ thay thế tìm kiếm của trình duyệt và cho phép bạn tìm kiếm trong toàn bộ chủ đề, thay vì chỉ tìm kiếm nội dung đang hiện thị trên màn hình",
"update-url-with-post-index": "Cập nhật url với chỉ mục bài viết trong khi duyệt các chủ đề",
"scroll-to-my-post": "Sau khi đăng một trả lời thì hiển thị bài viết mới",
@@ -144,36 +145,36 @@
"follow-topics-you-create": "Xem chủ đề bạn tạo",
"grouptitle": "Tiêu đề nhóm",
"group-order-help": "Chọn một nhóm và sử dụng các phím mũi tên để sắp xếp các tiêu đề",
- "show-group-title": "Show group title",
- "hide-group-title": "Hide group title",
- "order-group-up": "Order group up",
- "order-group-down": "Order group down",
+ "show-group-title": "Hiện tiêu đề nhóm",
+ "hide-group-title": "Ẩn tiêu đề nhóm",
+ "order-group-up": "Xếp nhóm lên",
+ "order-group-down": "Xếp nhóm xuống",
"no-group-title": "Không có tiêu đề nhóm",
- "select-skin": "Chọn một giao diện",
+ "select-skin": "Chọn Trang Điểm",
"default": "Mặc định (%1)",
- "no-skin": "Không Giao Diện",
- "select-homepage": "Chọn Trang chủ",
+ "no-skin": "Không Trang Điểm",
+ "select-homepage": "Chọn một Trang Chủ",
"homepage": "Trang chủ",
"homepage-description": "Chọn một trang dùng cho trang chủ diễn đàn hoặc chọn \"Không\" để dùng trang chủ mặc định.",
- "custom-route": "Đường dẫn trang chủ tuỳ chọn",
- "custom-route-help": "Nhập tên đường dẫn ở đây, không có dấu gạch chéo trước (VD: \"gan-day\" hoặc \"chuyen-muc/2/thao-luan-chung\")",
- "sso.title": "Đăng nhập một lần",
- "sso.associated": "Đã liên kết với",
- "sso.not-associated": "Nhấn vào đây để liên kết với",
+ "custom-route": "Định Tuyến Trang Chủ Tuỳ Chọn",
+ "custom-route-help": "Nhập tên đường dẫn ở đây, không có dấu gạch chéo trước (VD. \"gan-day\" or \"danh-muc/2/thao-luan-chung\")",
+ "sso.title": "Dịch Vụ Đăng Nhập Một Lần",
+ "sso.associated": "Đã kết hợp với",
+ "sso.not-associated": "Bấm ở đây để kết hợp với",
"sso.dissociate": "Tách khỏi",
"sso.dissociate-confirm-title": "Xác nhận việc tách khỏi",
"sso.dissociate-confirm": "Bạn có chắc chắn muốn tách tài khoản của mình khỏi %1?",
"info.latest-flags": "Gắn cờ mới nhất",
- "info.profile": "Profile",
- "info.post": "Post",
- "info.view-flag": "View flag",
- "info.reported-by": "Reported by:",
+ "info.profile": "Hồ sơ",
+ "info.post": "Bài viết",
+ "info.view-flag": "Xem cờ",
+ "info.reported-by": "Báo cáo bởi:",
"info.no-flags": "Không Tìm Thấy Bài Bị Gắn Cờ",
"info.ban-history": "Lịch Sử Cấm Gần Đây",
"info.no-ban-history": "Người dùng này chưa bao giờ bị cấm",
"info.banned-until": "Bị cấm cho đến %1",
"info.banned-expiry": "Hết hạn",
- "info.ban-expired": "Ban expired",
+ "info.ban-expired": "Hết hạn cấm",
"info.banned-permanently": "Bị cấm vĩnh viễn",
"info.banned-reason-label": "Lý do",
"info.banned-no-reason": "Không có lí do.",
@@ -182,7 +183,7 @@
"info.muted-until": "Đã tắt tiếng cho đến %1",
"info.muted-expiry": "Hết hạn",
"info.muted-no-reason": "Không có lý do nào được đưa ra.",
- "info.username-history": "Lịch Sử Tên Người Dùng",
+ "info.username-history": "Lịch Sử Tên Đăng Nhập",
"info.email-history": "Lịch sử email",
"info.moderation-note": "Ghi chú quản lí",
"info.moderation-note.success": "Đã lưu ghi chú quản lý",
@@ -202,21 +203,21 @@
"consent.right-of-access": "Bạn có quyền truy cập",
"consent.right-of-access-description": "Bạn có quyền truy cập bất kỳ dữ liệu trang web này thu thập. Bạn có thể lấy một bản sao của dữ liệu này bằng cách nhấp vào nút thích hợp bên dưới.",
"consent.right-to-rectification": "Bạn có quyền chỉnh lý",
- "consent.right-to-rectification-description": "Bạn có quyền thay đổi hoặc cập nhật bất kỳ dữ liệu không chính xác nào được cung cấp cho chúng tôi. Hồ sơ của bạn có thể được cập nhật bằng cách chỉnh sửa hồ sơ của bạn và nội dung bài đăng luôn có thể được chỉnh sửa. Nếu không đúng như vậy, hãy liên hệ nhóm quản trị của trang này.",
+ "consent.right-to-rectification-description": "Bạn có quyền thay đổi hoặc cập nhật dữ liệu không chính xác nào đã cung cấp cho chúng tôi. Hồ sơ của bạn có thể cập nhật bằng cách chỉnh sửa hồ sơ của bạn và nội dung bài đăng luôn có thể chỉnh sửa. Nếu không đúng, hãy liên hệ nhóm quản trị của trang này.",
"consent.right-to-erasure": "Bạn có quyền xóa",
"consent.right-to-erasure-description": "Bất cứ lúc nào, bạn có thể thu hồi sự đồng ý của bạn về thu thập và / hoặc xử lý dữ liệu bằng cách xóa tài khoản của bạn. Bạn có thể xóa được hồ sơ cá nhân, mặc dù nội dung bài đăng của bạn vẫn còn. Nếu bạn muốn xóa cả tài khoản và nội dung, hãy liên hệ với nhóm quản trị trang web này.",
"consent.right-to-data-portability": "Bạn có quyền di chuyển dữ liệu",
"consent.right-to-data-portability-description": "Bạn có thể yêu cầu chúng tôi xuất ra một bản máy có thể đọc được về bất kỳ dữ liệu thu thập về bạn và tài khoản của bạn. Bạn có thể làm như vậy bằng cách nhấp vào nút dành riêng bên dưới.",
- "consent.export-profile": "Xuất Tệp Hồ Sơ (.json)",
+ "consent.export-profile": "Xuất Hồ Sơ (.json)",
"consent.export-profile-success": "Đang xuất hồ sơ, bạn sẽ nhận được thông báo khi hoàn tất.",
"consent.export-uploads": "Xuất nội dung đã tải lên (.zip)",
"consent.export-uploads-success": "Đang xuất tải lên, bạn sẽ nhận được thông báo khi hoàn tất.",
"consent.export-posts": "Xuất bài viết (.csv)",
"consent.export-posts-success": "Đang xuất bài viết, bạn sẽ nhận được thông báo khi hoàn tất.",
"emailUpdate.intro": "Vui lòng nhập địa chỉ email của bạn dưới đây. Diễn đàn này sử dụng địa chỉ email của bạn để nhận thông báo và thông báo theo lịch trình, cũng như để khôi phục tài khoản trong trường hợp mất mật khẩu.",
- "emailUpdate.optional": "Mục này không bắt buộc. Bạn không có nghĩa vụ cung cấp địa chỉ email của mình, nhưng nếu không có email được xác thực, bạn sẽ không thể khôi phục tài khoản hoặc đăng nhập bằng email của mình.",
+ "emailUpdate.optional": "Mục này là tùy chọn. Bạn không cần cung cấp email, nhưng nếu không có email bạn sẽ không thể khôi phục tài khoản hoặc đăng nhập bằng email của mình.",
"emailUpdate.required": "Trường này là bắt buộc.",
- "emailUpdate.change-instructions": "Một email xác nhận sẽ được gửi đến địa chỉ email đã nhập với một liên kết duy nhất. Việc truy cập vào liên kết đó sẽ xác nhận quyền sở hữu của bạn đối với địa chỉ email và nó sẽ có hiệu lực trên tài khoản của bạn. Bất cứ lúc nào, bạn có thể cập nhật email của mình trong hồ sơ từ trong trang tài khoản của bạn.",
+ "emailUpdate.change-instructions": "Email xác nhận sẽ gửi đến địa chỉ email đã nhập với một liên kết duy nhất. Truy cập liên kết đó sẽ xác nhận email đó là của bạn và nó gắn liền với tài khoản của bạn. Bất cứ lúc nào, bạn có thể cập nhật email của mình trong hồ sơ từ trong trang tài khoản của bạn.",
"emailUpdate.password-challenge": "Nhập mật khẩu của bạn để xác minh quyền sở hữu tài khoản.",
"emailUpdate.pending": "Địa chỉ email của bạn chưa được xác nhận, nhưng một email đã được gửi đi yêu cầu xác nhận. Nếu bạn muốn vô hiệu hóa yêu cầu đó và gửi yêu cầu xác nhận mới, vui lòng điền vào mẫu dưới đây."
}
\ No newline at end of file
diff --git a/public/language/vi/users.json b/public/language/vi/users.json
index dca9e9820e..7267a2b967 100644
--- a/public/language/vi/users.json
+++ b/public/language/vi/users.json
@@ -1,15 +1,16 @@
{
"all-users": "Tất Cả Người Dùng",
+ "followed-users": "Người Theo Dõi",
"latest-users": "Thành viên mới nhất",
"top-posters": "Thành viên đăng bài nhiều nhất",
- "most-reputation": "Nhiều Uy Tín",
- "most-flags": "Gắn cờ nhiều",
+ "most-reputation": "Uy Tín Nhất",
+ "most-flags": "Nhiều Cờ Nhất",
"search": "Tìm kiếm",
"enter-username": "Nhập tên đăng nhập để tìm",
"search-user-for-chat": "Tìm kiếm người dùng để bắt đầu trò chuyện",
"load-more": "Tải thêm",
- "users-found-search-took": "Đã tìm thấy %1 người! Tìm kiếm mất %2 giây.",
- "filter-by": "Lọc Bởi",
+ "users-found-search-took": "Tìm được %1 người! Tìm kiếm mất %2 giây.",
+ "filter-by": "Lọc Theo",
"online-only": "Chỉ trực tuyến",
"invite": "Mời",
"prompt-email": "Thư điện tử:",
diff --git a/public/language/zh-CN/admin/advanced/events.json b/public/language/zh-CN/admin/advanced/events.json
index b6c3eba1c4..9c9a9bce50 100644
--- a/public/language/zh-CN/admin/advanced/events.json
+++ b/public/language/zh-CN/admin/advanced/events.json
@@ -9,9 +9,9 @@
"filter-type": "事件类型",
"filter-start": "开始时间",
"filter-end": "结束时间",
- "filter-user": "Filter by User",
- "filter-user.placeholder": "Type user name to filter...",
- "filter-group": "Filter by Group",
- "filter-group.placeholder": "Type group name to filter...",
+ "filter-user": "按用户过滤",
+ "filter-user.placeholder": "输入用户名以过滤",
+ "filter-group": "按用户群组过滤",
+ "filter-group.placeholder": "输入群组名以过滤",
"filter-per-page": "每页"
}
\ No newline at end of file
diff --git a/public/language/zh-CN/admin/dashboard.json b/public/language/zh-CN/admin/dashboard.json
index 5cea605a5c..d4c79cd879 100644
--- a/public/language/zh-CN/admin/dashboard.json
+++ b/public/language/zh-CN/admin/dashboard.json
@@ -95,7 +95,7 @@
"expand-analytics": "展开统计数据",
"clear-search-history": "清空搜索历史",
"clear-search-history-confirm": "您确定您要删除搜索历史吗?",
- "search-term": "Term",
+ "search-term": "内容",
"search-count": "计数",
- "view-all": "浏览全部"
+ "view-all": "查看全部"
}
diff --git a/public/language/zh-CN/admin/development/info.json b/public/language/zh-CN/admin/development/info.json
index 00ceddc309..bc2790c78e 100644
--- a/public/language/zh-CN/admin/development/info.json
+++ b/public/language/zh-CN/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1个节点在%2ms内响应!",
"host": "主机",
- "primary": "主/运行任务",
+ "primary": "primary / jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "在线",
@@ -19,6 +19,7 @@
"registered": "已注册",
"sockets": "接口",
+ "connection-count": "Connection Count",
"guests": "游客",
"info": "信息"
diff --git a/public/language/zh-CN/admin/extend/widgets.json b/public/language/zh-CN/admin/extend/widgets.json
index d88d368e44..0377d7549f 100644
--- a/public/language/zh-CN/admin/extend/widgets.json
+++ b/public/language/zh-CN/admin/extend/widgets.json
@@ -12,6 +12,8 @@
"container.card": "卡",
"container.card-header": "卡标题",
"container.card-body": "卡内容",
+ "container.title": "Title",
+ "container.body": "Body",
"container.alert": "警报",
"alert.confirm-delete": "确认删除此窗口部件?",
diff --git a/public/language/zh-CN/admin/manage/privileges.json b/public/language/zh-CN/admin/manage/privileges.json
index 7bb5c09667..5c80c8c64a 100644
--- a/public/language/zh-CN/admin/manage/privileges.json
+++ b/public/language/zh-CN/admin/manage/privileges.json
@@ -18,9 +18,9 @@
"search-content": "搜索内容",
"search-users": "搜索用户",
"search-tags": "搜索标签",
- "view-users": "浏览用户",
- "view-tags": "浏览标签",
- "view-groups": "浏览群组",
+ "view-users": "查看用户",
+ "view-tags": "查看标签",
+ "view-groups": "查看群组",
"allow-local-login": "本地登录",
"allow-group-creation": "群组创建",
"view-users-info": "查看用户信息",
diff --git a/public/language/zh-CN/admin/manage/users.json b/public/language/zh-CN/admin/manage/users.json
index e474cc27d3..95d4388e59 100644
--- a/public/language/zh-CN/admin/manage/users.json
+++ b/public/language/zh-CN/admin/manage/users.json
@@ -4,21 +4,21 @@
"edit": "操作",
"make-admin": "设为管理",
"remove-admin": "取消管理员",
- "change-email": "Change Email",
+ "change-email": "更改Email地址",
"new-email": "New Email",
"validate-email": "验证邮箱",
"send-validation-email": "发送验证邮件",
- "change-password": "Change Password",
+ "change-password": "更改密码",
"password-reset-email": "发送密码重置邮件",
"force-password-reset": "强制密码重置 & 登录用户已退出",
- "ban": "Ban",
- "ban-users": "Ban User(s)",
+ "ban": "封禁",
+ "ban-users": "封禁用户",
"temp-ban": "暂时封禁用户",
"unban": "解禁用户",
"reset-lockout": "重设锁定",
"reset-flags": "重设举报",
- "delete": "Delete",
- "delete-users": "Delete User(s)",
+ "delete": "删除",
+ "delete-users": "删除用户",
"delete-content": "删除用户内容",
"purge": "删除用户和内容",
"download-csv": "下载CSV",
@@ -86,7 +86,7 @@
"alerts.button-ban-x": "封禁 %1 名用户",
"alerts.unban-success": "用户已解封!",
"alerts.lockout-reset-success": "锁定已重置!",
- "alerts.password-change-success": "Password(s) changed!",
+ "alerts.password-change-success": "密码已更改",
"alerts.flag-reset-success": "举报已重置!",
"alerts.no-remove-yourself-admin": "您无法撤销自己的管理员身份!",
"alerts.make-admin-success": "此用户已成为管理员",
@@ -112,7 +112,7 @@
"alerts.create": "创建用户",
"alerts.button-create": "创建",
"alerts.button-cancel": "取消",
- "alerts.button-change": "Change",
+ "alerts.button-change": "更改",
"alerts.error-passwords-different": "两次输入的密码必须相同!",
"alerts.error-x": "错误
%1
", "alerts.create-success": "用户已创建!", @@ -120,8 +120,8 @@ "alerts.prompt-email": "邮件:", "alerts.email-sent-to": "已发送邀请给 %1", "alerts.x-users-found": "找到 %1 位用户(耗时 %2 秒)", - "alerts.select-a-single-user-to-change-email": "Select a single user to change email", - "export": "Export", + "alerts.select-a-single-user-to-change-email": "选择单个用户以更改其Email", + "export": "导出", "export-users-fields-title": "选择CSV文件", "export-field-email": "邮件", "export-field-username": "用户名", @@ -146,6 +146,6 @@ "export-users-started": "导出用户为 csv,这可能需要一些时间。当导出完成时你会收到通知。", "export-users-completed": "用户列表已被导出为 CSV 文件,点击以下载。", "email": "Email", - "password": "Password", - "manage": "Manage" + "password": "密码", + "manage": "管理" } \ No newline at end of file diff --git a/public/language/zh-CN/admin/settings/navigation.json b/public/language/zh-CN/admin/settings/navigation.json index b0b0d94ed7..172877bc3a 100644 --- a/public/language/zh-CN/admin/settings/navigation.json +++ b/public/language/zh-CN/admin/settings/navigation.json @@ -10,7 +10,7 @@ "id": "ID:可选", "properties": "属性:", - "show-to-groups": "Show to Groups:", + "show-to-groups": "向以下群组展示", "open-new-window": "在新窗口中打开", "dropdown": "下拉列表", "dropdown-placeholder": "将你的下拉菜单项目放在下面,即: