diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index fb2bd3ccce..e74e58c07b 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -80,7 +80,7 @@ jobs:
touch "${{ runner.temp }}/digests/${digest#sha256:}"
- name: Upload digest
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v5
with:
name: digests-${{ env.PLATFORM_PAIR }}
path: ${{ runner.temp }}/digests/*
@@ -96,7 +96,7 @@ jobs:
echo "IMAGE=ghcr.io/${GITHUB_REPOSITORY@L}" >> $GITHUB_ENV
echo "CURRENT_DATE_NST=$(date +'%Y%m%d-%H%M%S' -d '-3 hours -30 minutes')" >> $GITHUB_ENV
- name: Download digests
- uses: actions/download-artifact@v5
+ uses: actions/download-artifact@v6
with:
path: ${{ runner.temp }}/digests
pattern: digests-*
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index a94157f446..b1ee43512d 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -48,7 +48,7 @@ jobs:
services:
postgres:
- image: 'postgres:17-alpine'
+ image: 'postgres:18-alpine'
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
@@ -63,7 +63,7 @@ jobs:
- 5432:5432
redis:
- image: 'redis:8.2.1'
+ image: 'redis:8.4.0'
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
@@ -75,7 +75,7 @@ jobs:
- 6379:6379
mongo:
- image: 'mongo:8.0'
+ image: 'mongo:8.2'
ports:
# Maps port 27017 on service container to the host
- 27017:27017
@@ -86,7 +86,7 @@ jobs:
- run: cp install/package.json package.json
- name: Install Node
- uses: actions/setup-node@v5
+ uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fec4e9ed8e..47192ee9f1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,43 @@
+#### v4.6.3 (2025-11-20)
+
+##### Chores
+
+* incrementing version number - v4.6.2 (f98747db)
+* update changelog for v4.6.2 (8da3819c)
+* incrementing version number - v4.6.1 (f47aa678)
+* incrementing version number - v4.6.0 (ee395bc5)
+* incrementing version number - v4.5.2 (ad2da639)
+* incrementing version number - v4.5.1 (69f4b61f)
+* incrementing version number - v4.5.0 (f05c5d06)
+* incrementing version number - v4.4.6 (074043ad)
+* incrementing version number - v4.4.5 (6f106923)
+* incrementing version number - v4.4.4 (d323af44)
+* incrementing version number - v4.4.3 (d354c2eb)
+* incrementing version number - v4.4.2 (55c510ae)
+* incrementing version number - v4.4.1 (5ae79b4e)
+* incrementing version number - v4.4.0 (0a75eee3)
+* incrementing version number - v4.3.2 (b92b5d80)
+* incrementing version number - v4.3.1 (308e6b9f)
+* incrementing version number - v4.3.0 (bff291db)
+* incrementing version number - v4.2.2 (17fecc24)
+* incrementing version number - v4.2.1 (852a270c)
+* incrementing version number - v4.2.0 (87581958)
+* incrementing version number - v4.1.1 (b2afbb16)
+* incrementing version number - v4.1.0 (36c80850)
+* incrementing version number - v4.0.6 (4a52fb2e)
+* incrementing version number - v4.0.5 (1792a62b)
+* incrementing version number - v4.0.4 (b1125cce)
+* incrementing version number - v4.0.3 (2b65c735)
+* incrementing version number - v4.0.2 (73fe5fcf)
+* incrementing version number - v4.0.1 (a461b758)
+* incrementing version number - v4.0.0 (c1eaee45)
+
+##### Bug Fixes
+
+* update validator dep. to get fix for CVE-2025-56200 (af477d0c)
+* missing logic in mocks.notes.private that precluded the use of emoji (76a07d59)
+* tiny fix for IS when page is empty (12dab849)
+
#### v4.6.2 (2025-11-19)
##### Chores
diff --git a/docker-compose-pgsql.yml b/docker-compose-pgsql.yml
index 3e32023939..4ff8db6428 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:17.6-alpine
+ image: postgres:18.1-alpine
restart: unless-stopped
environment:
POSTGRES_USER: nodebb
@@ -24,7 +24,7 @@ services:
- postgres-data:/var/lib/postgresql/data
redis:
- image: redis:8.2.1-alpine
+ image: redis:8.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 98bceb6721..6334267ff7 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:8.2.1-alpine
+ image: redis:8.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 ec096eb060..54e178d336 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -24,7 +24,7 @@ services:
- mongo-data:/data/db
- ./install/docker/mongodb-user-init.js:/docker-entrypoint-initdb.d/user-init.js
redis:
- image: redis:8.2.1-alpine
+ image: redis:8.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
@@ -34,7 +34,7 @@ services:
- redis
postgres:
- image: postgres:17.6-alpine
+ image: postgres:18.1-alpine
restart: unless-stopped
environment:
POSTGRES_USER: nodebb
diff --git a/install/data/defaults.json b/install/data/defaults.json
index 574a8bfe01..67557efabe 100644
--- a/install/data/defaults.json
+++ b/install/data/defaults.json
@@ -38,6 +38,7 @@
"maximumTagLength": 15,
"undoTimeout": 0,
"allowTopicsThumbnail": 1,
+ "showPostUploadsAsThumbnails": 1,
"registrationType": "normal",
"registrationApprovalType": "normal",
"allowAccountDelete": 1,
diff --git a/install/package.json b/install/package.json
index 64b015b273..36c08a9e2e 100644
--- a/install/package.json
+++ b/install/package.json
@@ -33,27 +33,27 @@
"@fontsource/inter": "5.2.8",
"@fontsource/poppins": "5.2.7",
"@fortawesome/fontawesome-free": "6.7.2",
- "@isaacs/ttlcache": "1.4.1",
+ "@isaacs/ttlcache": "2.1.2",
"@nodebb/spider-detector": "2.0.3",
"@popperjs/core": "2.11.8",
"@textcomplete/contenteditable": "0.1.13",
"@textcomplete/core": "0.1.13",
"@textcomplete/textarea": "0.1.13",
- "ace-builds": "1.43.3",
+ "ace-builds": "1.43.4",
"archiver": "7.0.1",
"async": "3.2.6",
- "autoprefixer": "10.4.21",
- "bcryptjs": "3.0.2",
+ "autoprefixer": "10.4.22",
+ "bcryptjs": "3.0.3",
"benchpressjs": "2.5.5",
"body-parser": "2.2.0",
"bootbox": "6.0.4",
"bootstrap": "5.3.8",
"bootswatch": "5.3.8",
"chalk": "4.1.2",
- "chart.js": "4.5.0",
+ "chart.js": "4.5.1",
"cli-graph": "3.2.2",
"clipboard": "2.0.11",
- "commander": "14.0.1",
+ "commander": "14.0.2",
"compare-versions": "6.1.1",
"compression": "1.8.1",
"connect-flash": "0.1.1",
@@ -61,15 +61,15 @@
"connect-pg-simple": "10.0.0",
"connect-redis": "9.0.0",
"cookie-parser": "1.4.7",
- "cron": "4.3.3",
+ "cron": "4.3.4",
"cropperjs": "1.6.2",
"csrf-sync": "4.2.1",
"daemon": "1.1.0",
"diff": "8.0.2",
- "esbuild": "0.25.10",
+ "esbuild": "0.27.0",
"express": "4.21.2",
"express-session": "1.18.2",
- "express-useragent": "1.0.15",
+ "express-useragent": "2.0.2",
"fetch-cookie": "3.1.0",
"file-loader": "6.2.0",
"fs-extra": "11.3.2",
@@ -91,27 +91,28 @@
"lru-cache": "11.2.2",
"mime": "3.0.0",
"mkdirp": "3.0.1",
- "mongodb": "6.20.0",
+ "mongodb": "6.21.0",
"morgan": "1.10.1",
"mousetrap": "1.6.5",
"multer": "2.0.2",
"nconf": "0.13.0",
"nodebb-plugin-2factor": "7.6.0",
"nodebb-plugin-composer-default": "10.3.1",
- "nodebb-plugin-dbsearch": "6.3.2",
+ "nodebb-plugin-dbsearch": "6.3.4",
"nodebb-plugin-emoji": "6.0.5",
"nodebb-plugin-emoji-android": "4.1.1",
- "nodebb-plugin-markdown": "13.2.1",
- "nodebb-plugin-mentions": "4.7.6",
+ "nodebb-plugin-link-preview": "2.1.5",
+ "nodebb-plugin-markdown": "13.2.2",
+ "nodebb-plugin-mentions": "4.8.3",
"nodebb-plugin-spam-be-gone": "2.3.2",
- "nodebb-plugin-web-push": "0.7.5",
+ "nodebb-plugin-web-push": "0.7.6",
"nodebb-rewards-essentials": "1.0.2",
- "nodebb-theme-harmony": "2.1.21",
+ "nodebb-theme-harmony": "2.1.25",
"nodebb-theme-lavender": "7.1.19",
"nodebb-theme-peace": "2.2.49",
- "nodebb-theme-persona": "14.1.15",
+ "nodebb-theme-persona": "14.1.18",
"nodebb-widget-essentials": "7.0.40",
- "nodemailer": "7.0.6",
+ "nodemailer": "7.0.10",
"nprogress": "0.2.0",
"passport": "0.7.0",
"passport-http-bearer": "1.0.1",
@@ -123,18 +124,18 @@
"pretty": "^2.0.0",
"progress-webpack-plugin": "1.0.16",
"prompt": "1.3.0",
- "redis": "5.8.2",
- "rimraf": "6.0.1",
+ "redis": "5.9.0",
+ "rimraf": "6.1.2",
"rss": "1.2.2",
"rtlcss": "4.3.0",
"sanitize-html": "2.17.0",
- "sass": "1.93.2",
+ "sass": "1.94.1",
"satori": "0.18.3",
"sbd": "^1.0.19",
- "semver": "7.7.2",
+ "semver": "7.7.3",
"serve-favicon": "2.5.1",
- "sharp": "0.34.4",
- "sitemap": "8.0.0",
+ "sharp": "0.34.5",
+ "sitemap": "9.0.0",
"socket.io": "4.8.1",
"socket.io-client": "4.8.1",
"@socket.io/redis-adapter": "8.3.0",
@@ -149,10 +150,10 @@
"tough-cookie": "6.0.0",
"undici": "^7.10.0",
"validator": "13.15.23",
- "webpack": "5.102.0",
+ "webpack": "5.103.0",
"webpack-merge": "6.0.1",
- "winston": "3.17.0",
- "workerpool": "9.3.4",
+ "winston": "3.18.3",
+ "workerpool": "10.0.1",
"xml": "1.0.1",
"xregexp": "5.1.2",
"yargs": "17.7.2",
@@ -160,26 +161,26 @@
},
"devDependencies": {
"@apidevtools/swagger-parser": "10.1.0",
- "@commitlint/cli": "20.0.0",
+ "@commitlint/cli": "20.1.0",
"@commitlint/config-angular": "20.0.0",
"coveralls": "3.1.1",
- "@eslint/js": "9.36.0",
- "@stylistic/eslint-plugin": "5.4.0",
+ "@eslint/js": "9.39.1",
+ "@stylistic/eslint-plugin": "5.6.1",
"eslint-config-nodebb": "1.1.11",
"eslint-plugin-import": "2.32.0",
"grunt": "1.6.1",
"grunt-contrib-watch": "1.1.0",
"husky": "8.0.3",
- "jsdom": "27.0.0",
- "lint-staged": "16.2.3",
- "mocha": "11.7.2",
+ "jsdom": "27.2.0",
+ "lint-staged": "16.2.6",
+ "mocha": "11.7.5",
"mocha-lcov-reporter": "1.3.0",
"mockdate": "3.0.5",
"nyc": "17.1.0",
- "smtp-server": "3.14.0"
+ "smtp-server": "3.16.1"
},
"optionalDependencies": {
- "sass-embedded": "1.93.2"
+ "sass-embedded": "1.93.3"
},
"resolutions": {
"*/jquery": "3.7.1"
@@ -202,4 +203,4 @@
"url": "https://github.com/barisusakli"
}
]
-}
\ No newline at end of file
+}
diff --git a/public/language/ar/admin/manage/categories.json b/public/language/ar/admin/manage/categories.json
index 42282e425d..64beb3ce28 100644
--- a/public/language/ar/admin/manage/categories.json
+++ b/public/language/ar/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/ar/admin/settings/uploads.json b/public/language/ar/admin/settings/uploads.json
index b8d85be443..af3efb16f7 100644
--- a/public/language/ar/admin/settings/uploads.json
+++ b/public/language/ar/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "السماح للاعضاء برفع الصور المصغرة للموضوع",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "حجم الصورة المصغرة للموضوع",
"allowed-file-extensions": "إمتدادات الملفات المسموح بها",
"allowed-file-extensions-help": "أدخل قائمة بامتدادات الملفات مفصولة بفواصل (مثال: pdf,xls,doc). القائمة الفارغة تعني أن كل الامتدادات مسموح بها.",
diff --git a/public/language/az/admin/manage/categories.json b/public/language/az/admin/manage/categories.json
index 1fc1544231..ed6b0c63d5 100644
--- a/public/language/az/admin/manage/categories.json
+++ b/public/language/az/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Kateqoriya dəstəyi",
"handle.help": "Kateqoriya dəstəyiniz istifadəçi adına bənzər digər şəbəkələrdə bu kateqoriyanın təmsili kimi istifadə olunur. Kateqoriya sapı mövcud istifadəçi adı və ya istifadəçi qrupuna uyğun olmamalıdır.",
"description": "Kateqoriya təsviri",
- "federatedDescription": "Federasiya təsviri",
- "federatedDescription.help": "Bu mətn digər vebsaytlar/tətbiqlər tərəfindən sorğulandıqda kateqoriya təsvirinə əlavə olunacaq.",
- "federatedDescription.default": "Bu, aktual müzakirələrdən ibarət forum kateqoriyasıdır. Bu kateqoriyanı qeyd etməklə yeni müzakirələrə başlaya bilərsiniz.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Arxa fon rəngi",
diff --git a/public/language/az/admin/settings/uploads.json b/public/language/az/admin/settings/uploads.json
index ceed4ae396..a403a54e34 100644
--- a/public/language/az/admin/settings/uploads.json
+++ b/public/language/az/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maksimum şəklin hündürlüyü (piksellə)",
"reject-image-height-help": "Bu dəyərdən yüksək olan şəkillər rədd ediləcək.",
"allow-topic-thumbnails": "İstifadəçilərə mövzu miniatürlərini yükləməyə icazə ver",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Mövzu thumb ölçüsü",
"allowed-file-extensions": "İcazə verilən fayl uzantıları",
"allowed-file-extensions-help": "Fayl uzantılarının vergüllə ayrılmış siyahısını buraya daxil edin (məsələn, pdf, xls, doc). Boş siyahı bütün genişləndirmələrə icazə verildiyini bildirir.",
diff --git a/public/language/bg/admin/manage/categories.json b/public/language/bg/admin/manage/categories.json
index ee60e90e0c..755a7a8caa 100644
--- a/public/language/bg/admin/manage/categories.json
+++ b/public/language/bg/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Идентификатор на категорията",
"handle.help": "Идентификаторът на категорията се ползва за представяне на тази категория в други мрежи, подобно на потребителското име. Този идентификатор не трябва да съвпада със съществуващо потребителско име или потребителска група.",
"description": "Описание на категорията",
- "federatedDescription": "Федерирано описание",
- "federatedDescription.help": "Този текст ще бъде добавен към описанието на категорията, когато други уеб сайтове и приложения изискват информация за нея.",
- "federatedDescription.default": "Това е категория във форума, съдържаща тематични дискусии. Може да започнете нова дискусия, като споменете този форум.",
"topic-template": "Шаблон за темите",
"topic-template.help": "Създайте шаблон за новите теми в тази категория.",
"bg-color": "Цвят на фона",
diff --git a/public/language/bg/admin/settings/uploads.json b/public/language/bg/admin/settings/uploads.json
index 4820730824..0cb47ec123 100644
--- a/public/language/bg/admin/settings/uploads.json
+++ b/public/language/bg/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Максимална височина на изображенията (в пиксели)",
"reject-image-height-help": "Изображенията, чиято височина е по-голяма от тази стойност, ще бъдат отхвърляни.",
"allow-topic-thumbnails": "Позволяване на потребителите да качват миниатюрни изображения за темите",
+ "show-post-uploads-as-thumbnails": "Показване на качените файлове в публикациите като миниатюрни изображения",
"topic-thumb-size": "Размер на миниатюрите за темите",
"allowed-file-extensions": "Разрешени файлови разширения",
"allowed-file-extensions-help": "Въведете файловите разширения, разделени със запетаи (пример: pdf,xls,doc). Ако списъкът е празен, всички файлови разширения ще бъдат разрешени.",
diff --git a/public/language/bn/admin/manage/categories.json b/public/language/bn/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/bn/admin/manage/categories.json
+++ b/public/language/bn/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/bn/admin/settings/uploads.json b/public/language/bn/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/bn/admin/settings/uploads.json
+++ b/public/language/bn/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/cs/admin/manage/categories.json b/public/language/cs/admin/manage/categories.json
index 1623ea6e66..0a8a39620d 100644
--- a/public/language/cs/admin/manage/categories.json
+++ b/public/language/cs/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Popis kategorie",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Barva pozadí",
diff --git a/public/language/cs/admin/settings/uploads.json b/public/language/cs/admin/settings/uploads.json
index dea6aa44df..90d14e88d8 100644
--- a/public/language/cs/admin/settings/uploads.json
+++ b/public/language/cs/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximální výška obrázku (v pixelech)",
"reject-image-height-help": "Vyšší obrázek než tato hodnota bude zamítnut.",
"allow-topic-thumbnails": "Povolit uživatelům nahrát miniatury témat",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Velikost miniatury tématu",
"allowed-file-extensions": "Povolené přípony souborů",
"allowed-file-extensions-help": "Zadejte seznam přípon souborů oddělených čárkou (např.: pdf, xls, doc). Prázdný seznam znamená, že všechny přípony jsou povoleny.",
diff --git a/public/language/da/admin/manage/categories.json b/public/language/da/admin/manage/categories.json
index 8985fc7d64..7ba0e7739a 100644
--- a/public/language/da/admin/manage/categories.json
+++ b/public/language/da/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/da/admin/settings/uploads.json b/public/language/da/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/da/admin/settings/uploads.json
+++ b/public/language/da/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/de/admin/manage/categories.json b/public/language/de/admin/manage/categories.json
index 968badebce..c5c971a259 100644
--- a/public/language/de/admin/manage/categories.json
+++ b/public/language/de/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Kategorie-Beschreibung",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Hintergrundfarbe",
diff --git a/public/language/de/admin/settings/uploads.json b/public/language/de/admin/settings/uploads.json
index 269bfb8178..75a5223588 100644
--- a/public/language/de/admin/settings/uploads.json
+++ b/public/language/de/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximale Bildhöhe (in Pixeln)",
"reject-image-height-help": "Höhere Bilder werden abgelehnt.",
"allow-topic-thumbnails": "Nutzern erlauben Themen Thumbnails hochzuladen",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Thema Thumbnailgröße",
"allowed-file-extensions": "Erlaubte Dateiendungen",
"allowed-file-extensions-help": "Komma-getrennte Liste der Dateiendungen hier einfügen (z.B. pdf,xls,doc). Eine leere Liste bedeutet, dass alle Dateiendungen erlaubt sind.",
diff --git a/public/language/el/admin/manage/categories.json b/public/language/el/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/el/admin/manage/categories.json
+++ b/public/language/el/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/el/admin/settings/uploads.json b/public/language/el/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/el/admin/settings/uploads.json
+++ b/public/language/el/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/en-GB/admin/manage/categories.json b/public/language/en-GB/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/en-GB/admin/manage/categories.json
+++ b/public/language/en-GB/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/en-GB/admin/settings/uploads.json b/public/language/en-GB/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/en-GB/admin/settings/uploads.json
+++ b/public/language/en-GB/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/en-US/admin/manage/categories.json b/public/language/en-US/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/en-US/admin/manage/categories.json
+++ b/public/language/en-US/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/en-US/admin/settings/uploads.json b/public/language/en-US/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/en-US/admin/settings/uploads.json
+++ b/public/language/en-US/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/en-x-pirate/admin/manage/categories.json b/public/language/en-x-pirate/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/en-x-pirate/admin/manage/categories.json
+++ b/public/language/en-x-pirate/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/en-x-pirate/admin/settings/uploads.json b/public/language/en-x-pirate/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/en-x-pirate/admin/settings/uploads.json
+++ b/public/language/en-x-pirate/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/es/admin/manage/categories.json b/public/language/es/admin/manage/categories.json
index 5cd865c742..2980f59ab2 100644
--- a/public/language/es/admin/manage/categories.json
+++ b/public/language/es/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Identificador de categoría ",
"handle.help": "Tu identificador de categoría está siendo utilizado como representación de esta categoría a través de otras redes, similar al nombre de usuario. El identificador de la categoría no puede ser igual a un nombre de usuario o usuario de grupo existente.",
"description": "Descripción de Categoría",
- "federatedDescription": "Descripción federada",
- "federatedDescription.help": "Este texto será agregado a la descripción de la categoría cuando sea buscado por otros sitios y aplicaciones.",
- "federatedDescription.default": "Esta es una categoría de foro que contiene discusiones pasadas. Puedes iniciar nuevas discusiones mencionando esta categoría.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Color de Fondo",
diff --git a/public/language/es/admin/settings/uploads.json b/public/language/es/admin/settings/uploads.json
index 60273aa8ac..d92fe07210 100644
--- a/public/language/es/admin/settings/uploads.json
+++ b/public/language/es/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Altura máxima de la imágen (en píxeles)",
"reject-image-height-help": "Las imágenes más altas que este valor serán rechazadas.",
"allow-topic-thumbnails": "Permitir a los usuarios subir imágenes en miniatura para los temas",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Tamaño de la Imagen en Miniatura para el Tema",
"allowed-file-extensions": "Permitir Extensiones de Archivo",
"allowed-file-extensions-help": "Introduzca una lista de extensiones de archivos, separadas por comas, aquí (por ejemplo: pdf,xls,doc). Una lista vacía significa que se permiten todas las extensiones.",
diff --git a/public/language/et/admin/manage/categories.json b/public/language/et/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/et/admin/manage/categories.json
+++ b/public/language/et/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/et/admin/settings/uploads.json b/public/language/et/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/et/admin/settings/uploads.json
+++ b/public/language/et/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/fa-IR/admin/manage/categories.json b/public/language/fa-IR/admin/manage/categories.json
index 2f2a16a5ec..923d4defe7 100644
--- a/public/language/fa-IR/admin/manage/categories.json
+++ b/public/language/fa-IR/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "توضیحات دستهبندی",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/fa-IR/admin/settings/uploads.json b/public/language/fa-IR/admin/settings/uploads.json
index baf90ba0e4..507f64c898 100644
--- a/public/language/fa-IR/admin/settings/uploads.json
+++ b/public/language/fa-IR/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/fi/admin/manage/categories.json b/public/language/fi/admin/manage/categories.json
index 42aea3b6bb..c15a783323 100644
--- a/public/language/fi/admin/manage/categories.json
+++ b/public/language/fi/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Kategorian kuvaus",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Taustaväri",
diff --git a/public/language/fi/admin/settings/uploads.json b/public/language/fi/admin/settings/uploads.json
index a1412b0ed2..792ccd9d3d 100644
--- a/public/language/fi/admin/settings/uploads.json
+++ b/public/language/fi/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Kuvan suurin sallittu korkeus (kuvapisteinä)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/fr/admin/manage/categories.json b/public/language/fr/admin/manage/categories.json
index fc33293483..c84cbc67d2 100644
--- a/public/language/fr/admin/manage/categories.json
+++ b/public/language/fr/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Description de la catégorie",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Couleur d'arrière plan",
diff --git a/public/language/fr/admin/settings/uploads.json b/public/language/fr/admin/settings/uploads.json
index 453b6be283..6662c0d074 100644
--- a/public/language/fr/admin/settings/uploads.json
+++ b/public/language/fr/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Hauteur maximale des images (en pixels)",
"reject-image-height-help": "Les images plus grandes que cette valeur seront rejetées.",
"allow-topic-thumbnails": "Autoriser les utilisateurs à téléverser des miniatures de sujet",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Miniature du sujet",
"allowed-file-extensions": "Extensions de fichiers autorisées",
"allowed-file-extensions-help": "Entrer une liste d’extensions de fichier séparées par une virgule (ex : pdf,xls,doc). Une liste vide signifie que toutes les extensions sont autorisées.",
diff --git a/public/language/gl/admin/manage/categories.json b/public/language/gl/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/gl/admin/manage/categories.json
+++ b/public/language/gl/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/gl/admin/settings/uploads.json b/public/language/gl/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/gl/admin/settings/uploads.json
+++ b/public/language/gl/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/he/admin/manage/categories.json b/public/language/he/admin/manage/categories.json
index f52d852820..ace84ca716 100644
--- a/public/language/he/admin/manage/categories.json
+++ b/public/language/he/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "מקשר קטגוריה",
"handle.help": "המקשר לקטגוריה שלך משמשת כייצוג של קטגוריה זו ברשתות אחרות, בדומה לשם משתמש. נקודת אחיזה בקטגוריה אינה יכולה להתאים לשם משתמש או קבוצת משתמשים קיימים.",
"description": "תיאור קטגוריה",
- "federatedDescription": "תיאור פדרציה",
- "federatedDescription.help": "טקסט זה יצורף לתיאור הקטגוריה כאשר הוא יתבקש על ידי אתרים או אפליקציות אחרות.",
- "federatedDescription.default": "זוהי קטגוריית פורום המכילה דיון אקטואלי. תוכלו להתחיל דיונים חדשים על ידי אזכור קטגוריה זו.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "צבע רקע",
diff --git a/public/language/he/admin/settings/uploads.json b/public/language/he/admin/settings/uploads.json
index 55286bd76d..3b4c72a82b 100644
--- a/public/language/he/admin/settings/uploads.json
+++ b/public/language/he/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "גובה תמונה מקסימלי (בפיקסלים)",
"reject-image-height-help": "תמונות גבוהות יותר מערך זה יידחו",
"allow-topic-thumbnails": "אפשרו למשתמשים להעלות תמונה ממוזערת לנושא",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "גודל תמונה ממוזערת לנושא",
"allowed-file-extensions": "סיומות קבצים מאושרים",
"allowed-file-extensions-help": "הכניסו כאן רשימת פורמטי קבצים מאושרים (לדוגמא. pdf,xls,doc). השארת השורה ללא תוכן פירושו שכל הקבצים יהיו מאושרים.",
diff --git a/public/language/hr/admin/manage/categories.json b/public/language/hr/admin/manage/categories.json
index e35b386134..5ae77e77e5 100644
--- a/public/language/hr/admin/manage/categories.json
+++ b/public/language/hr/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Opis kategorije",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Pozadniska boja",
diff --git a/public/language/hr/admin/settings/uploads.json b/public/language/hr/admin/settings/uploads.json
index 1efba861e4..e206adf803 100644
--- a/public/language/hr/admin/settings/uploads.json
+++ b/public/language/hr/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Dozvoli korisnicima da učitaju sliku teme",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Veličina slike teme",
"allowed-file-extensions": "Dozvoljene ekstenzije datoteka",
"allowed-file-extensions-help": "Unesite popis dozvoljenih ekstenzija datoteka sa zarezima između (npr. pdf,xls,doc ).Prazan popis znači da su sve ekstenzije dozvoljene.",
diff --git a/public/language/hu/admin/manage/categories.json b/public/language/hu/admin/manage/categories.json
index 92b0b26507..e9b029a849 100644
--- a/public/language/hu/admin/manage/categories.json
+++ b/public/language/hu/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Kategória leírása",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Háttérszín",
diff --git a/public/language/hu/admin/settings/uploads.json b/public/language/hu/admin/settings/uploads.json
index fb103aea58..8a575d432f 100644
--- a/public/language/hu/admin/settings/uploads.json
+++ b/public/language/hu/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Képek maximális magassága (pixelben)",
"reject-image-height-help": "Azon képek, amik magasabbak ennél az értéknél visszautasításra kerülnek.",
"allow-topic-thumbnails": "Kis képek feltöltésének engedélyezése témakörhöz a felhasználók számára",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Témakörkép mérete",
"allowed-file-extensions": "Megengedett fájlkiterjesztések",
"allowed-file-extensions-help": "Itt adj meg fájlkiterjesztési listát, vesszővel elválasztva (pl. pdf,xls,doc). Az üres lista azt jelenti, hogy minden kiterjesztés megengedett.",
diff --git a/public/language/hy/admin/manage/categories.json b/public/language/hy/admin/manage/categories.json
index 8a69bcad22..a890b90dd9 100644
--- a/public/language/hy/admin/manage/categories.json
+++ b/public/language/hy/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Կատեգորիայի նկարագրություն",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Ֆոնի գույնը",
diff --git a/public/language/hy/admin/settings/uploads.json b/public/language/hy/admin/settings/uploads.json
index 6fa6f789fa..388ddc3c09 100644
--- a/public/language/hy/admin/settings/uploads.json
+++ b/public/language/hy/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Նկարի առավելագույն բարձրությունը (պիքսելներով)",
"reject-image-height-help": "Այս արժեքից բարձր նկարները կմերժվեն:",
"allow-topic-thumbnails": "Թույլ տվեք օգտատերերին վերբեռնել թեմայի մանրապատկերները",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Թեմայի Thumb չափ",
"allowed-file-extensions": "Թույլատրված ֆայլերի ընդարձակումներ",
"allowed-file-extensions-help": "Մուտքագրեք ստորակետերով բաժանված ֆայլերի ընդարձակման ցանկն այստեղ (օրինակ՝ pdf, xls, doc): Դատարկ ցուցակը նշանակում է, որ բոլոր ընդլայնումները թույլատրված են:",
diff --git a/public/language/id/admin/manage/categories.json b/public/language/id/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/id/admin/manage/categories.json
+++ b/public/language/id/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/id/admin/settings/uploads.json b/public/language/id/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/id/admin/settings/uploads.json
+++ b/public/language/id/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/it/admin/manage/categories.json b/public/language/it/admin/manage/categories.json
index d88533b81a..5b081acb6a 100644
--- a/public/language/it/admin/manage/categories.json
+++ b/public/language/it/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Pseudonimo categoria",
"handle.help": "Lo pseudonimo della categoria è utilizzato come rappresentazione di questa categoria in altre reti, in modo simile a un nome utente. Lo pseudonimo di una categoria non deve corrispondere a un nome utente o a un gruppo di utenti esistenti.",
"description": "Descrizione categoria",
- "federatedDescription": "Descrizione federazione",
- "federatedDescription.help": "Questo testo sarà aggiunto alla descrizione della categoria quando interrogato da altri siti web/app.",
- "federatedDescription.default": "Questa è una categoria del forum che contiene discussioni di attualità. Puoi iniziare nuove discussioni menzionando questa categoria.",
"topic-template": "Modello discussione",
"topic-template.help": "Definisci un modello per le nuove discussioni create in questa categoria.",
"bg-color": "Colore sfondo",
diff --git a/public/language/it/admin/settings/uploads.json b/public/language/it/admin/settings/uploads.json
index a2ba8602e9..d40563b47f 100644
--- a/public/language/it/admin/settings/uploads.json
+++ b/public/language/it/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Lunghezza Massima Immagine (in pixel)",
"reject-image-height-help": "Le immagini più alte di questo valore saranno rifiutate.",
"allow-topic-thumbnails": "Consenti agli utenti di caricare le miniature degli argomenti",
+ "show-post-uploads-as-thumbnails": "Mostra i post caricati come miniature",
"topic-thumb-size": "Dimensione miniatura Argomento",
"allowed-file-extensions": "Abilita Estensioni File",
"allowed-file-extensions-help": "Inserisci una lista di estensioni separati da virgola quì (es. pdf,xls,doc). Una lista vuota indica che tutte le estensioni sono abilitate.",
diff --git a/public/language/ja/admin/manage/categories.json b/public/language/ja/admin/manage/categories.json
index 9e2b43ca2a..560eb4b239 100644
--- a/public/language/ja/admin/manage/categories.json
+++ b/public/language/ja/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "カテゴリの説明",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "背景色",
diff --git a/public/language/ja/admin/settings/uploads.json b/public/language/ja/admin/settings/uploads.json
index 84b216ba93..1e7ff65241 100644
--- a/public/language/ja/admin/settings/uploads.json
+++ b/public/language/ja/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "ユーザーがスレッドのサムネイルをアップロードできるようにする",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "スレッドのサムネイルの大きさ",
"allowed-file-extensions": "ファイル拡張子が有効になりました。",
"allowed-file-extensions-help": "ここにファイル拡張子のカンマ区切りリストを入力します(例: pdf,xls,doc code>)。空のリストは、すべての拡張が許可されていることを意味します。",
diff --git a/public/language/ko/admin/manage/categories.json b/public/language/ko/admin/manage/categories.json
index 5d15d42604..8eb6c15d16 100644
--- a/public/language/ko/admin/manage/categories.json
+++ b/public/language/ko/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "카테고리 설명",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "배경 색상",
diff --git a/public/language/ko/admin/settings/uploads.json b/public/language/ko/admin/settings/uploads.json
index f222e5fe80..c6ae4c5a87 100644
--- a/public/language/ko/admin/settings/uploads.json
+++ b/public/language/ko/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "최대 이미지 높이(픽셀 단위)",
"reject-image-height-help": "이 값보다 큰 이미지는 등록할 수 없습니다.",
"allow-topic-thumbnails": "사용자가 토픽 썸네일 업로드 허용",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "토픽 썸네일 크기",
"allowed-file-extensions": "허용된 파일 확장자",
"allowed-file-extensions-help": "허용된 파일 확장자를 쉼표로 구분하여 입력하세요 (예: pdf,xls,doc). 비어 있는 목록은 모든 확장자가 허용됨을 의미합니다.",
diff --git a/public/language/lt/admin/manage/categories.json b/public/language/lt/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/lt/admin/manage/categories.json
+++ b/public/language/lt/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/lt/admin/settings/uploads.json b/public/language/lt/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/lt/admin/settings/uploads.json
+++ b/public/language/lt/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/lv/admin/manage/categories.json b/public/language/lv/admin/manage/categories.json
index 5bd9db9d4f..20933eec31 100644
--- a/public/language/lv/admin/manage/categories.json
+++ b/public/language/lv/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Kategorijas apraksts",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Fona krāsa",
diff --git a/public/language/lv/admin/settings/uploads.json b/public/language/lv/admin/settings/uploads.json
index 0b79f6bb9a..94082ee915 100644
--- a/public/language/lv/admin/settings/uploads.json
+++ b/public/language/lv/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maksimālais bildes augstums (pikseļos)",
"reject-image-height-help": "Bildes, kas ir augstākas par šo vērtību, tiks noraidītas.",
"allow-topic-thumbnails": "Atļaut lietotājiem augšupielādēt tematu sīktēlus",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Tematu sīktēlu lielums",
"allowed-file-extensions": "Atļautie failu paplašinājumi",
"allowed-file-extensions-help": "Ievadīt ar komatu atdalītu failu paplašinājumu sarakstu (piemērām pdf,xls,doc). Tukšais saraksts nozīmē, ka visi failu paplašinājumi ir atļauti.",
diff --git a/public/language/ms/admin/manage/categories.json b/public/language/ms/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/ms/admin/manage/categories.json
+++ b/public/language/ms/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/ms/admin/settings/uploads.json b/public/language/ms/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/ms/admin/settings/uploads.json
+++ b/public/language/ms/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/nb/admin/manage/categories.json b/public/language/nb/admin/manage/categories.json
index fb07c084b9..2031f16e36 100644
--- a/public/language/nb/admin/manage/categories.json
+++ b/public/language/nb/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Kategoristi",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Kategoribeskrivelse",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Bakgrunnsfarge",
diff --git a/public/language/nb/admin/settings/uploads.json b/public/language/nb/admin/settings/uploads.json
index ff5386fedb..8209e108e4 100644
--- a/public/language/nb/admin/settings/uploads.json
+++ b/public/language/nb/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maksimal bildehøyde (i piksler)",
"reject-image-height-help": "Bilder høyere enn denne verdien vil bli avvist.",
"allow-topic-thumbnails": "Tillat brukere å laste opp emneminiatyrbilder",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Størrelse på emneminiatyrbilder",
"allowed-file-extensions": "Tillatte filtyper",
"allowed-file-extensions-help": "Skriv inn kommaseparerte filtyper her (f.eks. pdf,xls,doc). En tom liste betyr at alle filtyper er tillatt.",
diff --git a/public/language/nl/admin/manage/categories.json b/public/language/nl/admin/manage/categories.json
index 96f61da1a3..470ed0209d 100644
--- a/public/language/nl/admin/manage/categories.json
+++ b/public/language/nl/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/nl/admin/settings/uploads.json b/public/language/nl/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/nl/admin/settings/uploads.json
+++ b/public/language/nl/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/nn-NO/admin/manage/categories.json b/public/language/nn-NO/admin/manage/categories.json
index 7d175abcf3..ef3cfa44c2 100644
--- a/public/language/nn-NO/admin/manage/categories.json
+++ b/public/language/nn-NO/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Kategori-sti",
"handle.help": " Kategori-stien din blir brukt som ein representasjon av denne kategorien på andre nettverk, som eit brukarnamn. Ein kategori-sti må ikkje samsvare med eit eksisterande brukarnamn eller ei brukargruppe.",
"description": "Skildring",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Bakgrunnsfarge",
diff --git a/public/language/nn-NO/admin/settings/uploads.json b/public/language/nn-NO/admin/settings/uploads.json
index c729541aff..c7730e9264 100644
--- a/public/language/nn-NO/admin/settings/uploads.json
+++ b/public/language/nn-NO/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Avvis bilete høgde",
"reject-image-height-help": "Angi maksimal høgde for bilete som vert avvist ved opplasting.",
"allow-topic-thumbnails": "Tillat emne-miniatyrbilete",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Storleik på emne-miniatyr",
"allowed-file-extensions": "Tillatne filtypar",
"allowed-file-extensions-help": "Angi kva filtypar som er tillatne ved opplasting.",
diff --git a/public/language/pl/admin/manage/categories.json b/public/language/pl/admin/manage/categories.json
index ba3cc5a058..7ff4422d86 100644
--- a/public/language/pl/admin/manage/categories.json
+++ b/public/language/pl/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Przydział kategorii",
"handle.help": "Obsługa kategorii robi za znak rozpoznawczy w innych sieciach na wzór nazwy użytkownika. Z tej racji jej nazwa nie może się pokrywać z nazwą użytkownika lub grupą użytkowników.",
"description": "Opis kategorii",
- "federatedDescription": "Opis federacji",
- "federatedDescription.help": "Ten tekst zostanie użyty dla opisu sekcji widocznej z poziomu innych stron/aplikacji.",
- "federatedDescription.default": "Ta sekcja forum zawiera dyskusje tematyczne. Możesz rozpocząć nową dyskusję wzmiankując tę kategorię.",
"topic-template": "Szablon wątku",
"topic-template.help": "Stwórz szablon dla nowych wątków dodawanych w tej kategorii.",
"bg-color": "Kolor tła",
diff --git a/public/language/pl/admin/settings/uploads.json b/public/language/pl/admin/settings/uploads.json
index 10d0606239..87d598de8b 100644
--- a/public/language/pl/admin/settings/uploads.json
+++ b/public/language/pl/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maksymalna wysokość obrazu (w pikselach)",
"reject-image-height-help": "Obrazy o wysokości przekraczającej tę wartość zostaną odrzucone.",
"allow-topic-thumbnails": "Zezwalaj użytkownikom na ustawianie miniaturek tematów",
+ "show-post-uploads-as-thumbnails": "Pokaż załączniki do wpisów w formie miniaturek",
"topic-thumb-size": "Rozmiar miniatury tematu",
"allowed-file-extensions": "Dozwolone typy plików",
"allowed-file-extensions-help": "Wprowadź rozdzielone przecinkami rozszerzenia plików (np. pdf,xls,doc). Pusta lista oznacza, że wszystkie rozszerzenia są dozwolone.",
diff --git a/public/language/pt-BR/admin/manage/categories.json b/public/language/pt-BR/admin/manage/categories.json
index 8f8d3bc66e..808455c32a 100644
--- a/public/language/pt-BR/admin/manage/categories.json
+++ b/public/language/pt-BR/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Descrição da Categoria",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Cor de Fundo",
diff --git a/public/language/pt-BR/admin/settings/uploads.json b/public/language/pt-BR/admin/settings/uploads.json
index c203d2cd23..5f0b8362c9 100644
--- a/public/language/pt-BR/admin/settings/uploads.json
+++ b/public/language/pt-BR/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Altura Máxima das Imagens (em pixels)",
"reject-image-height-help": "Imagens com uma altura maior do que este valor serão rejeitadas.",
"allow-topic-thumbnails": "Permitir usuários de enviar miniaturas de tópico",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Tamanho da Miniatura de Tópico",
"allowed-file-extensions": "Extensões de Arquivo Permitidas",
"allowed-file-extensions-help": "Digite uma lista, separada por vírgulas, de extensões de arquivos aqui (por exemplo: pdf,xls,doc). Uma lista vazia significa que todas as extensões são permitidas.",
diff --git a/public/language/pt-PT/admin/manage/categories.json b/public/language/pt-PT/admin/manage/categories.json
index 7ec4c606d0..b309193c8f 100644
--- a/public/language/pt-PT/admin/manage/categories.json
+++ b/public/language/pt-PT/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Descrição da Categoria",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Cor de Fundo",
diff --git a/public/language/pt-PT/admin/settings/uploads.json b/public/language/pt-PT/admin/settings/uploads.json
index 91c89d7a46..593df275f8 100644
--- a/public/language/pt-PT/admin/settings/uploads.json
+++ b/public/language/pt-PT/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Altura Máxima da Imagem (em píxeis)",
"reject-image-height-help": "Imagens mais altas que este valor vão ser rejeitadas.",
"allow-topic-thumbnails": "Permitir aos utilizadores enviar miniaturas de tópicos",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Tamanho da Miniatura do Tópico",
"allowed-file-extensions": "Extensões de Ficheiro Permitidas",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/ro/admin/admin.json b/public/language/ro/admin/admin.json
index 96c58b1733..7be102ffdc 100644
--- a/public/language/ro/admin/admin.json
+++ b/public/language/ro/admin/admin.json
@@ -1,18 +1,18 @@
{
- "alert.confirm-rebuild-and-restart": "Are you sure you wish to rebuild and restart NodeBB?",
- "alert.confirm-restart": "Are you sure you wish to restart NodeBB?",
+ "alert.confirm-rebuild-and-restart": "Sigur dorești să reconstruiești și să repornești NodeBB?",
+ "alert.confirm-restart": "Sigur dorești să repornești NodeBB?",
- "acp-title": "%1 | NodeBB Admin Control Panel",
- "settings-header-contents": "Contents",
- "changes-saved": "Changes Saved",
- "changes-saved-message": "Your changes to the NodeBB configuration have been saved.",
- "changes-not-saved": "Changes Not Saved",
- "changes-not-saved-message": "NodeBB encountered a problem saving your changes. (%1)",
- "save-changes": "Save changes",
+ "acp-title": "%1 | Panou de control NodeBB",
+ "settings-header-contents": "Conținut",
+ "changes-saved": "Modificări Salvate",
+ "changes-saved-message": "Modificările aduse configurației NodeBB au fost salvate.",
+ "changes-not-saved": "Modificări Nesalvate",
+ "changes-not-saved-message": "NodeBB a întâmpinat o problemă la salvarea modificărilor. (%1)",
+ "save-changes": "Salvați modificările",
"min": "Min:",
"max": "Max:",
- "view": "View",
- "edit": "Edit",
- "add": "Add",
- "select-icon": "Select Icon"
+ "view": "Vizualizare",
+ "edit": "Modifică",
+ "add": "Adaugă",
+ "select-icon": "Selectați Icon"
}
\ No newline at end of file
diff --git a/public/language/ro/admin/advanced/database.json b/public/language/ro/admin/advanced/database.json
index 55eea6c023..f67e83859a 100644
--- a/public/language/ro/admin/advanced/database.json
+++ b/public/language/ro/admin/advanced/database.json
@@ -17,7 +17,7 @@
"mongo.file-size": "File Size",
"mongo.resident-memory": "Resident Memory",
"mongo.virtual-memory": "Virtual Memory",
- "mongo.mapped-memory": "Mapped Memory",
+ "mongo.mapped-memory": "Memorie mapată",
"mongo.bytes-in": "Bytes In",
"mongo.bytes-out": "Bytes Out",
"mongo.num-requests": "Number of Requests",
diff --git a/public/language/ro/admin/dashboard.json b/public/language/ro/admin/dashboard.json
index 0be6d5866c..9e4b880154 100644
--- a/public/language/ro/admin/dashboard.json
+++ b/public/language/ro/admin/dashboard.json
@@ -75,7 +75,7 @@
"graphs.page-views-registered": "Page Views Registered",
"graphs.page-views-guest": "Page Views Guest",
"graphs.page-views-bot": "Page Views Bot",
- "graphs.page-views-ap": "ActivityPub Page Views",
+ "graphs.page-views-ap": "Vizualizări Pagină ActivityPub",
"graphs.unique-visitors": "Unique Visitors",
"graphs.registered-users": "Registered Users",
"graphs.guest-users": "Guest Users",
@@ -96,7 +96,7 @@
"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-term": "Termen",
"search-count": "Count",
- "view-all": "View all"
+ "view-all": "Arată Tot"
}
diff --git a/public/language/ro/admin/development/info.json b/public/language/ro/admin/development/info.json
index 9834719daf..782b9133e0 100644
--- a/public/language/ro/admin/development/info.json
+++ b/public/language/ro/admin/development/info.json
@@ -3,7 +3,7 @@
"ip": "IP %1",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
- "primary": "primary / jobs",
+ "primary": "principal / job-uri",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
@@ -19,7 +19,7 @@
"registered": "Registered",
"sockets": "Sockets",
- "connection-count": "Connection Count",
+ "connection-count": "Număr Conexiuni",
"guests": "Guests",
"info": "Info"
diff --git a/public/language/ro/admin/manage/categories.json b/public/language/ro/admin/manage/categories.json
index 38037f7206..a179d5eb4d 100644
--- a/public/language/ro/admin/manage/categories.json
+++ b/public/language/ro/admin/manage/categories.json
@@ -1,25 +1,22 @@
{
"manage-categories": "Manage Categories",
"add-category": "Add category",
- "add-local-category": "Add Local category",
- "add-remote-category": "Add Remote category",
- "remove": "Remove",
- "rename": "Rename",
+ "add-local-category": "Adăugați Categorie Locală",
+ "add-remote-category": "Adăugă Categorie de la Distanță",
+ "remove": "Elimină",
+ "rename": "Redenumește",
"jump-to": "Jump to...",
"settings": "Category Settings",
"edit-category": "Edit Category",
"privileges": "Privileges",
"back-to-categories": "Back to categories",
- "id": "Category ID",
+ "id": "ID Categorie",
"name": "Category Name",
- "handle": "Category Handle",
- "handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
+ "handle": "Identificator Categorie",
+ "handle.help": "Identificatorul categoriei este folosit ca o reprezentare a acestei categorii în alte rețele, similar unui nume de utilizator. Un identificator de categorie nu trebuie să corespundă unui nume de utilizator sau unui grup de utilizatori existent.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
- "topic-template": "Topic Template",
- "topic-template.help": "Define a template for new topics created in this category.",
+ "topic-template": "Șablon Subiect",
+ "topic-template.help": "Definiți un șablon pentru subiectele noi create în această categorie.",
"bg-color": "Background Colour",
"text-color": "Text Colour",
"bg-image-size": "Background Image Size",
@@ -49,7 +46,7 @@
"disable": "Disable",
"edit": "Edit",
"analytics": "Analytics",
- "federation": "Federation",
+ "federation": "Federație",
"view-category": "View category",
"set-order": "Set order",
@@ -89,32 +86,32 @@
"analytics.topics-daily": "Figure 3 – Daily topics created in this category",
"analytics.posts-daily": "Figure 4 – Daily posts made in this category",
- "federation.title": "Federation settings for \"%1\" category",
- "federation.disabled": "Federation is disabled site-wide, so category federation settings are currently unavailable.",
- "federation.disabled-cta": "Federation Settings →",
- "federation.syncing-header": "Synchronization",
- "federation.syncing-intro": "A category can follow a \"Group Actor\" via the ActivityPub protocol. If content is received from one of the actors listed below, it will be automatically added to this category.",
- "federation.syncing-caveat": "N.B. Setting up syncing here establishes a one-way synchronization. NodeBB attempts to subscribe/follow the actor, but the reverse cannot be assumed.",
- "federation.syncing-none": "This category is not currently following anybody.",
- "federation.syncing-add": "Synchronize with...",
+ "federation.title": "Setări Federație pentru categoria \"%1\"",
+ "federation.disabled": "Federația este dezactivată la nivel de site, așadar setările de federare a categoriilor nu sunt disponibile în prezent.",
+ "federation.disabled-cta": "Setări Federație →",
+ "federation.syncing-header": "Sincronizare",
+ "federation.syncing-intro": "O categorie poate urma un „Actor de grup” prin protocolul ActivityPub. Dacă se primește conținut de la unul dintre actorii enumerați mai jos, acesta va fi adăugat automat în această categorie.",
+ "federation.syncing-caveat": "Notă: Configurarea sincronizării aici stabilește o sincronizare unidirecțională. NodeBB încearcă să se aboneze/să urmărească actorul, dar nu se poate presupune inversul.",
+ "federation.syncing-none": "Această categorie nu urmărește pe nimeni în prezent.",
+ "federation.syncing-add": "Sincronizează cu...",
"federation.syncing-actorUri": "Actor",
- "federation.syncing-follow": "Follow",
- "federation.syncing-unfollow": "Unfollow",
- "federation.followers": "Remote users following this category",
- "federation.followers-handle": "Handle",
+ "federation.syncing-follow": "Urmărește",
+ "federation.syncing-unfollow": "Nu urmări",
+ "federation.followers": "Utilizatori la distanță care urmăresc această categorie",
+ "federation.followers-handle": "Identificator",
"federation.followers-id": "ID",
- "federation.followers-none": "No followers.",
- "federation.followers-autofill": "Autofill",
+ "federation.followers-none": "Niciun urmăritor.",
+ "federation.followers-autofill": "Completare automată",
"alert.created": "Created",
"alert.create-success": "Category successfully created!",
"alert.none-active": "You have no active categories.",
"alert.create": "Create a Category",
- "alert.add": "Add a Category",
- "alert.add-help": "Remote categories can be added to the categories listing by specifying their handle.
Note — The remote category may not reflect all topics published unless at least one local user tracks/watches it.",
- "alert.rename": "Rename a Remote Category",
- "alert.rename-help": "Please enter a new name for this category. Leave blank to restore original name.",
- "alert.confirm-remove": "Do you really want to remove this category? You can add it back at any time.",
+ "alert.add": "Adăugă Categorie",
+ "alert.add-help": "Categoriile la distanță pot fi adăugate la lista de categorii specificând identificatorul/identificatorul acestora.
Notă — Categoria la distanță poate să nu reflecte toate subiectele publicate, cu excepția cazului în care cel puțin un utilizator local o urmărește/o urmărește.",
+ "alert.rename": "Redenumiți o categorie de la distanță",
+ "alert.rename-help": "Vă rugăm să introduceți un nume nou pentru această categorie. Lăsați câmpul necompletat pentru a restaura numele original.",
+ "alert.confirm-remove": "Sigur doriți să eliminați această categorie? O puteți adăuga din nou oricând.",
"alert.confirm-purge": "
Do you really want to purge this category \"%1\"?
Warning! All topics and posts in this category will be purged!
Purging a category will remove all topics and posts, and delete the category from the database. If you want to remove a category temporarily, you'll want to \"disable\" the category instead.
",
"alert.purge-success": "Category purged!",
"alert.copy-success": "Settings Copied!",
diff --git a/public/language/ro/admin/manage/privileges.json b/public/language/ro/admin/manage/privileges.json
index 240cff6aa5..1b0a547853 100644
--- a/public/language/ro/admin/manage/privileges.json
+++ b/public/language/ro/admin/manage/privileges.json
@@ -8,7 +8,7 @@
"edit-privileges": "Edit Privileges",
"select-clear-all": "Select/Clear All",
"chat": "Chat",
- "chat-with-privileged": "Chat with Privileged",
+ "chat-with-privileged": "Conversează cu cineva cu drepturi",
"upload-images": "Upload Images",
"upload-files": "Upload Files",
"signature": "Signature",
diff --git a/public/language/ro/admin/manage/user-custom-fields.json b/public/language/ro/admin/manage/user-custom-fields.json
index dab10670d2..a2c2da240d 100644
--- a/public/language/ro/admin/manage/user-custom-fields.json
+++ b/public/language/ro/admin/manage/user-custom-fields.json
@@ -1,28 +1,28 @@
{
- "title": "Manage Custom User Fields",
- "create-field": "Create Field",
- "edit-field": "Edit Field",
- "manage-custom-fields": "Manage Custom Fields",
- "type-of-input": "Type of input",
- "key": "Key",
- "name": "Name",
- "icon": "Icon",
- "type": "Type",
- "min-rep": "Minimum Reputation",
- "input-type-text": "Input (Text)",
- "input-type-link": "Input (Link)",
- "input-type-number": "Input (Number)",
- "input-type-date": "Input (Date)",
- "input-type-select": "Select",
- "input-type-select-multi": "Select Multiple",
- "select-options": "Options",
- "select-options-help": "Add one option per line for the select element",
- "minimum-reputation": "Minimum reputation",
- "minimum-reputation-help": "If a user has less than this value they won't be able to use this field",
- "delete-field-confirm-x": "Do you really want to delete custom field \"%1\"?",
- "custom-fields-saved": "Custom fields saved",
- "visibility": "Visibility",
- "visibility-all": "Everyone can see the field",
- "visibility-loggedin": "Only logged in users can see the field",
- "visibility-privileged": "Only privileged users like admins & moderators can see the field"
+ "title": "Gestionarea câmpurilor personalizate ale utilizatorilor",
+ "create-field": "Creare Câmp",
+ "edit-field": "Modificare Câmp",
+ "manage-custom-fields": "Administrare Câmpuri Personalizate",
+ "type-of-input": "Tipul editorului",
+ "key": "Cheie",
+ "name": "Nume",
+ "icon": "Iconîță",
+ "type": "Tip",
+ "min-rep": "Reputație Minimă",
+ "input-type-text": "Editor (Text)",
+ "input-type-link": "Editor (Link)",
+ "input-type-number": "Editor (Număr)",
+ "input-type-date": "Editor (Dată)",
+ "input-type-select": "Selecție",
+ "input-type-select-multi": "Selecție Multiplă",
+ "select-options": "Opțiuni",
+ "select-options-help": "Adăugați pe linie câte o opțiune pentru elementul select",
+ "minimum-reputation": "Reputație Minimă",
+ "minimum-reputation-help": "Dacă un utilizator are o valoare mai mică decât această, nu va putea folosi acest câmp.",
+ "delete-field-confirm-x": "Sigur doriți să ștergeți câmpul personalizat „%1”?",
+ "custom-fields-saved": "Câmpuri personalizate salvate",
+ "visibility": "Vizibilitate",
+ "visibility-all": "Oricine poate vedea câmpul",
+ "visibility-loggedin": "Doar utilizatorii autentificați pot vedea câmpul",
+ "visibility-privileged": "Doar utilizatorii privilegiați ca administratori sau moderatori pot vedea câmpul"
}
\ No newline at end of file
diff --git a/public/language/ro/admin/menu.json b/public/language/ro/admin/menu.json
index 913c74f475..8114756e80 100644
--- a/public/language/ro/admin/menu.json
+++ b/public/language/ro/admin/menu.json
@@ -38,7 +38,7 @@
"settings/tags": "Tags",
"settings/notifications": "Notifications",
"settings/api": "API Access",
- "settings/activitypub": "Federation (ActivityPub)",
+ "settings/activitypub": "Federație (ActivityPub)",
"settings/sounds": "Sounds",
"settings/social": "Social",
"settings/cookies": "Cookies",
diff --git a/public/language/ro/admin/settings/activitypub.json b/public/language/ro/admin/settings/activitypub.json
index 5ab4fa43e8..e94dfe6b6d 100644
--- a/public/language/ro/admin/settings/activitypub.json
+++ b/public/language/ro/admin/settings/activitypub.json
@@ -1,48 +1,48 @@
{
- "intro-lead": "What is Federation?",
- "intro-body": "NodeBB is able to communicate with other NodeBB instances that support it. This is achieved through a protocol called ActivityPub. If enabled, NodeBB will also be able to communicate with other apps and websites that use ActivityPub (e.g. Mastodon, Peertube, etc.)",
+ "intro-lead": "Ce este Federația?",
+ "intro-body": "NodeBB poate comunica cu alte instanțe NodeBB care îl suportă. Acest lucru se realizează printr-un protocol numit ActivityPub. Dacă este activat, NodeBB va putea comunica și cu alte aplicații și site-uri web care utilizează ActivityPub (de exemplu, Mastodon, Peertube etc.).",
"general": "General",
- "pruning": "Content Pruning",
- "content-pruning": "Days to keep remote content",
- "content-pruning-help": "Note that remote content that has received engagement (a reply or a upvote/downvote) will be preserved. (0 for disabled)",
- "user-pruning": "Days to cache remote user accounts",
- "user-pruning-help": "Remote user accounts will only be pruned if they have no posts. Otherwise they will be re-retrieved. (0 for disabled)",
- "enabled": "Enable Federation",
- "enabled-help": "If enabled, will allow this NodeBB will be able to communicate with all Activitypub-enabled clients on the wider fediverse.",
- "allowLoopback": "Allow loopback processing",
- "allowLoopback-help": "Useful for debugging purposes only. You should probably leave this disabled.",
+ "pruning": "Eliminarea Conținutului",
+ "content-pruning": "Zile pentru păstrarea conținutului de la distanță",
+ "content-pruning-help": "Rețineți că va fi păstrat conținutul de la distanță cu care s-a interacționat (un răspuns sau un vot pozitiv/negativ). (0 pentru dezactivat)",
+ "user-pruning": "Zile pentru a păstra în memoria cache conturile de utilizatori de la distanță",
+ "user-pruning-help": "Conturile de utilizatori de la distanță vor fi eliminate doar dacă nu au postări. În caz contrar, vor fi recuperate. (0 pentru dezactivat)",
+ "enabled": "Activează Federația",
+ "enabled-help": "Dacă este activat, acest lucru va permite ca NodeBB să poată comunica cu toți clienții compatibili cu Activitypub de pe fediverse.",
+ "allowLoopback": "Permite procesarea loopback",
+ "allowLoopback-help": "Util doar pentru depanare. Probabil ar trebui să lași această opțiune dezactivată.",
- "probe": "Open in App",
- "probe-enabled": "Try to open ActivityPub-enabled resources in NodeBB",
- "probe-enabled-help": "If enabled, NodeBB will check every external link for an ActivityPub equivalent, and load it in NodeBB instead.",
- "probe-timeout": "Lookup Timeout (milliseconds)",
- "probe-timeout-help": "(Default: 2000) If the lookup query does not receive a response within the set timeframe, will send the user to the link directly instead. Adjust this number higher if sites are responding slowly and you wish to give extra time.",
+ "probe": "Deschide în Aplicație",
+ "probe-enabled": "Încercă să deschidă resurse compatibile cu ActivityPub în NodeBB",
+ "probe-enabled-help": "Dacă este activat, NodeBB va verifica fiecare link extern pentru un echivalent ActivityPub și îl va încărca în NodeBB.",
+ "probe-timeout": "Timp de așteptare (milisecunde)",
+ "probe-timeout-help": "(Implicit: 2000) Dacă interogarea de căutare nu primește un răspuns în intervalul de timp setat, utilizatorul va fi direcționat direct către link. Ajustați acest număr mai mare dacă site-urile răspund lent și doriți să acordați timp suplimentar.",
- "rules": "Categorization",
- "rules-intro": "Content discovered via ActivityPub can be automatically categorized based on certain rules (e.g. hashtag)",
- "rules.modal.title": "How it works",
- "rules.modal.instructions": "Any incoming content is checked against these categorization rules, and matching content is automatically moved into the category of choice.
N.B. Content that is already categorized (i.e. in a remote category) will not pass through these rules.",
- "rules.add": "Add New Rule",
- "rules.help-hashtag": "Topics containing this case-insensitive hashtag will match. Do not enter the # symbol",
- "rules.help-user": "Topics created by the entered user will match. Enter a handle or full ID (e.g. bob@example.org or https://example.org/users/bob.",
- "rules.type": "Type",
- "rules.value": "Value",
- "rules.cid": "Category",
+ "rules": "Clasificare",
+ "rules-intro": "Conținutul descoperit prin ActivityPub poate fi clasificat automat pe baza anumitor reguli (de exemplu, hashtag)",
+ "rules.modal.title": "Cum funcționează",
+ "rules.modal.instructions": "Orice conținut primit este verificat în funcție de aceste reguli de clasificare, iar conținutul corespunzător este mutat automat în categoria aleasă.
N.B. Conținutul care este deja clasificat (adică într-o categorie de la distanță) nu va trece prin aceste reguli.",
+ "rules.add": "Adăugă Regulă Nouă",
+ "rules.help-hashtag": "Subiectele care conțin acest hashtag fără a ține cont de majuscule/minuscule se vor potrivi. Nu introduceți simbolul #",
+ "rules.help-user": "Subiectele create de utilizatorul introdus se vor potrivi. Introduceți un nume de utilizator sau un ID complet (e.g. bob@example.org sau https://example.org/users/bob.",
+ "rules.type": "Tip",
+ "rules.value": "Valoare",
+ "rules.cid": "Categorie",
- "relays": "Relays",
- "relays.intro": "A relay improves discovery of content to and from your NodeBB. Subscribing to a relay means content received by the relay is forwarded here, and content posted here is syndicated outward by the relay.",
- "relays.warning": "Note: Relays can send larges amounts of traffic in, and may increase storage and processing costs.",
- "relays.litepub": "NodeBB follows the LitePub-style relay standard. The URL you enter here should end with /actor.",
- "relays.add": "Add New Relay",
- "relays.relay": "Relay",
- "relays.state": "State",
- "relays.state-0": "Pending",
- "relays.state-1": "Receiving only",
- "relays.state-2": "Active",
+ "relays": "Retransmițători",
+ "relays.intro": "O funcție de retransmitere îmbunătățește descoperirea conținutului către și de la NodeBB-ul dvs. Abonarea la o funcție de retransmitere înseamnă că respectivul conținut primit de către retransmitere este redirecționat aici, iar conținutul postat aici este sindicalizat către exterior de către retransmitere.",
+ "relays.warning": "Notă: Releele pot trimite volume mari de trafic și pot crește costurile de stocare și procesare.",
+ "relays.litepub": "NodeBB respectă standardul de retransmisie în stil LitePub. URL-ul pe care îl introduceți aici ar trebui să se termine cu /actor.",
+ "relays.add": "Adaugă Retransmițător Nou",
+ "relays.relay": "Retransmițător",
+ "relays.state": "Stare",
+ "relays.state-0": "În Așteptare",
+ "relays.state-1": "Doar Primește",
+ "relays.state-2": "Activ",
- "server-filtering": "Filtering",
- "count": "This NodeBB is currently aware of %1 server(s)",
- "server.filter-help": "Specify servers you would like to bar from federating with your NodeBB. Alternatively, you may opt to selectively allow federation with specific servers, instead. Both options are supported, although they are mutually exclusive.",
- "server.filter-help-hostname": "Enter just the instance hostname below (e.g. example.org), separated by line breaks.",
- "server.filter-allow-list": "Use this as an Allow List instead"
+ "server-filtering": "Filtrează",
+ "count": "NodeBB cunoaște acum %1 server(e)",
+ "server.filter-help": "Specificați serverele interzise a se conecta cu NodeBB-ul dvs. Alternativ, puteți opta să permiteți selectiv conectarea cu anumite servere. Ambele opțiuni sunt acceptate, deși se exclud reciproc.",
+ "server.filter-help-hostname": "Introduceți mai jos doar numele instanței (de exemplu, example.org), câte unul pe rând.",
+ "server.filter-allow-list": "Folosește ca Poziții Permise"
}
\ No newline at end of file
diff --git a/public/language/ro/admin/settings/chat.json b/public/language/ro/admin/settings/chat.json
index 6d6cad284b..0ffa932af3 100644
--- a/public/language/ro/admin/settings/chat.json
+++ b/public/language/ro/admin/settings/chat.json
@@ -5,8 +5,8 @@
"disable-editing": "Disable chat message editing/deletion",
"disable-editing-help": "Administrators and global moderators are exempt from this restriction",
"max-length": "Maximum length of chat messages",
- "max-length-remote": "Maximum length of remote chat messages",
- "max-length-remote-help": "This value is usually set higher than the chat message maximum for local users as remote messages tend to be longer (with @ mentions, etc.)",
+ "max-length-remote": "Lungimea maximă a mesajelor de chat la distanță",
+ "max-length-remote-help": "Această valoare este de obicei setată la o valoare mai mare decât numărul maxim de mesaje de chat pentru utilizatorii locali, deoarece mesajele la distanță tind să fie mai lungi (cu mențiuni @ etc.).",
"max-chat-room-name-length": "Maximum length of chat room names",
"max-room-size": "Maximum number of users in chat rooms",
"delay": "Time between chat messages (ms)",
diff --git a/public/language/ro/admin/settings/email.json b/public/language/ro/admin/settings/email.json
index 0310939cb3..ac3d5eb0f9 100644
--- a/public/language/ro/admin/settings/email.json
+++ b/public/language/ro/admin/settings/email.json
@@ -28,8 +28,8 @@
"smtp-transport.password": "Password",
"smtp-transport.pool": "Enable pooled connections",
"smtp-transport.pool-help": "Pooling connections prevents NodeBB from creating a new connection for every email. This option only applies if SMTP Transport is enabled.",
- "smtp-transport.allow-self-signed": "Allow self-signed certificates",
- "smtp-transport.allow-self-signed-help": "Enabling this setting will allow you to use self-signed or invalid TLS certificates.",
+ "smtp-transport.allow-self-signed": "Permite certificate self-signed",
+ "smtp-transport.allow-self-signed-help": "Activarea acestei setări vă va permite să utilizați certificate TLS self-signed sau invalide.",
"template": "Edit Email Template",
"template.select": "Select Email Template",
diff --git a/public/language/ro/admin/settings/general.json b/public/language/ro/admin/settings/general.json
index d56c819745..ebebb10fa5 100644
--- a/public/language/ro/admin/settings/general.json
+++ b/public/language/ro/admin/settings/general.json
@@ -15,7 +15,7 @@
"title-layout": "Title Layout",
"title-layout-help": "Define how the browser title will be structured ie. {pageTitle} | {browserTitle}",
"description.placeholder": "A short description about your community",
- "description": "Site Description",
+ "description": "Descrierea site-ului",
"keywords": "Site Keywords",
"keywords-placeholder": "Keywords describing your community, comma-separated",
"logo-and-icons": "Site Logo & Icons",
@@ -51,7 +51,7 @@
"topic-tools": "Topic Tools",
"home-page": "Home Page",
"home-page-route": "Home Page Route",
- "home-page-description": "Choose what page is shown when users navigate to the root URL of your forum.",
+ "home-page-description": "Alegeți ce pagină este afișată când utilizatorii navighează la adresa URL rădăcină a forumului dvs.",
"custom-route": "Custom Route",
"allow-user-home-pages": "Allow User Home Pages",
"home-page-title": "Title of the home page (default \"Home\")",
diff --git a/public/language/ro/admin/settings/navigation.json b/public/language/ro/admin/settings/navigation.json
index 3a71061ecf..130a14c17a 100644
--- a/public/language/ro/admin/settings/navigation.json
+++ b/public/language/ro/admin/settings/navigation.json
@@ -10,7 +10,7 @@
"id": "ID: optional",
"properties": "Properties:",
- "show-to-groups": "Show to Groups:",
+ "show-to-groups": "Afișare în Grupurile:",
"open-new-window": "Open in a new window",
"dropdown": "Dropdown",
"dropdown-placeholder": "Place your dropdown menu items below, ie: <li><a class="dropdown-item" href="https://myforum.com">Link 1</a></li>",
diff --git a/public/language/ro/admin/settings/post.json b/public/language/ro/admin/settings/post.json
index e000f6b10b..5c11545151 100644
--- a/public/language/ro/admin/settings/post.json
+++ b/public/language/ro/admin/settings/post.json
@@ -4,11 +4,11 @@
"sorting.post-default": "Default Post Sorting",
"sorting.oldest-to-newest": "Oldest to Newest",
"sorting.newest-to-oldest": "Newest to Oldest",
- "sorting.recently-replied": "Recently Replied",
- "sorting.recently-created": "Recently Created",
+ "sorting.recently-replied": "Răspunse Recent",
+ "sorting.recently-created": "Create Recent",
"sorting.most-votes": "Most Votes",
"sorting.most-posts": "Most Posts",
- "sorting.most-views": "Most Views",
+ "sorting.most-views": "Cele Mai Văzute",
"sorting.topic-default": "Default Topic Sorting",
"length": "Post Length",
"post-queue": "Post Queue",
diff --git a/public/language/ro/admin/settings/uploads.json b/public/language/ro/admin/settings/uploads.json
index 22046915d9..da12502884 100644
--- a/public/language/ro/admin/settings/uploads.json
+++ b/public/language/ro/admin/settings/uploads.json
@@ -9,10 +9,10 @@
"private-extensions": "File extensions to make private",
"private-uploads-extensions-help": "Enter comma-separated list of file extensions to make private here (e.g. pdf,xls,doc). An empty list means all files are private.",
"resize-image-width-threshold": "Resize images if they are wider than specified width",
- "resize-image-width-threshold-help": "(in pixels, default: 2000 pixels, set to 0 to disable)",
+ "resize-image-width-threshold-help": "(în pixeli, implicit: 2000 pixeli, setați la 0 pentru dezactivare)",
"resize-image-width": "Resize images down to specified width",
"resize-image-width-help": "(in pixels, default: 760 pixels, set to 0 to disable)",
- "resize-image-keep-original": "Keep original image after resize",
+ "resize-image-keep-original": "Păstrează imaginea originală după redimensionare",
"resize-image-quality": "Quality to use when resizing images",
"resize-image-quality-help": "Use a lower quality setting to reduce the file size of resized images.",
"max-file-size": "Maximum File Size (in KiB)",
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Afișează încărcările de postări ca miniaturi",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/ro/admin/settings/user.json b/public/language/ro/admin/settings/user.json
index c8cc3c9c34..7f87942d2a 100644
--- a/public/language/ro/admin/settings/user.json
+++ b/public/language/ro/admin/settings/user.json
@@ -64,7 +64,7 @@
"show-email": "Show email",
"show-fullname": "Show fullname",
"restrict-chat": "Only allow chat messages from users I follow",
- "disable-incoming-chats": "Disable incoming chat messages",
+ "disable-incoming-chats": "Dezactivați primirea de mesaje",
"outgoing-new-tab": "Open outgoing links in new tab",
"topic-search": "Enable In-Topic Searching",
"update-url-with-post-index": "Update url with post index while browsing topics",
diff --git a/public/language/ro/pages.json b/public/language/ro/pages.json
index 87ab32ddb6..41f0901058 100644
--- a/public/language/ro/pages.json
+++ b/public/language/ro/pages.json
@@ -36,7 +36,7 @@
"chat": "Chatting with %1",
"flags": "Flags",
"flag-details": "Flag %1 Details",
- "world": "World",
+ "world": "Lumea",
"account/edit": "Editing \"%1\"",
"account/edit/password": "Editing password of \"%1\"",
"account/edit/username": "Editing username of \"%1\"",
@@ -55,7 +55,7 @@
"account/settings-of": "Changing settings of %1",
"account/watched": "Topics watched by %1",
"account/ignored": "Topics ignored by %1",
- "account/read": "Topics read by %1",
+ "account/read": "Subiecte citite de %1",
"account/upvoted": "Posts upvoted by %1",
"account/downvoted": "Posts downvoted by %1",
"account/best": "Best posts made by %1",
@@ -63,7 +63,7 @@
"account/blocks": "Blocked users for %1",
"account/uploads": "Uploads by %1",
"account/sessions": "Login Sessions",
- "account/shares": "Topics shared by %1",
+ "account/shares": "Subiecte partajate de %1",
"confirm": "Email Confirmed",
"maintenance.text": "%1 is currently undergoing maintenance. Please come back another time.",
"maintenance.messageIntro": "Additionally, the administrator has left this message:",
diff --git a/public/language/ro/post-queue.json b/public/language/ro/post-queue.json
index 24b33da2e6..c9d806c61b 100644
--- a/public/language/ro/post-queue.json
+++ b/public/language/ro/post-queue.json
@@ -3,10 +3,10 @@
"post-queue": "Post Queue",
"no-queued-posts": "There are no posts in the post queue.",
"no-single-post": "The topic or post you are looking for is no longer in the queue. It has likely been approved or deleted already.",
- "enabling-help": "The post queue is currently disabled. To enable this feature, go to Settings → Post → Post Queue and enable Post Queue.",
+ "enabling-help": "Coada de publicare este dezactivată . Pentru a o activa, mergeți la Setări → Post → Post Queue și activați Post Queue.",
"back-to-list": "Back to Post Queue",
- "public-intro": "If you have any queued posts, they will be shown here.",
- "public-description": "This forum is configured to automatically queue posts from new accounts, pending moderator approval. If you have queued posts awaiting approval, you will be able to see them here.",
+ "public-intro": "Dacă aveți postări în coadă, acestea vor fi afișate aici.",
+ "public-description": "Acest forum este configurat să adauge automat în coadă postările de la conturile noi, în așteptarea aprobării moderatorului. Dacă aveți postări în coadă care așteaptă aprobarea, le veți putea vedea aici.",
"user": "User",
"when": "When",
"category": "Category",
@@ -39,5 +39,5 @@
"remove-selected-confirm": "Do you want to remove %1 selected posts?",
"bulk-accept-success": "%1 posts accepted",
"bulk-reject-success": "%1 posts rejected",
- "links-in-this-post": "Links in this post"
+ "links-in-this-post": "Linkuri în această postare"
}
\ No newline at end of file
diff --git a/public/language/ro/recent.json b/public/language/ro/recent.json
index 825ef74692..9e878b96c7 100644
--- a/public/language/ro/recent.json
+++ b/public/language/ro/recent.json
@@ -8,6 +8,6 @@
"no-recent-topics": "Nu există subiecte recente.",
"no-popular-topics": "Nu sunt subiecte populare.",
"load-new-posts": "Load new posts",
- "uncategorized.title": "All known topics",
- "uncategorized.intro": "This page shows a chronological listing of every topic that this forum has received. The views and opinions expressed in the topics below are not moderated and may not represent the views and opinions of this website."
+ "uncategorized.title": "Toate subiectele cunoscute",
+ "uncategorized.intro": "Această pagină prezintă o listă cronologică a fiecărui subiect primit de acest forum. Părerile și opiniile exprimate în subiectele de mai jos nu sunt moderate și este posibil să nu reprezinte opiniile și opiniile acestui site web."
}
\ No newline at end of file
diff --git a/public/language/ro/search.json b/public/language/ro/search.json
index f994b924cb..0d544d3545 100644
--- a/public/language/ro/search.json
+++ b/public/language/ro/search.json
@@ -7,7 +7,7 @@
"in-titles": "In titles",
"in-titles-posts": "In titles and posts",
"in-posts": "In posts",
- "in-bookmarks": "In bookmarks",
+ "in-bookmarks": "În marcaje",
"in-categories": "In categories",
"in-users": "In users",
"in-tags": "In tags",
diff --git a/public/language/ro/social.json b/public/language/ro/social.json
index 5b8dd99a46..40dc8ec5ec 100644
--- a/public/language/ro/social.json
+++ b/public/language/ro/social.json
@@ -7,8 +7,8 @@
"sign-up-with-google": "Sign up with Google",
"log-in-with-facebook": "Log in with Facebook",
"continue-with-facebook": "Continue with Facebook",
- "sign-in-with-linkedin": "Sign in with LinkedIn",
- "sign-up-with-linkedin": "Sign up with LinkedIn",
- "sign-in-with-wordpress": "Sign in with WordPress",
- "sign-up-with-wordpress": "Sign up with WordPress"
+ "sign-in-with-linkedin": "Conectează-te cu LinkedIn",
+ "sign-up-with-linkedin": "Înregistrează-te cu LinkedIn",
+ "sign-in-with-wordpress": "Conectează-te cu WordPress",
+ "sign-up-with-wordpress": "Înregistrează-te cu WordPress"
}
\ No newline at end of file
diff --git a/public/language/ro/tags.json b/public/language/ro/tags.json
index b412a8c85d..cdf91bf1e0 100644
--- a/public/language/ro/tags.json
+++ b/public/language/ro/tags.json
@@ -3,7 +3,7 @@
"no-tag-topics": "Nu există nici un subiect cu acest tag.",
"no-tags-found": "No tags found",
"tags": "Taguri",
- "enter-tags-here": "Enter tags, %1 - %2 characters.",
+ "enter-tags-here": "Introduceți etichete, %1 - %2 caractere.",
"enter-tags-here-short": "Introdu taguri...",
"no-tags": "În acest moment nu există nici un tag.",
"select-tags": "Select Tags",
diff --git a/public/language/ro/topic.json b/public/language/ro/topic.json
index 5d44fe17d7..30691b771b 100644
--- a/public/language/ro/topic.json
+++ b/public/language/ro/topic.json
@@ -15,7 +15,7 @@
"replies-to-this-post": "%1 Replies",
"one-reply-to-this-post": "1 Reply",
"last-reply-time": "Last reply",
- "reply-options": "Reply options",
+ "reply-options": "Opțiuni răspuns",
"reply-as-topic": "Răspunde ca subiect",
"guest-login-reply": "Login pentru a răspunde",
"login-to-view": "🔒 Log in to view",
@@ -27,7 +27,7 @@
"restore": "Restaurează",
"move": "Mută",
"change-owner": "Change Owner",
- "manage-editors": "Manage Editors",
+ "manage-editors": "Gestionați Editorii",
"fork": "Bifurcă",
"link": "Link",
"share": "Distribuie",
@@ -36,7 +36,7 @@
"pinned": "Pinned",
"pinned-with-expiry": "Pinned until %1",
"scheduled": "Scheduled",
- "deleted": "Deleted",
+ "deleted": "Șters",
"moved": "Moved",
"moved-from": "Moved from %1",
"copy-code": "Copy Code",
@@ -61,8 +61,8 @@
"user-restored-topic-on": "%1 restored this topic on %2",
"user-moved-topic-from-ago": "%1 moved this topic from %2 %3",
"user-moved-topic-from-on": "%1 moved this topic from %2 on %3",
- "user-shared-topic-ago": "%1 shared this topic %2",
- "user-shared-topic-on": "%1 shared this topic on %2",
+ "user-shared-topic-ago": "%1 a distribuit acest subiect %2",
+ "user-shared-topic-on": "%1 a distribuit acest subiect pe %2",
"user-queued-post-ago": "%1 queued post for approval %3",
"user-queued-post-on": "%1 queued post for approval on %3",
"user-referenced-topic-ago": "%1 referenced this topic %3",
@@ -106,7 +106,7 @@
"thread-tools.move-posts": "Move Posts",
"thread-tools.move-all": "Mută-le pe toate",
"thread-tools.change-owner": "Change Owner",
- "thread-tools.manage-editors": "Manage Editors",
+ "thread-tools.manage-editors": "Gestionați Editorii",
"thread-tools.select-category": "Select Category",
"thread-tools.fork": "Bifurcă Subiect",
"thread-tools.tag": "Tag Topic",
@@ -137,7 +137,7 @@
"bookmarks": "Bookmarks",
"bookmarks.has-no-bookmarks": "You haven't bookmarked any posts yet.",
"copy-permalink": "Copy Permalink",
- "go-to-original": "View Original Post",
+ "go-to-original": "Vizualizați Postarea Originală",
"loading-more-posts": "Se încarcă mai multe mesaje",
"move-topic": "Mută Subiect",
"move-topics": "Mută Subiecte",
@@ -162,7 +162,7 @@
"move-posts-instruction": "Click the posts you want to move then enter a topic ID or go to the target topic",
"move-topic-instruction": "Select the target category and then click move",
"change-owner-instruction": "Click the posts you want to assign to another user",
- "manage-editors-instruction": "Manage the users who can edit this post below.",
+ "manage-editors-instruction": "Gestionați mai jos utilizatorii care pot edita această postare.",
"composer.title-placeholder": "Introdu numele subiectului aici ...",
"composer.handle-placeholder": "Enter your name/handle here",
"composer.hide": "Hide",
@@ -188,8 +188,8 @@
"sort-by": "Sortează de la",
"oldest-to-newest": "Vechi la Noi",
"newest-to-oldest": "Noi la Vechi",
- "recently-replied": "Recently Replied",
- "recently-created": "Recently Created",
+ "recently-replied": "Răspunse Recent",
+ "recently-created": "Create Recent",
"most-votes": "Most Votes",
"most-posts": "Most Posts",
"most-views": "Most Views",
@@ -214,15 +214,15 @@
"last-post": "Last post",
"go-to-my-next-post": "Go to my next post",
"no-more-next-post": "You don't have more posts in this topic",
- "open-composer": "Open composer",
+ "open-composer": "Deschide composer-ul",
"post-quick-reply": "Quick reply",
"navigator.index": "Post %1 of %2",
"navigator.unread": "%1 unread",
- "upvote-post": "Upvote post",
- "downvote-post": "Downvote post",
- "post-tools": "Post tools",
- "unread-posts-link": "Unread posts link",
- "thumb-image": "Topic thumbnail image",
- "announcers": "Shares",
- "announcers-x": "Shares (%1)"
+ "upvote-post": "Votează pentru postare",
+ "downvote-post": "Votează împotriva postării",
+ "post-tools": "Unelte de postare",
+ "unread-posts-link": "Link pentru postări necitite",
+ "thumb-image": "Imagine miniatură subiect",
+ "announcers": "Partajări",
+ "announcers-x": "Partajări (%1)"
}
\ No newline at end of file
diff --git a/public/language/ro/unread.json b/public/language/ro/unread.json
index bccada87c3..f80d56c432 100644
--- a/public/language/ro/unread.json
+++ b/public/language/ro/unread.json
@@ -3,7 +3,7 @@
"no-unread-topics": "Nu există nici un subiect necitit.",
"load-more": "Încarcă mai multe",
"mark-as-read": "Marchează ca citit",
- "mark-as-unread": "Mark as Unread",
+ "mark-as-unread": "Marchează ca Necitit",
"selected": "Selectate",
"all": "Toate",
"all-categories": "Toate categoriile",
diff --git a/public/language/ro/users.json b/public/language/ro/users.json
index fd6c6a6c58..ba124c9d31 100644
--- a/public/language/ro/users.json
+++ b/public/language/ro/users.json
@@ -1,6 +1,6 @@
{
"all-users": "All Users",
- "followed-users": "Followed Users",
+ "followed-users": "Utilizatori Urmăriți",
"latest-users": "Ultimii Utilizatori",
"top-posters": "Top Utilizatori",
"most-reputation": "Cei mai apreciați utilizatori",
diff --git a/public/language/ro/world.json b/public/language/ro/world.json
index 7fdb1569f2..33a94dd925 100644
--- a/public/language/ro/world.json
+++ b/public/language/ro/world.json
@@ -1,21 +1,21 @@
{
- "name": "World",
- "popular": "Popular topics",
- "recent": "All topics",
- "help": "Help",
+ "name": "Lumea",
+ "popular": "Subiecte Populare",
+ "recent": "Toate subiectele",
+ "help": "Ajutor",
- "help.title": "What is this page?",
- "help.intro": "Welcome to your corner of the fediverse.",
- "help.fediverse": "The \"fediverse\" is a network of interconnected applications and websites that all talk to one another and whose users can see each other. This forum is federated, and can interact with that social web (or \"fediverse\"). This page is your corner of the fediverse. It consists solely of topics created by — and shared from — users you follow.",
- "help.build": "There might not be a lot of topics here to start; that's normal. You will start to see more content here over time when you start following other users.",
- "help.federating": "Likewise, if users from outside of this forum start following you, then your posts will start appearing on those apps and websites as well.",
- "help.next-generation": "This is the next generation of social media, start contributing today!",
+ "help.title": "Ce este în pagina curentă",
+ "help.intro": "Bine ai venit în colțul tău din universul fediverse",
+ "help.fediverse": "„Fediversul” este o rețea de aplicații și site-uri web interconectate care comunică între ele și ai căror utilizatori se pot vedea reciproc. Acest forum este federat și poate interacționa cu acea rețea socială (sau „fediversul”). Această pagină este colțul tău din fedivers. Constă exclusiv din subiecte create de — și partajate de — utilizatori pe care îi urmărești.",
+ "help.build": "S-ar putea să nu fie multe subiecte de început aici; este normal. Vei începe să vezi mai mult conținut aici în timp, când vei începe să urmărești alți utilizatori.",
+ "help.federating": "De asemenea, dacă utilizatori din afara acestui forum încep să te urmărească, atunci postările tale vor începe să apară și pe acele aplicații și site-uri web.",
+ "help.next-generation": "Aceasta este următoarea generație de social media, începe să contribui chiar azi!",
- "onboard.title": "Your window to the fediverse...",
- "onboard.what": "This is your personalized category made up of only content found outside of this forum. Whether something shows up in this page depends on whether you follow them, or whether that post was shared by someone you follow.",
- "onboard.why": "There's a lot that goes on outside of this forum, and not all of it is relevant to your interests. That's why following people is the best way to signal that you want to see more from someone.",
- "onboard.how": "In the meantime, you can click on the shortcut buttons at the top to see what else this forum knows about, and start discovering some new content!",
+ "onboard.title": "Fereastra ta către fedivers...",
+ "onboard.what": "Aceasta este categoria ta personalizată, formată doar din conținut găsit în afara acestui forum. Afișarea unui element pe această pagină depinde de dacă îl urmărești sau dacă postarea respectivă a fost distribuită de cineva pe care îl urmărești.",
+ "onboard.why": "Se întâmplă multe lucruri în afara acestui forum și nu toate sunt relevante pentru interesele tale. De aceea, urmărirea oamenilor este cea mai bună modalitate de a semnala că vrei să vezi mai multe de la cineva.",
+ "onboard.how": "Între timp, puteți da clic pe butoanele de comandă rapidă din partea de sus pentru a vedea ce mai știe acest forum și pentru a începe să descoperiți conținut nou!",
- "show-categories": "Show categories",
- "hide-categories": "Hide categories"
+ "show-categories": "Afișează categoriile",
+ "hide-categories": "Ascunde categoriile"
}
\ No newline at end of file
diff --git a/public/language/ru/admin/manage/categories.json b/public/language/ru/admin/manage/categories.json
index 145aaebd0d..9e7839f40b 100644
--- a/public/language/ru/admin/manage/categories.json
+++ b/public/language/ru/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Описание категории",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Цвет фона",
diff --git a/public/language/ru/admin/settings/uploads.json b/public/language/ru/admin/settings/uploads.json
index 8725c70db8..c26cbe27da 100644
--- a/public/language/ru/admin/settings/uploads.json
+++ b/public/language/ru/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Макс. высота изображения (в пикселях)",
"reject-image-height-help": "Загрузка изображений выше указанного значения будет отклонена.",
"allow-topic-thumbnails": "Разрешить пользователям загружать миниатюры для тем",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Размер миниатюр",
"allowed-file-extensions": "Допустимые расширения файлов",
"allowed-file-extensions-help": "Укажите через запятую список расширений файлов, например pdf,xls,doc. Оставьте поле пустым, чтобы разрешить любые загрузки.",
diff --git a/public/language/rw/admin/manage/categories.json b/public/language/rw/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/rw/admin/manage/categories.json
+++ b/public/language/rw/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/rw/admin/settings/uploads.json b/public/language/rw/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/rw/admin/settings/uploads.json
+++ b/public/language/rw/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/sc/admin/manage/categories.json b/public/language/sc/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/sc/admin/manage/categories.json
+++ b/public/language/sc/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/sc/admin/settings/uploads.json b/public/language/sc/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/sc/admin/settings/uploads.json
+++ b/public/language/sc/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/sk/admin/manage/categories.json b/public/language/sk/admin/manage/categories.json
index ead53a4cce..e3ecddda6c 100644
--- a/public/language/sk/admin/manage/categories.json
+++ b/public/language/sk/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Popis kategórie",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Farba pozadia",
diff --git a/public/language/sk/admin/settings/uploads.json b/public/language/sk/admin/settings/uploads.json
index f9a18dcb4c..fdabe75093 100644
--- a/public/language/sk/admin/settings/uploads.json
+++ b/public/language/sk/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Povoliť používateľom nahrať miniatúry tém",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Veľkosť miniatúry témy",
"allowed-file-extensions": "Predvolené prípony súborov",
"allowed-file-extensions-help": "Zadajte zoznam prípon súborov oddelených čiarkou (napr.: pdf, xls, doc). Prázdny zoznam znamená, že všetky prípony sú povolené.",
diff --git a/public/language/sl/admin/manage/categories.json b/public/language/sl/admin/manage/categories.json
index d32877156b..e74837dc71 100644
--- a/public/language/sl/admin/manage/categories.json
+++ b/public/language/sl/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Opis kategorije",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Barva ozadja",
diff --git a/public/language/sl/admin/settings/uploads.json b/public/language/sl/admin/settings/uploads.json
index fc43ca3793..8d185fe531 100644
--- a/public/language/sl/admin/settings/uploads.json
+++ b/public/language/sl/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Dovoljene pripone datoteke",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/sq-AL/admin/manage/categories.json b/public/language/sq-AL/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/sq-AL/admin/manage/categories.json
+++ b/public/language/sq-AL/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/sq-AL/admin/settings/uploads.json b/public/language/sq-AL/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/sq-AL/admin/settings/uploads.json
+++ b/public/language/sq-AL/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/sr/admin/manage/categories.json b/public/language/sr/admin/manage/categories.json
index 38037f7206..cdb3e1f356 100644
--- a/public/language/sr/admin/manage/categories.json
+++ b/public/language/sr/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/sr/admin/settings/uploads.json b/public/language/sr/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/sr/admin/settings/uploads.json
+++ b/public/language/sr/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/sv/admin/manage/categories.json b/public/language/sv/admin/manage/categories.json
index 0064d996e3..b48ce5b455 100644
--- a/public/language/sv/admin/manage/categories.json
+++ b/public/language/sv/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Category Description",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Background Colour",
diff --git a/public/language/sv/admin/settings/uploads.json b/public/language/sv/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/sv/admin/settings/uploads.json
+++ b/public/language/sv/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/th/admin/manage/categories.json b/public/language/th/admin/manage/categories.json
index 81e8ac0f4a..45f2da252d 100644
--- a/public/language/th/admin/manage/categories.json
+++ b/public/language/th/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "คำอธิบายหมวดหมู่",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "สีพื้น",
diff --git a/public/language/th/admin/settings/uploads.json b/public/language/th/admin/settings/uploads.json
index 22046915d9..e91a7bee36 100644
--- a/public/language/th/admin/settings/uploads.json
+++ b/public/language/th/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. pdf,xls,doc). An empty list means all extensions are allowed.",
diff --git a/public/language/tr/admin/manage/categories.json b/public/language/tr/admin/manage/categories.json
index cc0566b075..9af38c0945 100644
--- a/public/language/tr/admin/manage/categories.json
+++ b/public/language/tr/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Kategori Açıklaması",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Arkaplan Rengi",
diff --git a/public/language/tr/admin/settings/uploads.json b/public/language/tr/admin/settings/uploads.json
index f9b369f66a..b9d2884b62 100644
--- a/public/language/tr/admin/settings/uploads.json
+++ b/public/language/tr/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maksimum Görsel Yüksekliği (piksel)",
"reject-image-height-help": "Bu değerden daha uzun olan görseller reddedilecektir.",
"allow-topic-thumbnails": "Kullanıcıların konulara küçük resim yüklemesine izin ver",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Konu Küçük Resim Boyutu",
"allowed-file-extensions": "İzin Verilen Dosya Uzantıları",
"allowed-file-extensions-help": "Virgül ile ayrılmış dosya uzantıları listesini buraya girin (ör. pdf, xls, doc). Boş bir liste, tüm uzantılara izin verildiği anlamına gelir.",
diff --git a/public/language/uk/admin/manage/categories.json b/public/language/uk/admin/manage/categories.json
index 2903206195..2b713f196a 100644
--- a/public/language/uk/admin/manage/categories.json
+++ b/public/language/uk/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Category Handle",
"handle.help": "Your category handle is used as a representation of this category across other networks, similar to a username. A category handle must not match an existing username or user group.",
"description": "Опис категорії",
- "federatedDescription": "Federated Description",
- "federatedDescription.help": "This text will be appended to the category description when queried by other websites/apps.",
- "federatedDescription.default": "This is a forum category containing topical discussion. You can start new discussions by mentioning this category.",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "Колір фону",
diff --git a/public/language/uk/admin/settings/uploads.json b/public/language/uk/admin/settings/uploads.json
index f54640cb29..18dda7a1ca 100644
--- a/public/language/uk/admin/settings/uploads.json
+++ b/public/language/uk/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "Maximum Image Height (in pixels)",
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Дозволити користувачам завантажувати мініатюри тем",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "Розмір мініатюри теми",
"allowed-file-extensions": "Допустимі розширення файлів",
"allowed-file-extensions-help": "Вкажіть розширеня файлів розділені комою (наприклад, pdf,xls,doc). Пустий список дає дозвіл на будь-які розширення.",
diff --git a/public/language/ur/admin/manage/categories.json b/public/language/ur/admin/manage/categories.json
index e183820111..006428fca4 100644
--- a/public/language/ur/admin/manage/categories.json
+++ b/public/language/ur/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "زمرہ کا شناخت کنندہ",
"handle.help": "زمرہ کا شناخت کنندہ اس زمرہ کو دیگر نیٹ ورکس میں پیش کرنے کے لیے استعمال ہوتا ہے، جیسے کہ صارف نام۔ اس شناخت کنندہ کا موجودہ صارف نام یا صارف گروپ سے مماثل نہیں ہونا چاہیے۔",
"description": "زمرہ کی تفصیل",
- "federatedDescription": "فیڈریٹڈ تفصیل",
- "federatedDescription.help": "یہ متن زمرہ کی تفصیل میں شامل کیا جائے گا جب دیگر ویب سائٹس اور ایپلی کیشنز اس کے بارے میں معلومات طلب کریں گی۔",
- "federatedDescription.default": "یہ فورم میں ایک زمرہ ہے جس میں موضوعاتی بحثیں شامل ہیں۔ آپ اس فورم کا ذکر کرکے ایک نئی بحث شروع کر سکتے ہیں۔",
"topic-template": "Topic Template",
"topic-template.help": "Define a template for new topics created in this category.",
"bg-color": "پس منظر کا رنگ",
diff --git a/public/language/ur/admin/settings/uploads.json b/public/language/ur/admin/settings/uploads.json
index f44da0e354..289d295862 100644
--- a/public/language/ur/admin/settings/uploads.json
+++ b/public/language/ur/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"reject-image-height": "تصاویر کی زیادہ سے زیادہ اونچائی (پکسلز میں)",
"reject-image-height-help": "جن تصاویر کی اونچائی اس قیمت سے زیادہ ہوگی وہ مسترد کر دی جائیں گی۔",
"allow-topic-thumbnails": "صارفین کو موضوعات کے لیے تھمب نیلز اپ لوڈ کرنے کی اجازت دیں",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"topic-thumb-size": "موضوعات کے تھمب نیلز کا سائز",
"allowed-file-extensions": "اجازت شدہ فائل ایکسٹینشنز",
"allowed-file-extensions-help": "فائل ایکسٹینشنز کوموں سے الگ کرکے درج کریں (مثال: pdf,xls,doc)۔ اگر فہرست خالی ہو تو تمام فائل ایکسٹینشنز کی اجازت ہوگی۔",
diff --git a/public/language/vi/admin/manage/categories.json b/public/language/vi/admin/manage/categories.json
index d5775e1fe0..adb8895367 100644
--- a/public/language/vi/admin/manage/categories.json
+++ b/public/language/vi/admin/manage/categories.json
@@ -15,9 +15,6 @@
"handle": "Xử Lý Danh Mục",
"handle.help": "Xử lý danh mục của bạn được sử dụng làm đại diện cho danh mục này trên các mạng khác, tương tự như tên đăng nhập. Thẻ điều khiển danh mục không được khớp với tên người dùng hoặc nhóm người dùng hiện có.",
"description": "Mô Tả Chuyên Mục",
- "federatedDescription": "Mô Tả Liên Kết",
- "federatedDescription.help": "Văn bản này sẽ được thêm vào mô tả danh mục khi được truy vấn bởi các trang web/ứng dụng khác.",
- "federatedDescription.default": "Đây là một danh mục diễn đàn có chứa thảo luận tại chỗ. Bạn có thể bắt đầu các cuộc thảo luận mới bằng cách đề cập đến thể loại này.",
"topic-template": "Mẫu Chủ Đề",
"topic-template.help": "Xác định mẫu cho các chủ đề mới được tạo trong danh mục này.",
"bg-color": "Màu Nền",
diff --git a/public/language/vi/admin/settings/uploads.json b/public/language/vi/admin/settings/uploads.json
index f89c13a955..055f3dcf47 100644
--- a/public/language/vi/admin/settings/uploads.json
+++ b/public/language/vi/admin/settings/uploads.json
@@ -22,6 +22,7 @@
"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 thumbnails chủ đề",
+ "show-post-uploads-as-thumbnails": "Show post uploads as thumbnails",
"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ả.",
diff --git a/public/language/zh-CN/admin/manage/categories.json b/public/language/zh-CN/admin/manage/categories.json
index 07c53a18aa..cbeb2689ba 100644
--- a/public/language/zh-CN/admin/manage/categories.json
+++ b/public/language/zh-CN/admin/manage/categories.json
@@ -4,7 +4,7 @@
"add-local-category": "添加本地版块",
"add-remote-category": "添加远程版块",
"remove": "移除",
- "rename": "Rename",
+ "rename": "重命名",
"jump-to": "跳转…",
"settings": "版块设置",
"edit-category": "编辑版块",
@@ -15,9 +15,6 @@
"handle": "版块句柄",
"handle.help": "您的版块句柄在其他网络中用作该版块的代表,类似于用户名。版块句柄不得与现有的用户名或用户组相匹配。",
"description": "版块描述",
- "federatedDescription": "“联邦化”说明",
- "federatedDescription.help": "当其他网站/应用程序查询时,该文本将附加到版块描述中。",
- "federatedDescription.default": "这是一个包含专题讨论的论坛版块。您可以通过提及该版块开始新的讨论。",
"topic-template": "主题模板",
"topic-template.help": "为本版块下新建的主题定义模板。",
"bg-color": "背景颜色",
@@ -112,9 +109,9 @@
"alert.create": "创建一个版块",
"alert.add": "添加一个版块",
"alert.add-help": "可以通过指定其句柄将远程版块添加到版块列表中。
注: — 远程版块可能无法反映所有已发布的主题,除非至少有一名本地用户关注或订阅该版块。",
- "alert.rename": "Rename a Remote Category",
- "alert.rename-help": "Please enter a new name for this category. Leave blank to restore original name.",
- "alert.confirm-remove": "Do you really want to remove this category? You can add it back at any time.",
+ "alert.rename": "重命名远程版块",
+ "alert.rename-help": "请为该版块输入新名称。留空则恢复原名。",
+ "alert.confirm-remove": "您确定要删除此版块吗?您可以随时将其重新添加回来。",
"alert.confirm-purge": "