mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-21 00:41:06 +02:00
Merge commit '94e2c7e4bb0bc8f6db6bc25537b4a630e6a4f487' into v1.13.x
This commit is contained in:
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
@@ -10,6 +10,8 @@
|
||||
- **NodeBB version:**
|
||||
- **NodeBB git hash:**
|
||||
<!-- (to find your git hash, execute `git rev-parse HEAD` from the main NodeBB directory) -->
|
||||
- **Installed NodeBB Plugins:**
|
||||
<!-- (to find installed plugins run ./nodebb plugins) -->
|
||||
- **Database type:** mongo, redis, or postgres
|
||||
- **Database version:**
|
||||
<!-- `mongod --version`, `redis-server --version`, or `postgres --version` -->
|
||||
|
||||
24
.travis.yml
24
.travis.yml
@@ -4,6 +4,11 @@ services:
|
||||
- postgresql
|
||||
before_install:
|
||||
- cp install/package.json package.json
|
||||
- sudo apt-get update
|
||||
- sudo apt-get --yes remove postgresql\*
|
||||
- sudo apt-get install -y postgresql-12 postgresql-client-12
|
||||
- sudo cp /etc/postgresql/{9.6,12}/main/pg_hba.conf
|
||||
- sudo service postgresql restart 12
|
||||
before_script:
|
||||
- sleep 15 # wait for mongodb to be ready
|
||||
- "mongo mydb_test --eval 'db.createUser({user:\"travis\", pwd: \"test\", roles: []});'"
|
||||
@@ -14,25 +19,28 @@ after_success:
|
||||
- "npm run coveralls"
|
||||
language: node_js
|
||||
sudo: false
|
||||
dist: trusty
|
||||
dist: xenial
|
||||
env:
|
||||
- CXX=g++-4.8 DB=mongodb TEST_ENV=production
|
||||
- CXX=g++-4.8 DB=mongodb TEST_ENV=development
|
||||
- CXX=g++-4.8 DB=redis TEST_ENV=production
|
||||
- CXX=g++-4.8 DB=postgres TEST_ENV=production
|
||||
global:
|
||||
- PGUSER=postgres
|
||||
- PGPORT=5432
|
||||
- CXX=g++-4.8
|
||||
jobs:
|
||||
- "DB=mongodb TEST_ENV=production"
|
||||
- "DB=mongodb TEST_ENV=development"
|
||||
- "DB=redis TEST_ENV=production"
|
||||
- "DB=postgres TEST_ENV=production"
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- ubuntu-toolchain-r-test
|
||||
- mongodb-3.4-trusty
|
||||
- mongodb-4.0-xenial
|
||||
packages:
|
||||
- g++-4.8
|
||||
- mongodb-org-server
|
||||
postgresql: "12"
|
||||
node_js:
|
||||
- "12"
|
||||
- "10"
|
||||
- "8"
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
|
||||
613
CHANGELOG.md
613
CHANGELOG.md
@@ -1,3 +1,616 @@
|
||||
### 1.13.0 (2019-11-13)
|
||||
|
||||
##### Chores
|
||||
|
||||
* incrementing version number - v1.13.0 (c38b2d23)
|
||||
* incrementing version number - v1.12.2 (810e2c0b)
|
||||
* **deps:**
|
||||
* update dependency jsdom to v15.2.1 (9d946d1c)
|
||||
* update dependency eslint to v6.6.0 (d0e428e9)
|
||||
* update dependency lint-staged to v9.4.2 (#7954) (d108c7d0)
|
||||
* update dependency mocha to v6.2.2 (#7984) (e31a47cd)
|
||||
* update dependency coveralls to v3.0.7 (#7961) (9b308e4b)
|
||||
* update dependency jsdom to v15.2.0 (#7971) (9b4e9882)
|
||||
* update dependency husky to v3.0.9 (fd5095a3)
|
||||
* update dependency husky to v3.0.8 (88cae415)
|
||||
* update dependency lint-staged to v9.4.1 (a2a7bb3d)
|
||||
* update node.js to v8.16.1 (f9ad826b)
|
||||
* update node:8.16.0 docker digest to bb12612 (48cc317c)
|
||||
* update dependency eslint to v6.5.1 (da12e947)
|
||||
* update dependency husky to v3.0.7 (10a30e66)
|
||||
* update commitlint monorepo to v8.2.0 (ddd4e039)
|
||||
* update dependency mocha to v6.2.1 (b172d106)
|
||||
* update dependency lint-staged to v9.2.3 (ccccba81)
|
||||
* update dependency coveralls to v3.0.6 (#7820) (2b1f840e)
|
||||
* update dependency husky to v3.0.3 (cbede89a)
|
||||
* update dependency lint-staged to v9 (f2e4664d)
|
||||
* update dependency eslint-plugin-import to v2.18.2 (#7779) (57b2a553)
|
||||
* update dependency eslint to v6.1.0 (#7783) (7257e6b2)
|
||||
* update dependency husky to v3.0.2 (7ad72b32)
|
||||
* update node:8.16.0 docker digest to c671dc2 (e76214a2)
|
||||
* update dependency mocha to v6.2.0 (d43f5dcf)
|
||||
* update node:8.16.0 docker digest to 310db2a (c46a0772)
|
||||
* update dependency husky to v3.0.1 (28151f86)
|
||||
* update dependency eslint-plugin-import to v2.18.1 (9fda2c1f)
|
||||
* update commitlint monorepo to v8.1.0 (f73468d5)
|
||||
* update dependency coveralls to v3.0.5 (5b746d53)
|
||||
* update dependency husky to v2.7.0 (1d0fd028)
|
||||
* update dependency eslint to v6.0.1 (77347d0a)
|
||||
* update dependency husky to v2.6.0 (fc69e891)
|
||||
* update dependency eslint-plugin-import to v2.18.0 (744e4428)
|
||||
* update dependency husky to v2.5.0 (4960b925)
|
||||
* update dependency lint-staged to v8.2.1 (2fa68e3b)
|
||||
* update node:8.16.0 docker digest to 06adec3 (fc224cca)
|
||||
* update dependency husky to v2.4.1 (17ec8fde)
|
||||
* update node:8.16.0 docker digest to d5ad3f5 (f9e99fa3)
|
||||
* update node:8.16.0 docker digest to 75b524a (5995834b)
|
||||
* update node:8.16.0 docker digest to b9a98ae (fca6d794)
|
||||
* update dependency lint-staged to v8.2.0 (376390c4)
|
||||
* update dependency husky to v2.4.0 (3d2ec0bb)
|
||||
* update dependency coveralls to v3.0.4 (c360e0c2)
|
||||
* update dependency eslint-plugin-import to v2.17.3 (eac4e2f1)
|
||||
* update node:8.16.0 docker digest to 957cab2 (cc6fa97c)
|
||||
* update commitlint monorepo to v8 (80532831)
|
||||
|
||||
##### Documentation Changes
|
||||
|
||||
* updated changelog (183b0ed3)
|
||||
|
||||
##### New Features
|
||||
|
||||
* displaying one-click unsubscribe link in email footer (#8024) (df139928)
|
||||
* #7467, pass query params when redirecting to posts (480a64aa)
|
||||
* use helpers.setupAdminPageRoute (b5a30006)
|
||||
* wip, better digest handling (+ eventual digest resend logic) (#7995) (645d6472)
|
||||
* add action:messaging.save (ac5c560c)
|
||||
* #7957, allow post queue based on group (1cedc4a0)
|
||||
* add filter:topics.unreadCutoff (e020b85b)
|
||||
* Add filter:topic.delete and filter:topic.restore (#7946) (#7989) (989107d9)
|
||||
* no more session cookie for guests (#7982) (cf7e0cfd)
|
||||
* Implement WICG change-password-url (#7072) (#7990) (df1efe5f)
|
||||
* log errors from mubsub (b01a47cb)
|
||||
* upgrade to sitemap5 (#7980) (d6792188)
|
||||
* #7964, change all categories at once (485fbd2f)
|
||||
* closes #7952, translate widget-settings (990508a5)
|
||||
* remove ability to delete events from acp (554e6711)
|
||||
* resetting theme will reset skin (03827fa6)
|
||||
* disable timeout on launch route (4bc77d06)
|
||||
* add new hook to get custom category tids for unread (b1926054)
|
||||
* adding filter:login.check and loginFormEntry[] for the filter:login.build hook (#7861) (94810fd6)
|
||||
* #7932, redirect to group details after creation (2444ed5c)
|
||||
* add new hook filteR:topics.getSortedTids (b93c826d)
|
||||
* bypass cropper for gifs (9a756004)
|
||||
* deprecate file.isFileTypeAllowed (ffe3670f)
|
||||
* send notification to group owners when someone leaves (ed122364)
|
||||
* add failing test for pagination (#7924) (22b02f14)
|
||||
* refactor getSortedSetRange to allow big arrays (b602c044)
|
||||
* add new test (1e5246f9)
|
||||
* add rss feed url for tags (bbc2e956)
|
||||
* add sm2x avatar class #7813 (35a4ca2f)
|
||||
* #7090, abililty to hide widgets (71cd602d)
|
||||
* #7760, body-parser config (5de6d885)
|
||||
* actually cache duh (f05c1dae)
|
||||
* cache tags:topic:count (63bd252f)
|
||||
* increase search timeouts (1789ecb4)
|
||||
* make handleSearch public (ebe5ed22)
|
||||
* increase size of local cache (b81405a8)
|
||||
* don't hardcode numberic fields in user search (09410ff1)
|
||||
* allow only watching core (451c7fd4)
|
||||
* client-side taskbar.update method, deprecates .updateTitle() (9b09ee0e)
|
||||
* option to restrict group leaving, closes #7770 (1796b65d)
|
||||
* preserver querystring when changing category sort (ad96b0e0)
|
||||
* html sanitization on all filter:parse.* hooks, closes #7872 (2580306d)
|
||||
* up socket.io-adapter-mongo (3d2cb628)
|
||||
* update LESS to v3.x, #7855 (#7867) (aea04de0)
|
||||
* up psql socket.io adapter (b565e568)
|
||||
* add client side hook for quick search&normal search (f31d30cd)
|
||||
* allow floating pinned topics to top in getSortedTopics (1d7e0c63)
|
||||
* promisify recent.getData (6f7ab586)
|
||||
* faster initial stat loading (89cd31ed)
|
||||
* cache stats, mongo count sucks (cb50b3f4)
|
||||
* dashboard stats (3ff6e1bb)
|
||||
* add filter:search.getPosts (aeb44faf)
|
||||
* add image and imageClass to post summaries (80bd52fc)
|
||||
* #7842, make isInvited, isPending work with uids (fa268556)
|
||||
* convert search controller to async/await (acf12e3d)
|
||||
* notification on membership acceptance, closes #7835 (1a2a381a)
|
||||
* additional events logged for various group actions (1ce33faa)
|
||||
* async (e6353486)
|
||||
* async/await controllers/admin/dashboard (32ea04a8)
|
||||
* async/await admin/controllers (72590b34)
|
||||
* async/await (7beef91c)
|
||||
* async/await refactor (3cc7ec63)
|
||||
* async/await controllers/accounts (a3541d88)
|
||||
* rewrite getRawPost to async/await (b734defb)
|
||||
* added new filter hook filter:post.getRawPost (973075cf)
|
||||
* convert categories controller to async/await (e9fd49e2)
|
||||
* new client-side hooks for chat minimize and close (3d3fa865)
|
||||
* test psql without defineProperty (#7815) (af1f7249)
|
||||
* fire updateRemainingLength hook for chats (af968c6a)
|
||||
* send pids into filter:post.getFields hook (0e07ffa1)
|
||||
* move cache tpl (65fc0612)
|
||||
* async refactor (3a9d83a4)
|
||||
* move group privs above user, add labels (47e30a67)
|
||||
* widgets/index.js (dec8040c)
|
||||
* use promise version (4d6b6871)
|
||||
* #7743, meta/dependencies (1c2540d3)
|
||||
* #7743, widgets/admin (96ebe7b5)
|
||||
* #7743, meta/languages and languages (c02686bf)
|
||||
* added filter:tags.getAll plugin hook (66aa443b)
|
||||
* #7743, events (102d4b02)
|
||||
* #7743 meta/errors (97d7a850)
|
||||
* get rid of async.eachSeries (99cf47ee)
|
||||
* #7743 meta/tags.js (7b908639)
|
||||
* #7743 meta/templates.js (79eed9ae)
|
||||
* #7743 navigation (764a2b12)
|
||||
* #7743 account/posts controller (e72f3e4f)
|
||||
* #7743 finish topics controller (9b3f4b98)
|
||||
* #7743, webserver (0d047f4e)
|
||||
* #7743 meta/themes.js (7dc0eaf0)
|
||||
* #7743, meta/sounds (a15c50bf)
|
||||
* #7743 , meta/cachebuster, meta/configs (7f72181e)
|
||||
* convert src/messaging/* to async/await (#7778) (756a717e)
|
||||
* #7743 meta/blacklist (fcf8fd51)
|
||||
* #7743 meta/index (69860e58)
|
||||
* #7743 plugins (c126cd85)
|
||||
* #7743 plugins/data (f5f5f76b)
|
||||
* dont waste whitespace (17f843f9)
|
||||
* switch to promise.all (34d85b52)
|
||||
* #7743, privileges (faccb191)
|
||||
* #7743 , search.js (6d3a92b8)
|
||||
* shorter name (8e75646a)
|
||||
* cache group:members for priv groups (daed76d5)
|
||||
* #7743 finish groups (72def7df)
|
||||
* #7743, groups/index, invite, leave,membership (a39ca51e)
|
||||
* #7743,groups/index,join (d5342a40)
|
||||
* #7743, groups/delete,ownership,posts,user (fcd4445a)
|
||||
* #7743 groups/cover,create,data (5e8614e1)
|
||||
* #7743, finish post module (c0c6c652)
|
||||
* #7743 posts/diff, posts/edit (c4bb467e)
|
||||
* #7743, posts module (1b2b308a)
|
||||
* #7743, finish user module (a51ec591)
|
||||
* #7743 (6fea46b6)
|
||||
* #7743 (cd80c263)
|
||||
* #7743 (0a690c57)
|
||||
* #7743 (1c5fad6d)
|
||||
* #7743 (fe4c0481)
|
||||
* #7743 categories (fcf3e077)
|
||||
* #7743, user/digest, user/email, user/follow (c610eb14)
|
||||
* #7743, user/create, user/data, user/delete (d6e36c31)
|
||||
* #7743 , user/block, user/categories (4541caa4)
|
||||
* #7743 notifications (6f738c2b)
|
||||
* remove unused code, add 2 tests (cd2e68cb)
|
||||
* #7743 user/ban, up mubsub (1970214a)
|
||||
* #7743, user/approval, user/auth (b24ce976)
|
||||
* #7743, posts/votes (8ef75be3)
|
||||
* #7743 posts (e1ecc36d)
|
||||
* #7743 user/admin.js (2c335955)
|
||||
* add utils.promiseParallel (4170abfd)
|
||||
* #7743, posts/user.js (0a6cfb37)
|
||||
* added new admin option newbiePostEditDuration (#7737) (8a6a58ee)
|
||||
* returning category data in tags page (75ff4d7d)
|
||||
* ACP analytics API route (#7725) (a0c0ef1b)
|
||||
* closes #7718 (ee4d78ca)
|
||||
* add status to post summaries (41bc6ca2)
|
||||
* use arrow functions (3100d803)
|
||||
* ability to sort watched topics, closes #3735 (f24c14d7)
|
||||
* use fewer system resources to draw the progress bar (d0ee312c)
|
||||
* removed series from upgrade script (23fb904f)
|
||||
* remove duped zadds, these are already in topics.onNewPostMade (cb51c239)
|
||||
* log data on error (f8a7cf73)
|
||||
* cleanup, use bulk (198d0587)
|
||||
* #7707, added sortedSetAddBulk (3ecd703e)
|
||||
* change widget-* to data-widget-* (#7703) (13efbc99)
|
||||
* shorter setsCard (3780a58f)
|
||||
* show best & latest posts on profile (b53a60c2)
|
||||
* use db.sortedSetsAdd (7e54d7aa)
|
||||
* use db.sortedSetsAdd (29a124c4)
|
||||
* dont log action:plugins.fireHook (a7600b4b)
|
||||
* upgrade to connect-mongo 3.0.0, closes #7693 (ebfc369a)
|
||||
* add hook for user notifications, closes #7672 (ede060a6)
|
||||
* user/notifications refactor (580f7860)
|
||||
* send new post/topic event in batches (8c331088)
|
||||
* allowing count to be passed to ./nodebb events (f6d3cc0e)
|
||||
* awaitable websockets (#7645) (aee47b29)
|
||||
* hooks can now return promise or call callbacks (a6436716)
|
||||
* fallback strings for ACP events (99120676)
|
||||
* design revamp of ACP events page (#7664) (c7f95cce)
|
||||
* optimize group rename (48538b28)
|
||||
* allow multiple scores in sortedSetsAdd (31ccc860)
|
||||
* optimize copy privileges (0dca13e9)
|
||||
* on category search reveal children and parents (0721bee1)
|
||||
* async3 upgrade (#7639) (4d9bc30d)
|
||||
* #7627, close chat on ajaxify on mobile (6cebc7f0)
|
||||
* update meta tags on ajaxify (#7580), fixes #7544 (a41769e6)
|
||||
|
||||
##### Bug Fixes
|
||||
|
||||
* **deps:**
|
||||
* update dependency mongodb to v3.3.4 (#8032) (2093418d)
|
||||
* update dependency nodebb-theme-vanilla to v11.1.10 (c01699f7)
|
||||
* update dependency nodebb-theme-persona to v10.1.27 (182397b1)
|
||||
* update dependency nodebb-plugin-spam-be-gone to v0.6.7 (#8027) (c2565a2f)
|
||||
* update dependency nodebb-theme-slick to v1.2.27 (#8020) (7122bdc7)
|
||||
* update dependency nodebb-theme-persona to v10.1.26 (#8019) (73d9752e)
|
||||
* update dependency connect-mongo to v3.1.2 (#8013) (bfea9d39)
|
||||
* update dependency postcss to v7.0.21 (#7998) (ef5f6714)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.17 (#8009) (e1e2d20c)
|
||||
* update dependency sharp to v0.23.2 (#8005) (420f9fe4)
|
||||
* update dependency nodebb-theme-persona to v10.1.25 (#8012) (cb91e756)
|
||||
* update dependency connect-mongo to v3.1.1 (#8006) (7655265c)
|
||||
* update dependency connect-mongo to v3.1.0 (#7994) (401d1eed)
|
||||
* bump persona (6155c460)
|
||||
* update dependency nodebb-theme-persona to v10.1.23 (#7986) (9bd6f686)
|
||||
* update dependency nodebb-theme-persona to v10.1.22 (#7965) (bf6ae6d6)
|
||||
* update dependency nodebb-rewards-essentials to v0.1.2 (#7962) (692d94bf)
|
||||
* update dependency nodebb-theme-persona to v10.1.21 (#7956) (1a150d8f)
|
||||
* update dependency nodebb-plugin-spam-be-gone to v0.6.6 (#7944) (cffbb325)
|
||||
* update dependency nodebb-theme-persona to v10.1.20 (#7943) (9589fa32)
|
||||
* update dependency nodebb-theme-persona to v10.1.19 (#7942) (0d629f06)
|
||||
* update dependency connect-redis to v4.0.3 (#7933) (2856333d)
|
||||
* update dependency spider-detector to v2 (310039e8)
|
||||
* update socket.io packages to v2.3.0 (764ed7f8)
|
||||
* update dependency sharp to v0.23.1 (#7928) (17437897)
|
||||
* update dependency nodebb-plugin-dbsearch to v4.0.6 (#7918) (44cd7189)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.16 (#7917) (d8fe6e42)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.15 (#7916) (c5e5e24b)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.14 (#7914) (e18392ab)
|
||||
* update dependency nodebb-theme-persona to v10.1.18 (#7906) (8ed80bcb)
|
||||
* update dependency nodebb-rewards-essentials to v0.1.1 (#7905) (5b8bb3e4)
|
||||
* update dependency connect-redis to v4 (#7869) (8b7f6566)
|
||||
* update dependency nodebb-plugin-mentions to v2.7.3 (#7899) (b2423bae)
|
||||
* update dependency nodebb-plugin-mentions to v2.7.2 (#7898) (a3120a62)
|
||||
* update dependency nodebb-plugin-dbsearch to v4.0.5 (#7896) (106c20e2)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.13 (#7895) (fa251ece)
|
||||
* update dependency nodebb-plugin-mentions to v2.7.1 (8c2fc577)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.12 (#7889) (429e124f)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.11 (#7888) (516b62ea)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.10 (6a4a9e26)
|
||||
* update dependency nodebb-plugin-dbsearch to v4.0.4 (#7883) (12ba589d)
|
||||
* update dependency postcss to v7.0.18 (c75f3d27)
|
||||
* update dependency nodebb-theme-persona to v10.1.17 (317c6771)
|
||||
* update dependency nodebb-theme-vanilla to v11.1.8 (6e9caddc)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.9 (effe3989)
|
||||
* update dependency nodebb-plugin-mentions to v2.7.0 (b69769bb)
|
||||
* update dependency benchpressjs to v2 (#7876) (9149db1f)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.8 (793c5eaa)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.7 (57de99d2)
|
||||
* update dependency mongodb to v3.3.2 (#7871) (4ee2c090)
|
||||
* update dependency nodebb-plugin-spam-be-gone to v0.6.5 (#7865) (8ce2a5fc)
|
||||
* update dependency mongodb to v3.3.1 (#7862) (0dfce49f)
|
||||
* update dependency connect-pg-simple to v6 [security] (#7864) (e4b5d0b4)
|
||||
* update dependency nodebb-plugin-mentions to v2.6.1 (a1210985)
|
||||
* update dependency nodebb-plugin-mentions to v2.6.0 (cdccc646)
|
||||
* update dependency rimraf to v3 (#7843) (2f02edbc)
|
||||
* update dependency rimraf to v2.7.1 (#7838) (cf2504f8)
|
||||
* update dependency nodebb-theme-persona to v10.1.16 (#7848) (ca7ba9be)
|
||||
* update dependency nodebb-theme-persona to v10.1.15 (#7845) (b1c0beb7)
|
||||
* update dependency nodebb-theme-persona to v10.1.14 (#7837) (661284cf)
|
||||
* update dependency nodebb-theme-persona to v10.1.13 (eaea6f63)
|
||||
* update dependency sitemap to v4 (d3d677da)
|
||||
* update dependency commander to v3 (7a5dbd9f)
|
||||
* update dependency mongodb to v3.3.0 (360e172e)
|
||||
* update dependency nodebb-plugin-markdown to v8.10.4 (61f9be99)
|
||||
* update dependency nodebb-plugin-markdown to v8.10.3 (d860f8c7)
|
||||
* update dependency sharp to v0.23.0 (#7806) (2258452c)
|
||||
* update dependency nodebb-theme-persona to v10.1.12 (#7799) (b9aac424)
|
||||
* update dependency nodebb-plugin-dbsearch to v4 (#7797) (d98313b5)
|
||||
* update dependency nodebb-plugin-dbsearch to v3.0.8 (#7796) (ef734b62)
|
||||
* update dependency nodebb-theme-persona to v10.1.11 (8b1fc5c8)
|
||||
* update dependency nodebb-theme-vanilla to v11.1.7 (ba1bb528)
|
||||
* update dependency nodebb-theme-vanilla to v11.1.6 (#7784) (7a88c4cc)
|
||||
* update dependency nodebb-theme-slick to v1.2.26 (#7782) (e074b0bf)
|
||||
* update dependency nodebb-theme-persona to v10.1.10 (#7781) (4f20b4d3)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.6 (3fdc638b)
|
||||
* update dependency connect-redis to v3.4.2 (8a11193f)
|
||||
* update dependency nodebb-plugin-mentions to v2.5.4 (45223cde)
|
||||
* update dependency nodebb-plugin-markdown to v8.10.2 (86546232)
|
||||
* update dependency nodebb-theme-persona to v10.1.9 (#7759) (c1660a1a)
|
||||
* update dependency nodebb-plugin-dbsearch to v3.0.7 (#7758) (efedd621)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.5 (7f4b1043)
|
||||
* update dependency nodebb-theme-vanilla to v11.1.5 (#7756) (15e01d12)
|
||||
* update dependency nodebb-theme-persona to v10.1.8 (#7755) (19679608)
|
||||
* update dependency nodebb-theme-persona to v10.1.7 (#7754) (3cb6cfe8)
|
||||
* update dependency nodebb-plugin-composer-default to v6.3.3 (8394a0fd)
|
||||
* update dependency nodebb-theme-vanilla to v11.1.4 (#7741) (43ce5f8a)
|
||||
* update dependency nodebb-theme-persona to v10.1.5 (27da2325)
|
||||
* update dependency validator to v11.1.0 (#7738) (bd09ba92)
|
||||
* bump composer-default (851424a7)
|
||||
* update dependency nodebb-theme-persona to v10.1.4 (f426e105)
|
||||
* update dependency nodebb-plugin-composer-default to v6.2.16 (#7723) (fb087029)
|
||||
* update dependency nodebb-theme-persona to v10.1.3 (413259a2)
|
||||
* update dependency nodebb-theme-lavender to v5.0.11 (#7705) (208c821e)
|
||||
* update dependency nodebb-theme-vanilla to v11.1.3 (#7714) (e0b2ae8d)
|
||||
* update dependency nodebb-theme-slick to v1.2.25 (#7713) (af7ecd2f)
|
||||
* update dependency nodebb-theme-persona to v10.1.2 (#7712) (e5733f40)
|
||||
* update dependency nodebb-plugin-mentions to v2.5.3 (26ff02dc)
|
||||
* update dependency nodebb-theme-persona to v10.1.1 (4e513cf3)
|
||||
* update dependency nodebb-theme-vanilla to v11.1.2 (c2887505)
|
||||
* update dependency nodebb-theme-vanilla to v11.1.1 (#7700) (b3ed89f5)
|
||||
* update dependency nodebb-theme-slick to v1.2.24 (#7699) (629b5ce3)
|
||||
* update to eslint@6 (289dada5)
|
||||
* update dependency nodebb-plugin-emoji to v3 (15020b46)
|
||||
* update dependency nodebb-plugin-emoji to v3 (6b43d26f)
|
||||
* update dependency nodebb-theme-persona to v10.1.0 (fc89516e)
|
||||
* update dependency nodebb-theme-vanilla to v11.1.0 (c9689f11)
|
||||
* update dependency nodebb-theme-persona to v10.0.1 (#7687) (ada8f22e)
|
||||
* update dependency nodebb-theme-vanilla to v11.0.1 (#7688) (6db3604e)
|
||||
* update dependency nodebb-theme-vanilla to v11 (89fea9d3)
|
||||
* update dependency nodebb-theme-persona to v10 (0a7778bd)
|
||||
* update dependency nodebb-theme-lavender to v5.0.10 (#7682) (e1e4abeb)
|
||||
* update dependency nodebb-plugin-markdown to v8.10.0 (de046297)
|
||||
* update dependency postcss to v7.0.17 (ae891390)
|
||||
* update dependency nodebb-rewards-essentials to v0.0.14 (#7671) (3f4f8afa)
|
||||
* update dependency mongodb to v3.2.7 (#7665) (988cbb63)
|
||||
* update dependency nodebb-plugin-composer-default to v6.2.15 (e21246a9)
|
||||
* update dependency nodebb-theme-persona to v9.1.38 (#7652) (d202be5b)
|
||||
* update dependency nodebb-theme-vanilla to v10.1.34 (#7653) (e3308659)
|
||||
* update dependency nodebb-theme-vanilla to v10.1.33 (#7651) (6f70397b)
|
||||
* update dependency nodebb-theme-persona to v9.1.37 (#7650) (d43bdb41)
|
||||
* update dependency async to v3.0.1 (#7649) (3b8e6e15)
|
||||
* update dependency mongodb to v3.2.6 (#7616) (3f21096d)
|
||||
* update dependency validator to v11 (a3d42404)
|
||||
* update dependency nodebb-plugin-composer-default to v6.2.14 (#7635) (b174c2d2)
|
||||
* update dependency nodebb-theme-vanilla to v10.1.32 (#7631) (85ca5b19)
|
||||
* update dependency nodebb-plugin-composer-default to v6.2.13 (d1f29e26)
|
||||
* update dependency nodebb-plugin-spam-be-gone to v0.6.3 (#7614) (20fa751c)
|
||||
* crash if post doesn't have topic data (eabc6f47)
|
||||
* don't touch objects that don't have the required fields (e52ecfaf)
|
||||
* add missing await to sendValidationEmail (f4381ba3)
|
||||
* #8007 added tfoot to clear new group button (dee1d447)
|
||||
* tests (e3c9dafa)
|
||||
* #8018, allow absolute urls in notification.path (0037a038)
|
||||
* #8010, fix isBanned call (59242d31)
|
||||
* #8003, check children recursively (c4e58160)
|
||||
* dont show delete topics on unread (b91c4790)
|
||||
* #8000, tweak wording; password reset success (3952849f)
|
||||
* parseInt cutoff (0e5e47f4)
|
||||
* lint (4b8897d9)
|
||||
* convert param to string in slugify (441dd86d)
|
||||
* cli/reset.js (#7979) (f9f85fc4)
|
||||
* #7977, fix undefined url (#7978) (95a372df)
|
||||
* passwords always expiring upon login (ddf3812c)
|
||||
* #7974 (#7976) (ca3be1f3)
|
||||
* delete follower/followingCount as well (d72b0d16)
|
||||
* event tests (0da4f7ee)
|
||||
* #7958, give rewards one by one (3775301f)
|
||||
* rewards page acp not loading rewards (88818a5b)
|
||||
* #7929, use fixed bootswatch (dd202931)
|
||||
* #7960, dont try to save size for non images (f272daaf)
|
||||
* #7941, validate some input fields (565f9726)
|
||||
* don't show deleted topics on unread (661a0f50)
|
||||
* #7951, don't send notification for system messages (c01b0fbd)
|
||||
* #7953, allow icon only group badges (5b458fc7)
|
||||
* remove 0 fields (ac4a5004)
|
||||
* remove unused data from post/topic/user hashes (75bcb0f4)
|
||||
* groups not visible on widget panes (205d3f9d)
|
||||
* new nav items will show group select (c5f7b66c)
|
||||
* move post and change owner (f402d727)
|
||||
* 404 on new groups with spaces (b19f0a68)
|
||||
* #7940, run upgrade scripts on startup (7823144b)
|
||||
* #7949, delete old user notifs (38322ec3)
|
||||
* tests (6fb29e84)
|
||||
* check threshold before setting bookmark (f983f536)
|
||||
* mongo collection stats (4e28e575)
|
||||
* #7947, disable unused cookie (91e8e390)
|
||||
* #7945, show watched categories in ignored categories (c9bf6d0f)
|
||||
* db.init calls (18bf865d)
|
||||
* #7938, escape username in registration queue (d5dda26f)
|
||||
* #7901, handle group names that are translation keys (3455c27a)
|
||||
* fix the order of groups on user profile (41f8da2e)
|
||||
* #7935, ACP digest wording (54c9f877)
|
||||
* #7934, return tids (10f168b8)
|
||||
* tests (3caa387a)
|
||||
* tests (9c051386)
|
||||
* remove jquery (95ab0712)
|
||||
* picture not showing up in change modal (13c87059)
|
||||
* profile page meta tags getting escaped twice (7effc892)
|
||||
* missing await (2150701f)
|
||||
* potential for XSS here (40f131a6)
|
||||
* account/categories (7a0f6074)
|
||||
* redis tests (1f054c7e)
|
||||
* #7921, dont create wrong entries in db for flag (a651d154)
|
||||
* #7913, dont allow urls in fullname/location, validate birthday (babb9d7c)
|
||||
* upgrade scripts (bd026cb1)
|
||||
* only allow png/jpg/bmp in cover/profile images (96ab8d05)
|
||||
* #7919, add useUnifiedTopology (910b9b88)
|
||||
* crash in feed (873ec519)
|
||||
* lang key (795d4183)
|
||||
* time cutoff and lang string (5b8550f0)
|
||||
* returned data (87f6ac59)
|
||||
* dont send all category data back to recent&unread etc (955e00fd)
|
||||
* #7912 (ecf39727)
|
||||
* only return necessary data for categories (307abaa8)
|
||||
* dont crash if callback is undefined (e0fec866)
|
||||
* #7800, dont crash on resize (781b3f1a)
|
||||
* change params (de461968)
|
||||
* remove dupe code (9b151b23)
|
||||
* #7894, translate log in to view (2a5fe2b8)
|
||||
* minor typo (b99279a8)
|
||||
* #7893, check private upload setting (0843497d)
|
||||
* #7892, handle string 'true'/'false' (77cb4b55)
|
||||
* dont show deleted topics in digest (4652c68b)
|
||||
* #7824, update timeago settings on userlanguage change (3887fc67)
|
||||
* don't move theme/plugin to top if its already active (acd95764)
|
||||
* #7853, dissociation on post purge (30a86ed5)
|
||||
* added comment back (0c4cd840)
|
||||
* inability for plugins to actually alter parser sanitization config (fe452762)
|
||||
* htmlentity instead of url encoding for room rename system message (9b8ac89e)
|
||||
* page count for filters (e291a609)
|
||||
* #7866, show correct title based on digest interval (547bb496)
|
||||
* #7780 (21e81f96)
|
||||
* pinned tids showing on page > 1 (f2912e9f)
|
||||
* #7860, allow running single upgrade scripts from plugins (a4dec7e3)
|
||||
* reset should not automatically build assets (a67762bc)
|
||||
* update morgan and lodash (2b1912a9)
|
||||
* #7842, groups.invite works with an array of uids (1e0190ab)
|
||||
* #7844, add uid to events, log plugin install/uninstall events (592d9c82)
|
||||
* removed console.logs (c44bf48c)
|
||||
* broken tests from 71b205a889da1ee8dd326b0891d122a522084f54 (f736f0b3)
|
||||
* typo (c6c13725)
|
||||
* category description getting translated in ACP (647713f3)
|
||||
* #7791 (71620519)
|
||||
* #7831, fix pagination (014e3153)
|
||||
* remove empty line (292bbe34)
|
||||
* remove useless catchs and empty line (5fce4558)
|
||||
* #7823, fix topic move readding pids when topic is deleted (fd5f9822)
|
||||
* #7826, fix order of categories on recent dropdown (3ecac97d)
|
||||
* redis pubsub not being required correctly (8d4f2086)
|
||||
* mongo.close using wrong client (186321e6)
|
||||
* digest not sending topics (bc6f22eb)
|
||||
* #7816, adding GDPR and TOU interstitials earlier on route reloading (52a2e5d6)
|
||||
* #7809, dont check postDelay if submitting from queue (9780f5b9)
|
||||
* newPostEditDuration (2abe244b)
|
||||
* #7789 (6a289fba)
|
||||
* #7798, fix nested post selection (666e0eaf)
|
||||
* #7788, fix on topic move and new post (8bf40d04)
|
||||
* #7788, fix another edge case (053ff510)
|
||||
* topicData passed to action:topic.edit (b10ad7b6)
|
||||
* derpy catch (ce912886)
|
||||
* #7788 No new posts (#7793) (3c32d860)
|
||||
* user urls in subfolder install (6a486e35)
|
||||
* #7765 (0b498acd)
|
||||
* tests (87552c55)
|
||||
* revert requires (3dd806dc)
|
||||
* #7763, parse about me on all profile pages (f8d34101)
|
||||
* status and groupTitle, if its not set (e2e33dfb)
|
||||
* don't return promise (2f0a331f)
|
||||
* socket.io methods calling callbacks twice if method returns promise (44a33520)
|
||||
* tests (87b1148f)
|
||||
* tests (930ffd07)
|
||||
* #7601 removed check for another user when sending messages (0e8ee31b)
|
||||
* mongodb tests (3b24de4c)
|
||||
* getTopicsFromSet (13aaf07b)
|
||||
* #7762, allow array for isBanned (9eb1fcd4)
|
||||
* add flag for change post owner (46639be3)
|
||||
* sitemap ajaxify (9f78bd7a)
|
||||
* #7751, make necro separator a partial (2b70e86f)
|
||||
* #7748, if reputation system is disabled, dont check min reputation (7b95ebbb)
|
||||
* remove left over code, use proper names (0ac49d63)
|
||||
* compatibility conditional (fba67196)
|
||||
* private upload img replacement should happen before img wrapping (16aae517)
|
||||
* #7423 private uploads are linked to login page, for guests (49e3a368)
|
||||
* typo (f3440ebf)
|
||||
* #7722, hsts deprecation warnings (8b1dadb7)
|
||||
* upgrade script #7720 (accf48f3)
|
||||
* indents (a5de54f8)
|
||||
* remove debug code that should not have made it in (af17c6e3)
|
||||
* dont display post tools if there are no options (708df46e)
|
||||
* output span in buildAvatar helper instead of div (69fae1a7)
|
||||
* restore uid in teasers userObj (67b8cb89)
|
||||
* dont allow edit if post is deleted by someone else (667bc67f)
|
||||
* dont show delete posts on profile (e48c7cd7)
|
||||
* on new post add it to cid::uid::pids (6a7bc1c5)
|
||||
* #5570, create per category user post zsets (a39f0ef5)
|
||||
* restrict drag drop to pin icon, closes #7702 (e1c05e59)
|
||||
* remove dupe code (68e5d7ad)
|
||||
* get uids directly for csv (39ee3980)
|
||||
* typo (a251032f)
|
||||
* id/for (b4cc8d88)
|
||||
* #7659 add option to change cookie link url (25ea6347)
|
||||
* middle vertical-align for .avatar elements (1894cd9b)
|
||||
* dependency checker always triggering dep upgrade, hopefully (c241551d)
|
||||
* #7483, show latest undeleted message as teaser (644504ff)
|
||||
* #7567, allow invite and approval at the same time (4b843ba1)
|
||||
* #7625, on group rename update nav/widget items (5b85ed31)
|
||||
* psql error (8d319e42)
|
||||
* try to fix psql :dog: (2e6b562f)
|
||||
* no need for moderate bit for global mods and admins (8aef689f)
|
||||
* attribute name so it works for both templates (ebb32e78)
|
||||
* #7647, fix getModeratorUids (64679b37)
|
||||
* #7644 (5cd9e1bf)
|
||||
* bad usage of async requisition (603c5262)
|
||||
* 7638, returnTo accidentally saved into user hash (f321b426)
|
||||
* #7634, make strip exif configurable (157b921e)
|
||||
* #7636, use reputation threshold for post queue (a8409fbd)
|
||||
* #7623, wait for lastonline to update on /users (63e5d383)
|
||||
* https://github.com/barisusakli/nodebb-plugin-dbsearch/issues/53 (e65ddc98)
|
||||
* #7593, unable to set account password if no password set (80c0d579)
|
||||
* incorrect pathname format for app.previousUrl (a97e97b9)
|
||||
* #7598, use notice element instead of alert (106d52a4)
|
||||
* #7620, allow adding new fields into user objects for posts (a8e65205)
|
||||
* #7629, new filter hook for room rename (7ba4a864)
|
||||
* #7628, log email send errors (7a4b68e8)
|
||||
* {username} not working in notification.tpl (f55cc667)
|
||||
* do not prevent nbb from starting (3b0459a0)
|
||||
* #7624, default open state on stateless flags (91f0bce6)
|
||||
* #7431, add /unread link to topic route (15391da5)
|
||||
* #7619 (35d10f76)
|
||||
* #7618 save pathname into app.previousUrl ins. of entire url (7e5cb72a)
|
||||
* handle missing timestamps (172e6888)
|
||||
* broken test for meta tags on ajaxify (b70e03a7)
|
||||
* #7613 (15ce23da)
|
||||
* #7600, removing nbsp from email CTAs (#7606) (f552cea5)
|
||||
* #7604 shortened CTA text and added custom text for some notifs (#7605) (b32da57f)
|
||||
* **style:**
|
||||
* requiring parens in block bodies (29f96b19)
|
||||
* updated code to follow new eslint recommendations (09212309)
|
||||
|
||||
##### Refactors
|
||||
|
||||
* use arrow function (6b3eb014)
|
||||
* async/await (02d38caf)
|
||||
* remove log, topics.exists (f8c8038a)
|
||||
* async/await (dc8d721c)
|
||||
* async/await mongo (1f0c6f3d)
|
||||
* async/await socket.io/index (603908c1)
|
||||
* async/await image.js (c5ffd8cc)
|
||||
* remove var (05e753c7)
|
||||
* async/await flags.js (ac6eb31c)
|
||||
* async/await flags (0ced71be)
|
||||
* shorter map (572bc297)
|
||||
* remove logs (03971049)
|
||||
* dont modify key (7e7ea7a6)
|
||||
* remove logs (e32a5546)
|
||||
* async/await flags (9ee1a882)
|
||||
* shorter, new Date doesnt throw (625b0815)
|
||||
* remove temp var (b842057f)
|
||||
* async/await file (f9d6912b)
|
||||
* async/await analytics (223c108c)
|
||||
* change to const (5505628c)
|
||||
* returned fields (86b16629)
|
||||
* async/await emailer (63bd3fc5)
|
||||
* async/await routes/feeds (ec3b5dd9)
|
||||
* async/await rewards (b110aec6)
|
||||
* async/await socket.io (a7d2b8a1)
|
||||
* async/await (52b2d670)
|
||||
* async/await (75d7ae92)
|
||||
* async/await socket.io/topics (5c2afe5e)
|
||||
* async/await controllers/user.js (3c6c40b1)
|
||||
* async/await uploads (5c0266d8)
|
||||
* move tos parsing to /tos (3e2ed21d)
|
||||
* remove commented out code (ec98945a)
|
||||
* async/await controllers/authentication (b9105ef9)
|
||||
* remove async from isPasswordValid, function is sync (22f80116)
|
||||
* make categories.buildForSelectCategories non async (6cda3698)
|
||||
* remove dupe code (a4d84a66)
|
||||
* async/await socket.io/posts (e93ef0d7)
|
||||
* async/await socket.io/admin (88dfbf21)
|
||||
* socket.io/admin/categories async/await (71e50bbf)
|
||||
* admin groups.join socket async/await (4588a4fd)
|
||||
* password async/await (dd8386d9)
|
||||
* sitemap to async/await (0164e51f)
|
||||
* remove hook assign (d3727207)
|
||||
* async/await users (f9a804e0)
|
||||
* remove empty line (19b63bfa)
|
||||
* remove vars (69333f59)
|
||||
* async/await controllers (2c4f0446)
|
||||
* async/await controllers/tags (53624885)
|
||||
* async/await (f15c7f12)
|
||||
* globalmods/groups (0722cc47)
|
||||
* controllers/category.js (bd8736db)
|
||||
* use arrow func (27c27b49)
|
||||
* async/await controllers/api (4eaa630b)
|
||||
* async/await admin/controllers (6f375482)
|
||||
* async/await, remove dupe code for homepage routes (c9250a01)
|
||||
* async/await for src/socket.io/groups.js (71b205a8)
|
||||
* rewrote SocketPosts.getRawPost in await style (08530bb3)
|
||||
* replace avatar conditional code with buildAvatar helper (#7681) (25238899)
|
||||
|
||||
##### Reverts
|
||||
|
||||
* accidental removal of some needed translation source strings (868dedd1)
|
||||
|
||||
#### 1.12.2 (2019-05-15)
|
||||
|
||||
##### Chores
|
||||
|
||||
@@ -126,6 +126,7 @@
|
||||
"eventLoopInterval": 500,
|
||||
"onlineCutoff": 30,
|
||||
"timeagoCutoff": 30,
|
||||
"necroThreshold": 7,
|
||||
"categoryWatchState": "watching",
|
||||
"submitPluginUsage": 1
|
||||
}
|
||||
@@ -46,7 +46,7 @@
|
||||
"compression": "^1.7.1",
|
||||
"connect-ensure-login": "^0.1.1",
|
||||
"connect-flash": "^0.1.1",
|
||||
"connect-mongo": "3.1.2",
|
||||
"connect-mongo": "3.2.0",
|
||||
"connect-multiparty": "^2.1.0",
|
||||
"connect-pg-simple": "^6.0.0",
|
||||
"connect-redis": "4.0.3",
|
||||
@@ -74,24 +74,24 @@
|
||||
"material-design-lite": "^1.3.0",
|
||||
"mime": "^2.2.0",
|
||||
"mkdirp": "^0.5.1",
|
||||
"mongodb": "3.3.4",
|
||||
"mongodb": "3.4.0",
|
||||
"morgan": "^1.9.1",
|
||||
"mousetrap": "^1.6.1",
|
||||
"mubsub-nbb": "^1.5.1",
|
||||
"nconf": "^0.10.0",
|
||||
"nodebb-plugin-composer-default": "6.3.17",
|
||||
"nodebb-plugin-dbsearch": "4.0.6",
|
||||
"nodebb-plugin-composer-default": "6.3.20",
|
||||
"nodebb-plugin-dbsearch": "4.0.7",
|
||||
"nodebb-plugin-emoji": "^3.0.0",
|
||||
"nodebb-plugin-emoji-android": "2.0.0",
|
||||
"nodebb-plugin-markdown": "8.10.4",
|
||||
"nodebb-plugin-markdown": "8.11.0",
|
||||
"nodebb-plugin-mentions": "2.7.3",
|
||||
"nodebb-plugin-soundpack-default": "1.0.0",
|
||||
"nodebb-plugin-spam-be-gone": "0.6.7",
|
||||
"nodebb-rewards-essentials": "0.1.2",
|
||||
"nodebb-theme-lavender": "5.0.11",
|
||||
"nodebb-theme-persona": "10.1.27",
|
||||
"nodebb-theme-slick": "1.2.27",
|
||||
"nodebb-theme-vanilla": "11.1.10",
|
||||
"nodebb-theme-persona": "10.1.30",
|
||||
"nodebb-theme-slick": "1.2.28",
|
||||
"nodebb-theme-vanilla": "11.1.12",
|
||||
"nodebb-widget-essentials": "4.0.17",
|
||||
"nodemailer": "^6.0.0",
|
||||
"passport": "^0.4.0",
|
||||
@@ -107,9 +107,9 @@
|
||||
"rimraf": "3.0.0",
|
||||
"rss": "^1.2.2",
|
||||
"sanitize-html": "^1.16.3",
|
||||
"semver": "^6.0.0",
|
||||
"semver": "^7.0.0",
|
||||
"serve-favicon": "^2.4.5",
|
||||
"sharp": "0.23.2",
|
||||
"sharp": "0.23.4",
|
||||
"sitemap": "^5.0.0",
|
||||
"socket.io": "2.3.0",
|
||||
"socket.io-adapter-cluster": "^1.0.1",
|
||||
@@ -124,7 +124,7 @@
|
||||
"textcomplete.contenteditable": "^0.1.1",
|
||||
"toobusy-js": "^0.5.1",
|
||||
"uglify-es": "^3.3.9",
|
||||
"validator": "12.0.0",
|
||||
"validator": "12.1.0",
|
||||
"winston": "3.2.1",
|
||||
"xml": "^1.0.1",
|
||||
"xregexp": "^4.1.1",
|
||||
@@ -133,13 +133,13 @@
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "8.2.0",
|
||||
"@commitlint/config-angular": "8.2.0",
|
||||
"coveralls": "3.0.7",
|
||||
"eslint": "6.6.0",
|
||||
"coveralls": "3.0.9",
|
||||
"eslint": "6.7.0",
|
||||
"eslint-config-airbnb-base": "14.0.0",
|
||||
"eslint-plugin-import": "2.18.2",
|
||||
"grunt": "1.0.4",
|
||||
"grunt-contrib-watch": "1.1.0",
|
||||
"husky": "3.0.9",
|
||||
"husky": "3.1.0",
|
||||
"jsdom": "15.2.1",
|
||||
"lint-staged": "9.4.2",
|
||||
"mocha": "6.2.2",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Delete User(s)",
|
||||
"purge": "Delete User(s) and Content",
|
||||
"download-csv": "Download CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invite",
|
||||
"new": "New User",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "رقم الصفحة غير صحيح ، يجب أن يكون بين %1 و %2 .",
|
||||
"username-taken": "اسم المستخدم مأخوذ",
|
||||
"email-taken": "البريد الالكتروني مأخوذ",
|
||||
"email-not-confirmed": "عنوان بريدك الإلكتروني غير مفعل بعد. انقر هنا لتفعيله من فضلك.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "لا يمكنك الدردشة حتى تقوم بتأكيد بريدك الإلكتروني، الرجاء إضغط هنا لتأكيد بريدك اﻹلكتروني.",
|
||||
"email-not-confirmed-email-sent": "بريدك الإلكتروني غير مفعل. رجاءًا تفحص صندوق البريد عن رسالة التفعيل.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "هذا المنتدى يستلزم تفعيل بريدك الإلكتروني، انقر هنا من فضلك لإدخاله.",
|
||||
"email-confirm-failed": "لم نستطع تفعيل بريدك الإلكتروني، المرجو المحاولة لاحقًا.",
|
||||
"confirm-email-already-sent": "لقد تم ارسال بريد التأكيد، الرجاء اﻹنتظار 1% دقائق لإعادة اﻹرسال",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Изтриване на потребителя/ите",
|
||||
"purge": "Изтриване на потребителя/ите и съдържанието",
|
||||
"download-csv": "Сваляне във формат „CSV“",
|
||||
"manage-groups": "Управление на групите",
|
||||
"add-group": "Добавяне на група",
|
||||
"invite": "Покана",
|
||||
"new": "Нов потребител",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Време",
|
||||
"timestamp.cut-off": "Използване на дата след (в брой дни)",
|
||||
"timestamp.cut-off-help": "Датите и времената ще бъдат показвани относително (напр. „преди 3 часа“ или „преди 5 дни“), и преведени на множество\n\\t\\t\\t\\t\\tезици. След определено време, този текст ще започне да показва самите дата и час, според езика на потребителя\n\\t\\t\\t\\t\\t(напр. „5 ноември 2016 15:30“).<br /><em>(По подразбиране: <code>30</code>, тоест един месец). Ако зададете 0, винаги ще се изписват дати, а ако оставите полето празно, времето ще бъде винаги относително.</em>",
|
||||
"timestamp.necro-threshold": "Мъртва граница (в дни)",
|
||||
"timestamp.necro-threshold-help": "Между публикациите ще бъде показано съобщение, ако времето между тях е по-дълго от мъртвата граница. (По подразбиране: <code>7</code>, или една седмица). Задайте 0 за изключване.</em>",
|
||||
"teaser": "Представителна публикация",
|
||||
"teaser.last-post": "Последната – Показване на последната публикация, или първоначалната такава, ако няма отговори.",
|
||||
"teaser.last-reply": "Последната – Показване на последния отговор, или „Няма отговори“, ако все още няма такива.",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Грешен номер на странициране, трябва да бъде между %1 и %2",
|
||||
"username-taken": "Потребителското име е заето",
|
||||
"email-taken": "Е-пощата е заета",
|
||||
"email-not-confirmed": "Вашата е-поща все още не е потвърдена. Моля, натиснете тук, за да потвърдите е-пощата си.",
|
||||
"email-not-confirmed": "Няма да можете да публикувате съобщения, докато е-пощата Ви не бъде потвърдена. Моля, натиснете тук, за да потвърдите е-пощата си.",
|
||||
"email-not-confirmed-chat": "Няма да можете да пишете в разговори, докато е-пощата Ви не бъде потвърдена. Моля, натиснете тук, за да потвърдите е-пощата си.",
|
||||
"email-not-confirmed-email-sent": "Вашата е-поща все още не е потвърдена. Моля, проверете входящата си кутия за писмото за потвърждение.",
|
||||
"email-not-confirmed-email-sent": "Вашата е-поща все още не е потвърдена. Моля, проверете входящата си кутия за писмото за потвърждение. Няма да можете да публикувате съобщения или да пишете в разговори, докато е-пощата Ви не бъде потвърдена.",
|
||||
"no-email-to-confirm": "Този форум изисква потвърдена е-поща. Моля, натиснете тук, за да въведете е-поща",
|
||||
"email-confirm-failed": "Не успяхме да потвърдим е-пощата Ви. Моля, опитайте отново по-късно.",
|
||||
"confirm-email-already-sent": "Е-писмото за потвърждение вече е изпратено. Моля, почакайте още %1 минута/и, преди да изпратите ново.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Delete User(s)",
|
||||
"purge": "Delete User(s) and Content",
|
||||
"download-csv": "Download CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invite",
|
||||
"new": "New User",
|
||||
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"email-settings": "Email Settings",
|
||||
"address": "Email Address",
|
||||
"email-settings": "ইমেইল সেটিংস",
|
||||
"address": "ইমেইল অ্যাড্রেস",
|
||||
"address-help": "The following email address refers to the email that the recipient will see in the \"From\" and \"Reply To\" fields.",
|
||||
"from": "From Name",
|
||||
"from-help": "The from name to display in the email.",
|
||||
"sendmail-rate-limit": "Send <em>X</em> emails...",
|
||||
"sendmail-rate-delta": "... every <em>X</em> milliseconds",
|
||||
"sendmail-rate-help": "Instructs the NodeBB mailer to limit the number of messages sent at once in order to not overwhelm email receiving services. These options do not apply if SMTP Transport is enabled (below).",
|
||||
"sendmail-rate-limit": "<em>X</em> ইমেইল পাঠাও... ",
|
||||
"sendmail-rate-delta": "... প্রতি<em>X</em> মিলিসেকেন্ডে",
|
||||
"sendmail-rate-help": "NodeBB মেইলার কে নির্দেশ দিন যে একবারে পাঠানো মেইলের সংখ্যা সিমিত রাখতে যাতে ইমেইল গ্রাহক সার্ভিস ওভারলোডেড না হয়ে যায়। এই অপশন কার্যকর হবে না যদি SMTP Transport চালু থাকে (নিচে দেখুন)। ",
|
||||
|
||||
"smtp-transport": "SMTP Transport",
|
||||
"smtp-transport.enabled": "Use an external email server to send emails",
|
||||
@@ -33,8 +33,8 @@
|
||||
"testing.select": "Select Email Template",
|
||||
"testing.send": "Send Test Email",
|
||||
"testing.send-help": "The test email will be sent to the currently logged in user's email address.",
|
||||
"subscriptions": "Email Digests",
|
||||
"subscriptions.disable": "Disable email digests",
|
||||
"subscriptions": "ইমেইল ডাইজেস্ট",
|
||||
"subscriptions.disable": "ইমেইল ডাইজেস্ট নিষ্ক্রিয়",
|
||||
"subscriptions.hour": "Digest Hour",
|
||||
"subscriptions.hour-help": "Please enter a number representing the hour to send scheduled email digests (e.g. <code>0</code> for midnight, <code>17</code> for 5:00pm). Keep in mind that this is the hour according to the server itself, and may not exactly match your system clock.<br /> The approximate server time is: <span id=\"serverTime\"></span><br /> The next daily digest is scheduled to be sent <span id=\"nextDigestTime\"></span>"
|
||||
}
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||
"username-taken": "ইউজারনেম আগেই ব্যবহৃত",
|
||||
"email-taken": "ইমেইল আগেই ব্যবহৃত",
|
||||
"email-not-confirmed": "আপনার ইমেইল এড্রেস নিশ্চিত করা হয় নি, নিশ্চিত করতে এখানে ক্লিক করুন।",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"lead": "Statistický seznam odeslaných přehledů spolu s časy je zobrazen níže.",
|
||||
"disclaimer": "Please be advised that email delivery is not guaranteed, due to the nature of email technology. Many variables factor into whether an email sent to the recipient server is ultimately delivered into the user's inbox, including server reputation, blacklisted IP addresses, and whether DKIM/SPF/DMARC is configured.",
|
||||
"disclaimer-continued": "A successful delivery means the message was sent successfully by NodeBB and acknowledged by the recipient server. It does not mean the email landed in the inbox. For best results, we recommend using a third-party email delivery service such as <a href=\"https://sendgrid.com/why-sendgrid/\">SendGrid</a>.",
|
||||
"disclaimer": "Vezměte prosím na vědomí, že kvůli charakteru e-mailové technologie není zaručeno doručení e-mailu. Mnoho proměnných ovlivňuje, zda je e-mail odeslán na server příjemce, z něj doručen do doručené pošty uživatele, včetně reputace samotného serveru, IP adres na černé listině a zda je nakonfigurováno správně DKIM / SPF / DMARC.",
|
||||
"disclaimer-continued": "Úspěšné doručení zprávy znamená, že byla úspěšně odeslána NodeBB a potvrzena serverem příjemce. Ovšem to neznamená, že e-mail byl doručen do doručené pošty uživatele. Pro dosažení nejlepších výsledků doporučujeme použít službu doručování e-mailů třetích stran, například <a href=\"https://sendgrid.com/why-sendgrid/\">SendGrid</a>.",
|
||||
|
||||
"user": "Uživatel",
|
||||
"subscription": "Typ odběru",
|
||||
"last-delivery": "Poslední úspěšné doručení",
|
||||
"default": "Výchozí systémové",
|
||||
"default-help": "<em>System default</em> means the user has not explicitly overridden the global forum setting for digests, which is currently: "<strong>%1</strong>"",
|
||||
"default-help": "Výchozí systémové znamená, že uživatel nemůže přenastavit celkové nastavení pravidel na fóru pro odesílání přehledů, které je momentálně<strong>%1</strong>",
|
||||
"resend": "Znovu odeslat přehled",
|
||||
"resend-all-confirm": "Jste si jist/a, že chcete ručně spustit odeslání přehledu",
|
||||
"resent-single": "Manuální znovu poslání přehledu bylo dokončeno",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Odstranit uživatele",
|
||||
"purge": "Odstranit uživatele a obsah",
|
||||
"download-csv": "Stáhnout jako CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Pozvat",
|
||||
"new": "Nový uživatel",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Časový otisk",
|
||||
"timestamp.cut-off": "Datum ukončení (ve dnech)",
|
||||
"timestamp.cut-off-help": "Datum a čas bude zobrazen relativně (tj. „před 3 hodinami” / „před 5 dny”), a dle toho lokalizován do různých\n\t\t\t\t\tjazyků. Za určitých okolností, může tento text být přepnut na lokalizované datum\n\t\t\t\t\t(tj. 5 Led 2017 15:30)<br /><em>(výchozí: <code>30</code>,nebo měsíc). Nastavte na 0, pro zobrazení datumů, zanecháte-li prázdné, bude vždy zobrazen relativní čas.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Ukázka příspěvku",
|
||||
"teaser.last-post": "Poslední – zobrazení posledního příspěvku, včetně hlavního příspěvku, nejsou-li odpovědi",
|
||||
"teaser.last-reply": "Poslední – zobrazení poslední odpovědi, nebo nejsou-li žádné odpovědi textu „Bez odpovědi”",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"email.verify-your-email.subject": "Ověřte prosím vaší e-mailovou adresu",
|
||||
"email.verify.text1": "Vaše e-mailová adresa byla změněna.",
|
||||
"welcome.text1": "Děkujeme vám za registraci na %1!",
|
||||
"welcome.text2": "Pro úplnou aktivaci vašeho účtu potřebujeme ověřit vaši e-mailovou adresu.",
|
||||
"welcome.text2": "Pro úplnou aktivaci vašeho účtu potřebujeme ověřit vaši e-mailovou adresu.",
|
||||
"welcome.text3": "Administrátor právě potvrdil vaší registraci. Nyní se můžete přihlásit jménem a heslem.",
|
||||
"welcome.cta": "Pro potvrzení vaší e-mailové adresy, klikněte zde",
|
||||
"invitation.text1": "%1 vás pozval, abyste se připojil k %2",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Neplatná hodnota stránkování, musí být alespoň %1 a nejvýše %2",
|
||||
"username-taken": "Uživatelské jméno je již použito",
|
||||
"email-taken": "Tento e-mail je již použit",
|
||||
"email-not-confirmed": "Vaše e-mailová adresa zatím nebyla potvrzena. Klepněte zde pro její potvrzení.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "Nebude schopen konverzovat, dokud nebude váš e-mail potvrzen. Pro jeho potvrzení klikněte zde.",
|
||||
"email-not-confirmed-email-sent": "Vaše e-mailová schránka nebyla ještě potvrzena. Ověřte prosím vaši příchozí poštu.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "Toto fórum vyžaduje ověření e-mailové adresy. Pro zadání e-mailu, klikněte zde.",
|
||||
"email-confirm-failed": "Nemohli jsme ověřit vaši e-mailovou adresu, zkuste to později.",
|
||||
"confirm-email-already-sent": "Potvrzovací e-mail byl již odeslán. Vyčkejte %1 minut/y, chcete-li odeslat další.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Delete User(s)",
|
||||
"purge": "Delete User(s) and Content",
|
||||
"download-csv": "Download CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invite",
|
||||
"new": "New User",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Ugyldig side værdi, skal mindst være %1 og maks. %2",
|
||||
"username-taken": "Brugernavn optaget",
|
||||
"email-taken": "Emailadresse allerede i brug",
|
||||
"email-not-confirmed": "Din email adresse er ikke blevet bekræftet endnu, klik venligst her for at bekræfte den.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "Du kan ikke chatte før din email er bekræftet, klik her for at bekræfte din email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "Dette forum kræver bekræftelse af din email, klik her for at indtaste en email",
|
||||
"email-confirm-failed": "Vi kunne ikke bekræfte din email, prøv igen senere.",
|
||||
"confirm-email-already-sent": "Bekræftelses email er allerede afsendt, vent venligt %1 minut(ter) for at sende endnu en.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Benutzer Löschen",
|
||||
"purge": "Benutzer mit Beiträgen löschen",
|
||||
"download-csv": "CSV herunterladen",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Einladen",
|
||||
"new": "Neuer Benutzer",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Zeitstempel",
|
||||
"timestamp.cut-off": "Tageslimit für Relative Zeitangaben (in Tagen)",
|
||||
"timestamp.cut-off-help": "Tage & Zeiten werden relativ angezeigt (z.B. \"vor 3 Stunden\" / \"vor 5 Tagen\"), und in viele Sprachen übersetzt. Nach einem bestimmten Zeitpunkt, kann dieses Text durch das übersetzte Datum selbst ersetzt werden (z.B. 5 Nov 2016 15:30).<br><em>(Standard: <code>30</code>, oder ein Monat). Auf 0 setzen um immer Daten anzuzeigen, leer lassung um immer relative Zeiten anzuzeigen.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser-Beitrag",
|
||||
"teaser.last-post": "Letzter - Den neuesten Beitrag anzeigen, den originalen Beitrag innbegriffen, wenn es keine Antworten gibt",
|
||||
"teaser.last-reply": "Letzter - Den neuesten Beitrag oder einen \"Keine Antworten\" Platzhalter, wenn es keine Antworten gibt anzeigen",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Ungültige Seitennummerierung, muss mindestens %1 und maximal %2 sein",
|
||||
"username-taken": "Der Benutzername ist bereits vergeben",
|
||||
"email-taken": "Die E-Mail-Adresse ist bereits vergeben",
|
||||
"email-not-confirmed": "Deine E-Mail wurde noch nicht bestätigt, bitte klicke hier, um deine E-Mail zu bestätigen.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "Du kannst den Chat erst nutzen wenn deine E-Mail bestätigt wurde, bitte klicke hier, um deine E-Mail zu bestätigen.",
|
||||
"email-not-confirmed-email-sent": "Deine E-Mail wurde noch nicht bestätigt, bitte schaue in deinem Posteingang nach der Bestätigungsmail.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "Dieses Forum setzt eine E-Mail-Bestätigung voraus, bitte klicke hier um eine E-Mail-Adresse einzugeben.",
|
||||
"email-confirm-failed": "Wir konnten deine E-Mail-Adresse nicht bestätigen, bitte versuch es später noch einmal",
|
||||
"confirm-email-already-sent": "Die Bestätigungsmail wurde verschickt. Bitte warte %1 Minute(n), um eine weitere zu verschicken.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Delete User(s)",
|
||||
"purge": "Delete User(s) and Content",
|
||||
"download-csv": "Download CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invite",
|
||||
"new": "New User",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||
"username-taken": "Το όνομα χρήστη είναι πιασμένο",
|
||||
"email-taken": "Το email είναι πιασμένο",
|
||||
"email-not-confirmed": "Your email has not been confirmed yet, please click here to confirm your email.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Delete User(s)",
|
||||
"purge": "Delete User(s) and Content",
|
||||
"download-csv": "Download CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invite",
|
||||
"new": "New User",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -31,9 +31,9 @@
|
||||
|
||||
"username-taken": "Username taken",
|
||||
"email-taken": "Email taken",
|
||||
"email-not-confirmed": "Your email has not been confirmed yet, please click here to confirm your email.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Delete User(s)",
|
||||
"purge": "Delete User(s) and Content",
|
||||
"download-csv": "Download CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invite",
|
||||
"new": "New User",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\\t\\t\\t\\t\\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\\t\\t\\t\\t\\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||
"username-taken": "Username taken",
|
||||
"email-taken": "Email taken",
|
||||
"email-not-confirmed": "Your email has not been confirmed yet, please click here to confirm your email.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Delete User(s)",
|
||||
"purge": "Delete User(s) and Content",
|
||||
"download-csv": "Download CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invite",
|
||||
"new": "New User",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||
"username-taken": "Username taken",
|
||||
"email-taken": "Email taken",
|
||||
"email-not-confirmed": "Your email has not been confirmed yet, please click here to confirm your email.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Borrar Usuario(s)",
|
||||
"purge": "Borrar Usuario(s) y Contenido",
|
||||
"download-csv": "Descargar CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invitar",
|
||||
"new": "Nuevo Usuario",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Indicación de fecha y hora",
|
||||
"timestamp.cut-off": "Fecha límite (en días)",
|
||||
"timestamp.cut-off-help": "Las fechas & horas serán mostradas de una forma relativa (e.g. \"hace 3 horas\"/\"hace 5 días\"), y localizadas en varios\n\t\t\t\t\tlenguajes. Después de cierto punto, este texto puede ser cambiado para mostrar la propia fecha localizada\n\t\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Por defecto: <code>30</code>, o un mes). Ponla a 0 para mostrar siempre las fechas exactas. Déjala en blanco para siempre mostrar las fechas relativas.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Entrada de muestra",
|
||||
"teaser.last-post": "Último – Muestra la última entrada, incluyendo la entrada original, si no hay respuestas.",
|
||||
"teaser.last-reply": "Última – Muestra la última respuesta, o un texto \"No hay respuestas\" si no hay respuestas.",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Número de página inválido, debe estar entre %1 y %2",
|
||||
"username-taken": "Nombre de usuario ocupado",
|
||||
"email-taken": "Correo electrónico ocupado",
|
||||
"email-not-confirmed": "Su cuenta de correo electrónico no ha sido confirmada aún, por favor haga click aquí para confirmarla.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "No puedes usar el chat hasta que confirmes tu dirección de correo electrónico, por favor haz click aquí para confirmar tu correo.",
|
||||
"email-not-confirmed-email-sent": "Tu correo electrónico está sin confirmar, por favor busca el correo de confirmación en tu bandeja de entrada.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "Este foro requiere confirmación de su email, por favor pulse aquí para introducir un email",
|
||||
"email-confirm-failed": "No se ha podido confirmar su email, por favor inténtelo de nuevo más tarde.",
|
||||
"confirm-email-already-sent": "El email de confirmación ya ha sido enviado, por favor espera %1 minuto(s) para enviar otro.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Kustuta Kasutaja(d)",
|
||||
"purge": "Kustuta Kasutaja(d) ja Sisu",
|
||||
"download-csv": "Lae alla CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Kutsu",
|
||||
"new": "Uus kasutaja",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Väär lehekülje numeratsioon, peab olema vähemalt %1 ja kõige rohkem %2",
|
||||
"username-taken": "Kasutajanimi on juba võetud",
|
||||
"email-taken": "Email on võetud",
|
||||
"email-not-confirmed": "Su emaili aadress ei ole kinnitatud, vajuta siia et kinnitada.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "Sõnumeid ei ole võimalik enne saata kui sinu email on kinnitatud. Kinnitamiseks vajuta siia.",
|
||||
"email-not-confirmed-email-sent": "Su email ei ole veel kinnitatud, palun kontrolli oma e-posti ning kinnita email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "See foorum nõuab emaili kinnitust, palun vajuta siia, et sisestada email",
|
||||
"email-confirm-failed": "Meil ei õnnestunud sinu emaili kinnitada, proovi hiljem uuesti.",
|
||||
"confirm-email-already-sent": "Kinnituskiri on juba saadetud, palun oota %1 minut(it) uue kirja saatmiseks.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Delete User(s)",
|
||||
"purge": "Delete User(s) and Content",
|
||||
"download-csv": "Download CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invite",
|
||||
"new": "New User",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "ارزش گذاری صفحه نامعتبر است، کمترین مقدار <strong>%1</strong> و بیشترین مقدار <strong>%2</strong> باید باشد",
|
||||
"username-taken": "این نام کاربری گرفته شده است.",
|
||||
"email-taken": "این ایمیل گرفته شده است.",
|
||||
"email-not-confirmed": "ایمیل شما تاکنون تایید نشده است، برای تایید ایمیل خود را اینجا را کلیک کنید.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "شما تا قبل از تایید ایمیل قادر به چت نیستید، لطفا برای تایید ایمیل خود اینجا کلیک کنید",
|
||||
"email-not-confirmed-email-sent": "ایمیل شما هنوز تایید نشده است، لطفا صندوق پیام های خود را برای تایید ایمیل بررسی کنید.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "ایمیل شما تایید نشده است ، لطفا برای وارد کردن ایمیل اینجا کلیک کنید",
|
||||
"email-confirm-failed": "سیستم موفق به تایید ایمیل شما نشد، لطفا بعدا دوباره سعی کنید",
|
||||
"confirm-email-already-sent": "ایمیل فعالسازی قبلا فرستاده شده، لطفا <strong>%1</strong> دقیقه صبر کنید تا ایمیل دیگری فرستاده شود.",
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"banned": "اخراج شده",
|
||||
"offline": "آفلاین",
|
||||
"deleted": "Deleted",
|
||||
"deleted": "حذف شده",
|
||||
"username": "نام کاربری",
|
||||
"joindate": "زمان عضویت",
|
||||
"joindate": "تاریخ عضویت",
|
||||
"postcount": "تعداد پستها",
|
||||
"email": "رایانامه",
|
||||
"confirm_email": "تأیید ایمیل",
|
||||
@@ -25,11 +25,11 @@
|
||||
"profile_views": "بازدیدهای نمایه",
|
||||
"reputation": "اعتبار",
|
||||
"bookmarks": "نشانکها",
|
||||
"watched_categories": "Watched categories",
|
||||
"change_all": "Change All",
|
||||
"watched_categories": "دسته بندی های پیگیری شده",
|
||||
"change_all": "تغییر همه",
|
||||
"watched": "پیگیری شده",
|
||||
"ignored": "نادیده گرفته شده",
|
||||
"default-category-watch-state": "Default category watch state",
|
||||
"default-category-watch-state": "وضعیت مشاهده دسته بندی پیشفرض ",
|
||||
"followers": "دنبالکنندهها",
|
||||
"following": "دنبالشوندهها",
|
||||
"blocks": "کاربران مسدود شده",
|
||||
@@ -116,7 +116,7 @@
|
||||
"upvote-notif-freq.everyTen": "هر ده امتیاز مثبت",
|
||||
"upvote-notif-freq.threshold": "On 1, 5, 10, 25, 50, 100, 150, 200...",
|
||||
"upvote-notif-freq.logarithmic": "هر 10، 10، 1000 ...",
|
||||
"upvote-notif-freq.disabled": "Disabled",
|
||||
"upvote-notif-freq.disabled": "غیر فعال شده",
|
||||
"browsing": "تنظیمات مرور",
|
||||
"open_links_in_new_tab": "پیوندهای به بیرون را در برگ جدید باز کن",
|
||||
"enable_topic_searching": "فعال کردن جستجوی داخل-موضوع",
|
||||
@@ -154,7 +154,7 @@
|
||||
"info.moderation-note.add": "افزودن یادداشت",
|
||||
"sessions.description": "This page allows you to view any active sessions on this forum and revoke them if necessary. You can revoke your own session by logging out of your account.",
|
||||
"consent.title": "Your Rights & Consent",
|
||||
"consent.lead": "This community forum collects and processes your personal information.",
|
||||
"consent.lead": "این انجمن اطلاعات شخصی شما را جمعآوری و پردازش میکند",
|
||||
"consent.intro": "We use this information strictly to personalise your experience in this community, as well as to associate the posts you make to your user account. During the registration step you were asked to provide a username and email address, you can also optionally provide additional information to complete your user profile on this website.<br /><br />We retain this information for the life of your user account, and you are able to withdraw consent at any time by deleting your account. At any time you may request a copy of your contribution to this website, via your Rights & Consent page.<br /><br />If you have any questions or concerns, we encourage you to reach out to this forum's administrative team.",
|
||||
"consent.email_intro": "Occasionally, we may send emails to your registered email address in order to provide updates and/or to notify you of new activity that is pertinent to you. You can customise the frequency of the community digest (including disabling it outright), as well as select which types of notifications to receive via email, via your user settings page.",
|
||||
"consent.digest_frequency": "Unless explicitly changed in your user settings, this community delivers email digests every %1.",
|
||||
@@ -170,7 +170,7 @@
|
||||
"consent.right_to_erasure_description": "At any time, you are able to revoke your consent to data collection and/or processing by deleting your account. Your individual profile can be deleted, although your posted content will remain. If you wish to delete both your account <strong>and</strong> your content, please contact the administrative team for this website.",
|
||||
"consent.right_to_data_portability": "You have the Right to Data Portability",
|
||||
"consent.right_to_data_portability_description": "You may request from us a machine-readable export of any collected data about you and your account. You can do so by clicking the appropriate button below.",
|
||||
"consent.export_profile": "Export Profile (.csv)",
|
||||
"consent.export_profile": "صادر کردن مشخصات کاربری (.csv)",
|
||||
"consent.export_uploads": "Export Uploaded Content (.zip)",
|
||||
"consent.export_posts": "Export Posts (.csv)"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"post-sharing": "Post Sharing",
|
||||
"post-sharing": "Viestin jakaminen",
|
||||
"info-plugins-additional": "Plugins can add additional networks for sharing posts.",
|
||||
"save-success": "Successfully saved Post Sharing Networks!"
|
||||
}
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Delete User(s)",
|
||||
"purge": "Delete User(s) and Content",
|
||||
"download-csv": "Download CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invite",
|
||||
"new": "New User",
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"email-settings": "Email Settings",
|
||||
"address": "Email Address",
|
||||
"email-settings": "Sähköpostin asetukset",
|
||||
"address": "Sähköpostiosoitteet",
|
||||
"address-help": "The following email address refers to the email that the recipient will see in the \"From\" and \"Reply To\" fields.",
|
||||
"from": "From Name",
|
||||
"from-help": "The from name to display in the email.",
|
||||
@@ -33,8 +33,8 @@
|
||||
"testing.select": "Select Email Template",
|
||||
"testing.send": "Send Test Email",
|
||||
"testing.send-help": "The test email will be sent to the currently logged in user's email address.",
|
||||
"subscriptions": "Email Digests",
|
||||
"subscriptions.disable": "Disable email digests",
|
||||
"subscriptions": "Sähköposti koosteet",
|
||||
"subscriptions.disable": "Poista sähköpostin koosteet käytöstä",
|
||||
"subscriptions.hour": "Digest Hour",
|
||||
"subscriptions.hour-help": "Please enter a number representing the hour to send scheduled email digests (e.g. <code>0</code> for midnight, <code>17</code> for 5:00pm). Keep in mind that this is the hour according to the server itself, and may not exactly match your system clock.<br /> The approximate server time is: <span id=\"serverTime\"></span><br /> The next daily digest is scheduled to be sent <span id=\"nextDigestTime\"></span>"
|
||||
}
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
{
|
||||
"category": "Kategoria",
|
||||
"subcategories": "Subcategories",
|
||||
"subcategories": "Alikategoria",
|
||||
"new_topic_button": "Uusi aihe",
|
||||
"guest-login-post": "Kirjaudu sisään voidaksesi kirjoittaa viesti",
|
||||
"no_topics": "<strong>Tässä kategoriassa ei ole yhtään aihetta.</strong><br />Miksi et aloittaisi uutta?",
|
||||
"browsing": "selaamassa",
|
||||
"no_replies": "Kukaan ei ole vastannut",
|
||||
"no_new_posts": "No new posts.",
|
||||
"watch": "Watch",
|
||||
"no_new_posts": "Ei uusia viestejä",
|
||||
"watch": "Seuraa",
|
||||
"ignore": "Sivuuta",
|
||||
"watching": "Watching",
|
||||
"not-watching": "Not Watching",
|
||||
"ignoring": "Ignoring",
|
||||
"watching.description": "Show topics in unread and recent",
|
||||
"not-watching.description": "Do not show topics in unread, show in recent",
|
||||
"ignoring.description": "Do not show topics in unread and recent",
|
||||
"watching.message": "You are now watching updates from this category and all subcategories",
|
||||
"notwatching.message": "You are not watching updates from this category and all subcategories",
|
||||
"ignoring.message": "You are now ignoring updates from this category and all subcategories",
|
||||
"watched-categories": "Watched categories"
|
||||
"watching": "Seurataan",
|
||||
"not-watching": "Älä seuraa",
|
||||
"ignoring": "Ohita",
|
||||
"watching.description": "Näytä aiheet lukemattomissa ja viimeisimmissä",
|
||||
"not-watching.description": "Älä näytä aiheita lukemattomissa, näytä viimeisimmissä",
|
||||
"ignoring.description": "Älä näytä aiheita lukemattomissa ja viimeisimmissä",
|
||||
"watching.message": "Seuraat nyt päivityksiä tästä kategoriasta ja kaikista alikategorioista",
|
||||
"notwatching.message": "Et seuraa päivityksiää tästä kategoriasta tai alikategorioista",
|
||||
"ignoring.message": "Ohitat kaikki päivitykset tästä kategoriasta ja kaikista alikategorioista",
|
||||
"watched-categories": "Seuratut kategoriat"
|
||||
}
|
||||
@@ -1,19 +1,19 @@
|
||||
{
|
||||
"test-email.subject": "Test Email",
|
||||
"password-reset-requested": "Password Reset Requested!",
|
||||
"test-email.subject": "Testisähköposti",
|
||||
"password-reset-requested": "Salasanan nollaus pyydetty!",
|
||||
"welcome-to": "%1 - Tervetuloa",
|
||||
"invite": "Kutsu henkilöltä %1",
|
||||
"greeting_no_name": "Hei",
|
||||
"greeting_with_name": "Hei %1",
|
||||
"email.verify-your-email.subject": "Please verify your email",
|
||||
"email.verify.text1": "Your email address has changed!",
|
||||
"email.verify-your-email.subject": "Tarkista sähköpostisi",
|
||||
"email.verify.text1": "Sähköpostiosoitteesi on muutettu!",
|
||||
"welcome.text1": "Kiitos rekisteröitymisestäsi sivustolle %1!",
|
||||
"welcome.text2": "Meidän täytyy varmistaa, että omistat sen sähköpostiosoitteen, jolla rekisteröidyit, ennen kuin tilisi voidaan aktivoida kokonaan.",
|
||||
"welcome.text3": "Ylläpitäjä hyväksyi rekisteröintipyyntösi. Voit nyt kirjautua käyttäjänimelläsi ja salasanallasi.",
|
||||
"welcome.cta": "Napsauta tästä vahvistaaksesi sähköpostiosoitteesi",
|
||||
"invitation.text1": "%1 pyysi sinua liittymään %2",
|
||||
"invitation.text2": "Your invitation will expire in %1 days.",
|
||||
"invitation.cta": "Click here to create your account.",
|
||||
"invitation.text2": "Kutsusi vanhenee %1 päivässä.",
|
||||
"invitation.cta": "Luo tili täältä",
|
||||
"reset.text1": "Saimme pyynnön vaihtaa salasanasi, todennäkösesti koska olit unohtanut sen. Jos näin ei ollut käynyt, voit jättää tämän viestin huomiotta.",
|
||||
"reset.text2": "Jatkaaksesi salasanan nollausta, napsauta seuraavaa linkkiä:",
|
||||
"reset.cta": "Napsauta tästä vaihtaaksesi salasanasi",
|
||||
@@ -22,31 +22,31 @@
|
||||
"reset.notify.text2": "Jos et tunnista tätä toimintoa, ilmoita välittömästi ylläpitäjälle.",
|
||||
"digest.latest_topics": "Viimeisimmät viestiketjut henkilöltä %1",
|
||||
"digest.cta": "Click here to visit %1",
|
||||
"digest.unsub.info": "This digest was sent to you due to your subscription settings.",
|
||||
"digest.unsub.info": "Tämä kooste lähetettiin sinulle tilin tilausasetusten perusteella",
|
||||
"digest.day": "päivä",
|
||||
"digest.week": "viikko",
|
||||
"digest.month": "kuukausi",
|
||||
"digest.subject": "Digest for %1",
|
||||
"digest.title.day": "Your Daily Digest",
|
||||
"digest.title.week": "Your Weekly Digest",
|
||||
"digest.title.month": "Your Monthly Digest",
|
||||
"digest.subject": "Koosteesi %1",
|
||||
"digest.title.day": "Päivittäinen koosteesi",
|
||||
"digest.title.week": "Viikottainen koosteesi",
|
||||
"digest.title.month": "Kuukausittainen koosteesi",
|
||||
"notif.chat.subject": "Uusi chatviesti henkilöltä %1",
|
||||
"notif.chat.cta": "Click here to continue the conversation",
|
||||
"notif.chat.unsub.info": "This chat notification was sent to you due to your subscription settings.",
|
||||
"notif.post.unsub.info": "This post notification was sent to you due to your subscription settings.",
|
||||
"notif.chat.cta": "Klikkaa tästä jatkaaksesi keskustelua",
|
||||
"notif.chat.unsub.info": "Tämä keskustelun ilmoitus on lähetettty viestiasetuksiesi johdosta",
|
||||
"notif.post.unsub.info": "Tämä ilmoitus viestistä lähetettiin sinulle viestiasetuksistasi johtuen",
|
||||
"notif.post.unsub.one-click": "Alternatively, unsubscribe from future emails like this, by clicking",
|
||||
"notif.cta": "To the forum",
|
||||
"notif.cta-new-reply": "View Post",
|
||||
"notif.cta-new-chat": "View Chat",
|
||||
"notif.test.short": "Testing Notifications",
|
||||
"notif.cta": "Foorumille",
|
||||
"notif.cta-new-reply": "Katso viesti",
|
||||
"notif.cta-new-chat": "Katso keskustelu",
|
||||
"notif.test.short": "Testi ilmoitus",
|
||||
"notif.test.long": "This is a test of the notifications email. Send help!",
|
||||
"test.text1": "This is a test email to verify that the emailer is set up correctly for your NodeBB.",
|
||||
"unsub.cta": "Click here to alter those settings",
|
||||
"unsubscribe": "unsubscribe",
|
||||
"unsub.success": "You will no longer receive emails from the <strong>%1</strong> mailing list",
|
||||
"test.text1": "Tämä on testi sähköposti, jolla voit testata, että sähköpostin asetukset ovat oikein NodeBB:ssä",
|
||||
"unsub.cta": "Muuta asetuksia täältä",
|
||||
"unsubscribe": "Lopeta tilaus",
|
||||
"unsub.success": "Sinut on poistettu %1 postituslistalta",
|
||||
"banned.subject": "You have been banned from %1",
|
||||
"banned.text1": "The user %1 has been banned from %2.",
|
||||
"banned.text2": "This ban will last until %1.",
|
||||
"banned.text3": "This is the reason why you have been banned:",
|
||||
"closing": "Thanks!"
|
||||
"closing": "Kiitos!"
|
||||
}
|
||||
@@ -3,32 +3,32 @@
|
||||
"invalid-json": "Invalid JSON",
|
||||
"not-logged-in": "Et taida olla kirjautuneena sisään.",
|
||||
"account-locked": "Käyttäjätilisi on lukittu väliaikaisesti",
|
||||
"search-requires-login": "Searching requires an account - please login or register.",
|
||||
"goback": "Press back to return to the previous page",
|
||||
"search-requires-login": "Haku vaatii tunnukset. Kirjaudu sisään tai luo tunnus.",
|
||||
"goback": "Paina \"Takaisin\"-nappia palataksesi takaisin edelliselle sivulle.",
|
||||
"invalid-cid": "Virheellinen kategorian ID",
|
||||
"invalid-tid": "Virheellinen aiheen ID",
|
||||
"invalid-pid": "Virheellinen viestin ID",
|
||||
"invalid-uid": "Virheellinen käyttäjän ID",
|
||||
"invalid-username": "Virheellinen käyttäjänimi",
|
||||
"invalid-email": "Virheellinen sähköpostiosoite",
|
||||
"invalid-fullname": "Invalid Fullname",
|
||||
"invalid-location": "Invalid Location",
|
||||
"invalid-birthday": "Invalid Birthday",
|
||||
"invalid-title": "Invalid title",
|
||||
"invalid-fullname": "Kokonimi on virheellinen",
|
||||
"invalid-location": "Virheellinen sijainti",
|
||||
"invalid-birthday": "Virheellinen syntymäpäivä",
|
||||
"invalid-title": "Virheellinen otsikko",
|
||||
"invalid-user-data": "Virheellinen käyttäjätieto",
|
||||
"invalid-password": "Virheellinen salasana",
|
||||
"invalid-login-credentials": "Invalid login credentials",
|
||||
"invalid-login-credentials": "Virheelliset kirjautumistiedot",
|
||||
"invalid-username-or-password": "Ole hyvä ja anna sekä käyttäjänimi että salasana",
|
||||
"invalid-search-term": "Virheellinen hakutermi",
|
||||
"invalid-url": "Invalid URL",
|
||||
"invalid-url": "Virheellinen URL-osoite",
|
||||
"local-login-disabled": "Local login system has been disabled for non-privileged accounts.",
|
||||
"csrf-invalid": "We were unable to log you in, likely due to an expired session. Please try again",
|
||||
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||
"username-taken": "Käyttäjänimi varattu",
|
||||
"email-taken": "Sähköpostiosoite varattu",
|
||||
"email-not-confirmed": "Sähköpostiasi ei ole vielä vahvistettu, ole hyvä ja napsauta tätä vahvistaaksesi sen.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "Et voi keskustella ennen kuin sähköpostiosoitteesi on vahvistettu, ole hyvä ja paina tästä vahvistaaksesi sen.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
@@ -36,8 +36,8 @@
|
||||
"digest-not-enabled": "This user does not have digests enabled, or the system default is not configured to send digests",
|
||||
"username-too-short": "Käyttäjänimi on liian lyhyt",
|
||||
"username-too-long": "Käyttäjänimi on liian pitkä",
|
||||
"password-too-long": "Password too long",
|
||||
"reset-rate-limited": "Too many password reset requests (rate limited)",
|
||||
"password-too-long": "Salasana on liian pitkä",
|
||||
"reset-rate-limited": "Liian monta salasanan nollaus pyyntöä (määrärajoitus)",
|
||||
"user-banned": "Käyttäjä on estetty",
|
||||
"user-banned-reason": "Sorry, this account has been banned (Reason: %1)",
|
||||
"user-banned-reason-until": "Sorry, this account has been banned until %1 (Reason: %2)",
|
||||
@@ -105,10 +105,10 @@
|
||||
"group-already-requested": "Your membership request has already been submitted",
|
||||
"group-join-disabled": "You are not able to join this group at this time",
|
||||
"group-leave-disabled": "You are not able to leave this group at this time",
|
||||
"post-already-deleted": "This post has already been deleted",
|
||||
"post-already-restored": "This post has already been restored",
|
||||
"topic-already-deleted": "This topic has already been deleted",
|
||||
"topic-already-restored": "This topic has already been restored",
|
||||
"post-already-deleted": "Tämä viesti on jo poistettu",
|
||||
"post-already-restored": "Tämä viesti on jo palautettu",
|
||||
"topic-already-deleted": "Tämä aihe on jo poistettu",
|
||||
"topic-already-restored": "Tämä aihe on jo palautettu",
|
||||
"cant-purge-main-post": "You can't purge the main post, please delete the topic instead",
|
||||
"topic-thumbnails-are-disabled": "Aiheiden kuvakkeet eivät ole käytössä",
|
||||
"invalid-file": "Virheellinen tiedosto",
|
||||
@@ -141,10 +141,10 @@
|
||||
"already-flagged": "You have already flagged this post",
|
||||
"self-vote": "You cannot vote on your own post",
|
||||
"reload-failed": "NodeBB encountered a problem while reloading: \"%1\". NodeBB will continue to serve the existing client-side assets, although you should undo what you did just prior to reloading.",
|
||||
"registration-error": "Registration Error",
|
||||
"registration-error": "Virhe rekisteröinnissä",
|
||||
"parse-error": "Something went wrong while parsing server response",
|
||||
"wrong-login-type-email": "Please use your email to login",
|
||||
"wrong-login-type-username": "Please use your username to login",
|
||||
"wrong-login-type-email": "Käytä sähköpostiosoitettasi kirjautuaksesi sisään",
|
||||
"wrong-login-type-username": "Käytä tunnusta kirjautuaksesi sisään",
|
||||
"sso-registration-disabled": "Registration has been disabled for %1 accounts, please register with an email address first",
|
||||
"sso-multiple-association": "You cannot associate multiple accounts from this service to your NodeBB account. Please dissociate your existing account and try again.",
|
||||
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
||||
@@ -155,7 +155,7 @@
|
||||
"invalid-home-page-route": "Invalid home page route",
|
||||
"invalid-session": "Session Mismatch",
|
||||
"invalid-session-text": "It looks like your login session is no longer active, or no longer matches with the server. Please refresh this page.",
|
||||
"no-topics-selected": "No topics selected!",
|
||||
"no-topics-selected": "Ei aiheita valittuna",
|
||||
"cant-move-to-same-topic": "Can't move post to same topic!",
|
||||
"cannot-block-self": "You cannot block yourself!",
|
||||
"cannot-block-privileged": "You cannot block administrators or global moderators",
|
||||
|
||||
@@ -7,10 +7,10 @@
|
||||
"403.login": "Sinun pitäisi kai <a href='%1/login'>kirjautua sisään</a>?",
|
||||
"404.title": "Ei löydy",
|
||||
"404.message": "Olet päätynyt sivulle, jota ei ole olemassa. Palaa <a href='%1/'>etusivulle</a>.",
|
||||
"500.title": "Internal Error.",
|
||||
"500.title": "Palvelinvirhe",
|
||||
"500.message": "Oho! Jotain meni pieleen!",
|
||||
"400.title": "Bad Request.",
|
||||
"400.message": "It looks like this link is malformed, please double-check and try again. Otherwise, return to the <a href='%1/'>home page</a>.",
|
||||
"400.message": "Näyttää siltä, että linkki on virheellinen. Tarkista vielä linkin muoton ja yritä uudestaan. Muusa tapauksessa palaa takaisin <a href='%1/'>kotisivulle</a>",
|
||||
"register": "Rekisteröidy",
|
||||
"login": "Kirjaudu",
|
||||
"please_log_in": "Kirjaudu, ole hyvä",
|
||||
@@ -19,13 +19,13 @@
|
||||
"welcome_back": "Tervetuloa takaisin",
|
||||
"you_have_successfully_logged_in": "Olet onnistuneesti kirjautunut sisään",
|
||||
"save_changes": "Tallenna muutokset",
|
||||
"save": "Save",
|
||||
"save": "Tallenna",
|
||||
"close": "Sulje",
|
||||
"pagination": "Sivutus",
|
||||
"pagination.out_of": "%1/%2",
|
||||
"pagination.enter_index": "Syötä indeksi",
|
||||
"header.admin": "Ylläpitäjä",
|
||||
"header.categories": "Categories",
|
||||
"header.categories": "Kategoriat",
|
||||
"header.recent": "Viimeisimmät",
|
||||
"header.unread": "Lukemattomat",
|
||||
"header.tags": "Tagit",
|
||||
@@ -51,19 +51,19 @@
|
||||
"users": "Käyttäjät",
|
||||
"topics": "Aiheet",
|
||||
"posts": "Viestit",
|
||||
"best": "Best",
|
||||
"votes": "Votes",
|
||||
"upvoters": "Upvoters",
|
||||
"upvoted": "Upvoted",
|
||||
"best": "Paras",
|
||||
"votes": "Ääniä",
|
||||
"upvoters": "Tykkääjät",
|
||||
"upvoted": "Tykätyt",
|
||||
"downvoters": "Downvoters",
|
||||
"downvoted": "Downvoted",
|
||||
"views": "Katsottu",
|
||||
"reputation": "Maine",
|
||||
"lastpost": "Last post",
|
||||
"firstpost": "First post",
|
||||
"lastpost": "Viimeisin viesti",
|
||||
"firstpost": "Ensimmäinen viesti",
|
||||
"read_more": "lue lisää",
|
||||
"more": "More",
|
||||
"posted_ago_by_guest": "posted %1 by Guest",
|
||||
"more": "Lisää",
|
||||
"posted_ago_by_guest": "Vierailija lähettänyt %1",
|
||||
"posted_ago_by": "posted %1 by %2",
|
||||
"posted_ago": "lähetetty %1",
|
||||
"posted_in": "posted in %1",
|
||||
@@ -72,44 +72,44 @@
|
||||
"posted_in_ago_by": "posted in %1 %2 by %3",
|
||||
"user_posted_ago": "%1 lähetti %2",
|
||||
"guest_posted_ago": "Vieras kirjoitti %1",
|
||||
"last_edited_by": "last edited by %1",
|
||||
"last_edited_by": "Viimeksi muokannut %1",
|
||||
"norecentposts": "Ei viimeaikaisia viestejä",
|
||||
"norecenttopics": "Ei viimeaikaisia aiheita",
|
||||
"recentposts": "Viimeisimmät viestit",
|
||||
"recentips": "Äskettäin kirjautuneet IP-osoitteet",
|
||||
"moderator_tools": "Moderator Tools",
|
||||
"moderator_tools": "Ylläpidon työkalut",
|
||||
"online": "Online",
|
||||
"away": "Poissa",
|
||||
"dnd": "Do not disturb",
|
||||
"dnd": "Älä häiritse",
|
||||
"invisible": "Näkymätön",
|
||||
"offline": "Offline",
|
||||
"email": "Sähköposti",
|
||||
"language": "Kieli",
|
||||
"guest": "Vieras",
|
||||
"guests": "Vieraat",
|
||||
"former_user": "A Former User",
|
||||
"former_user": "Entinen käyttäjä",
|
||||
"updated.title": "Foorumi päivitetty",
|
||||
"updated.message": "Tämä foorumi on juuri päivitetty uusimpaan versioon. Paina tästä päivittääksesi sivun.",
|
||||
"privacy": "Yksityisyys",
|
||||
"follow": "Seuraa",
|
||||
"unfollow": "Älä seuraa",
|
||||
"delete_all": "Poista kaikki",
|
||||
"map": "Map",
|
||||
"map": "Kartta",
|
||||
"sessions": "Login Sessions",
|
||||
"ip_address": "IP Address",
|
||||
"enter_page_number": "Enter page number",
|
||||
"upload_file": "Upload file",
|
||||
"upload": "Upload",
|
||||
"uploads": "Uploads",
|
||||
"allowed-file-types": "Allowed file types are %1",
|
||||
"unsaved-changes": "You have unsaved changes. Are you sure you wish to navigate away?",
|
||||
"reconnecting-message": "Looks like your connection to %1 was lost, please wait while we try to reconnect.",
|
||||
"play": "Play",
|
||||
"ip_address": "IP osoite",
|
||||
"enter_page_number": "Syötä sivunumero",
|
||||
"upload_file": "Lähetä tiedosto",
|
||||
"upload": "Lähetä",
|
||||
"uploads": "Lähetykset",
|
||||
"allowed-file-types": "Sallitut tiedostotyypit ovat %1",
|
||||
"unsaved-changes": "Sinulla on tallentamatotmia muutoksia. Oletko varma, että haluat siirtyä pois näkymästä?",
|
||||
"reconnecting-message": "Näyttää siltä, että yhteys %1 palveluun katosi. Odotas hetki kun yritän yhdistää.",
|
||||
"play": "Toista",
|
||||
"cookies.message": "This website uses cookies to ensure you get the best experience on our website.",
|
||||
"cookies.accept": "Got it!",
|
||||
"cookies.learn_more": "Learn More",
|
||||
"edited": "Edited",
|
||||
"edited": "Muokattu",
|
||||
"disabled": "Disabled",
|
||||
"select": "Select",
|
||||
"select": "Valitse",
|
||||
"user-search-prompt": "Type something here to find users..."
|
||||
}
|
||||
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"groups": "Ryhmät",
|
||||
"view_group": "View Group",
|
||||
"view_group": "Tarkaste ryhmää",
|
||||
"owner": "Ryhmän omistaja",
|
||||
"new_group": "Luo uusi ryhmä",
|
||||
"no_groups_found": "Ei ryhmiä",
|
||||
"pending.accept": "Accept",
|
||||
"pending.reject": "Reject",
|
||||
"pending.accept_all": "Accept All",
|
||||
"pending.reject_all": "Reject All",
|
||||
"pending.accept": "Hyväksy",
|
||||
"pending.reject": "Hylkää",
|
||||
"pending.accept_all": "Hyväksy kaikki",
|
||||
"pending.reject_all": "Hylkää kaikki",
|
||||
"pending.none": "There are no pending members at this time",
|
||||
"invited.none": "There are no invited members at this time",
|
||||
"invited.uninvite": "Rescind Invitation",
|
||||
@@ -19,45 +19,45 @@
|
||||
"cover-saving": "Tallennetaan",
|
||||
"details.title": "Ryhmän tiedot",
|
||||
"details.members": "Jäsenluettelo",
|
||||
"details.pending": "Pending Members",
|
||||
"details.invited": "Invited Members",
|
||||
"details.has_no_posts": "This group's members have not made any posts.",
|
||||
"details.pending": "Odottavat jäsenet",
|
||||
"details.invited": "Kutsutut jäsenet",
|
||||
"details.has_no_posts": "Tämän ryhmän jäsenet eivät ole luoneet vielä yhtään viestiä.",
|
||||
"details.latest_posts": "Uusimmat viestit",
|
||||
"details.private": "Private",
|
||||
"details.disableJoinRequests": "Disable join requests",
|
||||
"details.disableLeave": "Disallow users from leaving the group",
|
||||
"details.private": "Yksityinen",
|
||||
"details.disableJoinRequests": "Poista liittymispyynnöt",
|
||||
"details.disableLeave": "Estä käyttäjiä poistumasta ryhmästä",
|
||||
"details.grant": "Grant/Rescind Ownership",
|
||||
"details.kick": "Potkaise",
|
||||
"details.kick_confirm": "Are you sure you want to remove this member from the group?",
|
||||
"details.add-member": "Add Member",
|
||||
"details.owner_options": "Group Administration",
|
||||
"details.group_name": "Group Name",
|
||||
"details.member_count": "Member Count",
|
||||
"details.creation_date": "Creation Date",
|
||||
"details.description": "Description",
|
||||
"details.badge_preview": "Badge Preview",
|
||||
"details.change_icon": "Change Icon",
|
||||
"details.change_label_colour": "Change Label Colour",
|
||||
"details.change_text_colour": "Change Text Colour",
|
||||
"details.badge_text": "Badge Text",
|
||||
"details.userTitleEnabled": "Show Badge",
|
||||
"details.private_help": "If enabled, joining of groups requires approval from a group owner",
|
||||
"details.hidden": "Hidden",
|
||||
"details.hidden_help": "If enabled, this group will not be found in the groups listing, and users will have to be invited manually",
|
||||
"details.delete_group": "Delete Group",
|
||||
"details.private_system_help": "Private groups is disabled at system level, this option does not do anything",
|
||||
"event.updated": "Group details have been updated",
|
||||
"event.deleted": "The group \"%1\" has been deleted",
|
||||
"membership.accept-invitation": "Accept Invitation",
|
||||
"membership.accept.notification_title": "You are now a member of <strong>%1</strong>",
|
||||
"membership.invitation-pending": "Invitation Pending",
|
||||
"membership.join-group": "Join Group",
|
||||
"membership.leave-group": "Leave Group",
|
||||
"membership.leave.notification_title": "<strong>%1</strong> has left group <strong>%2</strong>",
|
||||
"membership.reject": "Reject",
|
||||
"new-group.group_name": "Group Name:",
|
||||
"details.kick_confirm": "Oletko varma, että haluat poistaa käyttäjän ryhmästä?",
|
||||
"details.add-member": "Lisää jäsen",
|
||||
"details.owner_options": "Ryhmän ylläpito",
|
||||
"details.group_name": "Ryhmän nimi",
|
||||
"details.member_count": "Jäsenmäärä",
|
||||
"details.creation_date": "Luontipäivämäärä",
|
||||
"details.description": "Kuvaus",
|
||||
"details.badge_preview": "Merkin esikatselu",
|
||||
"details.change_icon": "Vaihda kuvake",
|
||||
"details.change_label_colour": "Vaihda merkin väriä",
|
||||
"details.change_text_colour": "Vaihda tekstin väriä",
|
||||
"details.badge_text": "Merkin teksti",
|
||||
"details.userTitleEnabled": "Näytä merkki",
|
||||
"details.private_help": "Jos päällä, ryhmään liittyminen vaattii hyväksynnän ryhmän omistajalta.",
|
||||
"details.hidden": "Piilotettu",
|
||||
"details.hidden_help": "Jos päällä, niin ryhmä ei ole näkyvissä ryhmälistauksissa ja käyttäjät tulee lisätä ryhmään käsin.",
|
||||
"details.delete_group": "Poista ryhmä",
|
||||
"details.private_system_help": "Yksityiset ryhmät on poistettu käytöstä järjestelmän tasolla ja tämä valinta ei tee mitään.",
|
||||
"event.updated": "Ryhmän tiedot on jo päivitetty",
|
||||
"event.deleted": "Ryhmä \"%1\" on jo poistettu",
|
||||
"membership.accept-invitation": "Hyväksy kutsu",
|
||||
"membership.accept.notification_title": "Olet nyt <strong>%1 </strong> ryhmän jäsen",
|
||||
"membership.invitation-pending": "Odottavat kutsut",
|
||||
"membership.join-group": "Liity ryhmään",
|
||||
"membership.leave-group": "Poistu ryhmästä",
|
||||
"membership.leave.notification_title": "<strong>%1 </strong> on lähtenyt <strong>%2 </strong> ryhmästä",
|
||||
"membership.reject": "Hylkää",
|
||||
"new-group.group_name": "Ryhmän nimi",
|
||||
"upload-group-cover": "Upload group cover",
|
||||
"bulk-invite-instructions": "Enter a list of comma separated usernames to invite to this group",
|
||||
"bulk-invite": "Bulk Invite",
|
||||
"bulk-invite": "Massa kutsu",
|
||||
"remove_group_cover_confirm": "Are you sure you want to remove the cover picture?"
|
||||
}
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"username-email": "Username / Email",
|
||||
"username": "Username",
|
||||
"email": "Email",
|
||||
"username-email": "Käyttäjätunnus / Sähköposti",
|
||||
"username": "Käyttäjätunnus",
|
||||
"email": "Sähköposti",
|
||||
"remember_me": "Muista minut?",
|
||||
"forgot_password": "Unohditko salasanasi?",
|
||||
"alternative_logins": "Vaihtoehtoiset kirjautumistavat",
|
||||
"failed_login_attempt": "Login Unsuccessful",
|
||||
"failed_login_attempt": "Kirjautuminen epäonnistui",
|
||||
"login_successful": "Olet onnistuneesti kirjautunut sisään!",
|
||||
"dont_have_account": "Ei käyttäjätunnusta?",
|
||||
"logged-out-due-to-inactivity": "You have been logged out of the Admin Control Panel due to inactivity"
|
||||
"logged-out-due-to-inactivity": "Sinut on kirjattu ulos hallintapaneelista liian pitkän toimettomuuden takia."
|
||||
}
|
||||
@@ -6,25 +6,25 @@
|
||||
"back_to_home": "Palaa takaisin %1",
|
||||
"outgoing_link": "Ulkopuolinen linkki",
|
||||
"outgoing_link_message": "Olet nyt poistumassa %1",
|
||||
"continue_to": "Continue to %1",
|
||||
"return_to": "Return to %1",
|
||||
"new_notification": "You have a new notification",
|
||||
"continue_to": "Jatka %1",
|
||||
"return_to": "Palaa %1",
|
||||
"new_notification": "Sinulle ei ole uusia ilmoituksia",
|
||||
"you_have_unread_notifications": "Sinulla on lukemattomia ilmoituksia.",
|
||||
"all": "All",
|
||||
"topics": "Topics",
|
||||
"replies": "Replies",
|
||||
"chat": "Chats",
|
||||
"follows": "Follows",
|
||||
"upvote": "Upvotes",
|
||||
"all": "Kaikki",
|
||||
"topics": "Aiheet",
|
||||
"replies": "Vastaukset",
|
||||
"chat": "Keskustelut",
|
||||
"follows": "Seuratut",
|
||||
"upvote": "Tykkäykset",
|
||||
"new-flags": "New Flags",
|
||||
"my-flags": "Flags assigned to me",
|
||||
"bans": "Bans",
|
||||
"new_message_from": "Uusi viesti käyttäjältä <strong>%1</strong>",
|
||||
"upvoted_your_post_in": "<strong>%1</strong> has upvoted your post in <strong>%2</strong>.",
|
||||
"upvoted_your_post_in_dual": "<strong>%1</strong> and <strong>%2</strong> have upvoted your post in <strong>%3</strong>.",
|
||||
"upvoted_your_post_in_multiple": "<strong>%1</strong> and %2 others have upvoted your post in <strong>%3</strong>.",
|
||||
"moved_your_post": "<strong>%1</strong> has moved your post to <strong>%2</strong>",
|
||||
"moved_your_topic": "<strong>%1</strong> has moved <strong>%2</strong>",
|
||||
"upvoted_your_post_in": "<strong>%1</strong> käyttäjä tykkäsi viestistäsi aiheessa <strong>%2 </strong>",
|
||||
"upvoted_your_post_in_dual": "<strong>%1</strong> ja <strong>%2</strong> tykkäsivät viestistäsi aiheesssa <strong>%3</strong>",
|
||||
"upvoted_your_post_in_multiple": "<strong>%1</strong> ja %2 muuta tykkäsivät viestistäsi aiheessa <strong>%3</strong>",
|
||||
"moved_your_post": "<strong>%1</strong> on siirtänyt viestisi <strong>%2</strong>",
|
||||
"moved_your_topic": "<strong>%1</strong> on siirtänyt <strong>%2</strong> alueelle",
|
||||
"user_flagged_post_in": "<strong>%1</strong> flagged a post in <strong>%2</strong>",
|
||||
"user_flagged_post_in_dual": "<strong>%1</strong> and <strong>%2</strong> flagged a post in <strong>%3</strong>",
|
||||
"user_flagged_post_in_multiple": "<strong>%1</strong> and %2 others flagged a post in <strong>%3</strong>",
|
||||
@@ -32,33 +32,33 @@
|
||||
"user_flagged_user_dual": "<strong>%1</strong> and <strong>%2</strong> flagged a user profile (%3)",
|
||||
"user_flagged_user_multiple": "<strong>%1</strong> and %2 others flagged a user profile (%3)",
|
||||
"user_posted_to": "<strong>%1</strong> on vastannut viestiin: <strong>%2</strong>",
|
||||
"user_posted_to_dual": "<strong>%1</strong> and <strong>%2</strong> have posted replies to: <strong>%3</strong>",
|
||||
"user_posted_to_multiple": "<strong>%1</strong> and %2 others have posted replies to: <strong>%3</strong>",
|
||||
"user_posted_to_dual": "<strong>%1</strong> ja <strong>%2</strong> ovat vastanneet viestiin: <strong>%3</strong>",
|
||||
"user_posted_to_multiple": "<strong>%1</strong> ja %2 muuta ovat vastanneet viestiin: <strong>%3 </strong>",
|
||||
"user_posted_topic": "<strong>%1</strong> on kirjoittanut uuden aiheen: <strong>%2</strong>",
|
||||
"user_started_following_you": "<strong>%1</strong> alkoi seurata sinua.",
|
||||
"user_started_following_you_dual": "<strong>%1</strong> and <strong>%2</strong> started following you.",
|
||||
"user_started_following_you_multiple": "<strong>%1</strong> and %2 others started following you.",
|
||||
"new_register": "<strong>%1</strong> sent a registration request.",
|
||||
"new_register_multiple": "There are <strong>%1</strong> registration requests awaiting review.",
|
||||
"user_started_following_you_dual": "<strong>%1</strong> ja <strong>%2</strong> alkoivat seurata sinua",
|
||||
"user_started_following_you_multiple": "<strong>%1</strong> ja %2 muuta alkoivat seurata sinua",
|
||||
"new_register": "<strong>%1</strong> lähetti rekisteröitymispyynnön",
|
||||
"new_register_multiple": "<strong>%1</strong> rekisteröintipyyntöä odottaa katselmointia",
|
||||
"flag_assigned_to_you": "<strong>Flag %1</strong> has been assigned to you",
|
||||
"post_awaiting_review": "Post awaiting review",
|
||||
"post_awaiting_review": "Viesti odottaa katselmointia",
|
||||
"email-confirmed": "Sähköpostiosoite vahvistettu",
|
||||
"email-confirmed-message": "Kiitos sähköpostiosoitteesi vahvistamisesta. Käyttäjätilisi on nyt täysin aktivoitu.",
|
||||
"email-confirm-error-message": "Ongelma sähköpostiosoitteen vahvistamisessa. Ehkäpä koodi oli virheellinen tai vanhentunut.",
|
||||
"email-confirm-sent": "Vahvistussähköposti lähetetty.",
|
||||
"none": "None",
|
||||
"notification_only": "Notification Only",
|
||||
"email_only": "Email Only",
|
||||
"notification_and_email": "Notification & Email",
|
||||
"notificationType_upvote": "When someone upvotes your post",
|
||||
"notificationType_new-topic": "When someone you follow posts a topic",
|
||||
"notificationType_new-reply": "When a new reply is posted in a topic you are watching",
|
||||
"notificationType_follow": "When someone starts following you",
|
||||
"notificationType_new-chat": "When you receive a chat message",
|
||||
"notificationType_group-invite": "When you receive a group invite",
|
||||
"notificationType_group-request-membership": "When someone requests to join a group you own",
|
||||
"notificationType_new-register": "When someone gets added to registration queue",
|
||||
"notificationType_post-queue": "When a new post is queued",
|
||||
"none": "Ei mitään",
|
||||
"notification_only": "Vain ilmoitukset",
|
||||
"email_only": "Vain sähköposti",
|
||||
"notification_and_email": "Ilmoitukset & Sähköposti",
|
||||
"notificationType_upvote": "Kun joku tykkää viestistäsi",
|
||||
"notificationType_new-topic": "Kun joku seuraa viestejäsi aiheessa",
|
||||
"notificationType_new-reply": "Kun uusi vastaus on lähetetty aiheeseen, jota seuraat",
|
||||
"notificationType_follow": "Kun joku alkaa seurata sinua",
|
||||
"notificationType_new-chat": "Kun saat viestin keskusteluun",
|
||||
"notificationType_group-invite": "Kun saat kutsun ryhmään",
|
||||
"notificationType_group-request-membership": "Kun joku pyytää lupaa liittyä ryhmään, jonka omistaja olet",
|
||||
"notificationType_new-register": "Kun joku lisätään rekisteröintijonoon",
|
||||
"notificationType_post-queue": "Kun uusi viesti tulee jonoon",
|
||||
"notificationType_new-post-flag": "When a post is flagged",
|
||||
"notificationType_new-user-flag": "When a user is flagged"
|
||||
}
|
||||
@@ -6,59 +6,59 @@
|
||||
"popular-month": "Suositut aiheet tässä kuussa",
|
||||
"popular-alltime": "Suositut aiheet koko ajalta",
|
||||
"recent": "Viimeisimmät aiheet",
|
||||
"top-day": "Top voted topics today",
|
||||
"top-week": "Top voted topics this week",
|
||||
"top-month": "Top voted topics this month",
|
||||
"top-alltime": "Top Voted Topics",
|
||||
"moderator-tools": "Moderator Tools",
|
||||
"top-day": "Eniten tykätyt aiheet tänään",
|
||||
"top-week": "Eniten tykätyt aiheet tällä viikolla",
|
||||
"top-month": "Eniten tykätyt aiheet tässä kuussa",
|
||||
"top-alltime": "Eniten tykätyt aiheet",
|
||||
"moderator-tools": "Ylläpidon työkalut",
|
||||
"flagged-content": "Flagged Content",
|
||||
"ip-blacklist": "IP Blacklist",
|
||||
"post-queue": "Post Queue",
|
||||
"users/online": "Paikalla olevat käyttäjät",
|
||||
"users/latest": "Viimeisimmat käyttäjät",
|
||||
"users/sort-posts": "Users with the most posts",
|
||||
"users/sort-reputation": "Users with the most reputation",
|
||||
"users/sort-posts": "Käyttäjät joilla eniten viestejä",
|
||||
"users/sort-reputation": "Käyttäjät joilla paras maine",
|
||||
"users/banned": "Banned Users",
|
||||
"users/most-flags": "Most flagged users",
|
||||
"users/search": "User Search",
|
||||
"users/search": "Käyttäjähaku",
|
||||
"notifications": "Ilmoitukset",
|
||||
"tags": "Tunnisteet",
|
||||
"tag": "Topics tagged under "%1"",
|
||||
"register": "Luo käyttäjät",
|
||||
"registration-complete": "Registration complete",
|
||||
"registration-complete": "Rekisteröinti valmis",
|
||||
"login": "Kirjaudu käyttäjällesi",
|
||||
"reset": "Reset your account password",
|
||||
"categories": "Categories",
|
||||
"groups": "Groups",
|
||||
"group": "%1 group",
|
||||
"reset": "Nollaa tunnuksesi salasana",
|
||||
"categories": "Kategoriat",
|
||||
"groups": "Ryhmät",
|
||||
"group": "%1 ryhmä",
|
||||
"chats": "Keskustelut",
|
||||
"chat": "Chatting with %1",
|
||||
"chat": "Keskustelee %1 kanssa",
|
||||
"flags": "Flags",
|
||||
"flag-details": "Flag %1 Details",
|
||||
"account/edit": "Editing \"%1\"",
|
||||
"account/edit": "Muokkaa \"%1\"",
|
||||
"account/edit/password": "Editing password of \"%1\"",
|
||||
"account/edit/username": "Editing username of \"%1\"",
|
||||
"account/edit/email": "Editing email of \"%1\"",
|
||||
"account/info": "Account Info",
|
||||
"account/info": "Käyttäjätilin tiedot",
|
||||
"account/following": "Ihmiset, jota %1 seuraa",
|
||||
"account/followers": "Ihmiset, jotka seuraavat %1",
|
||||
"account/posts": "Posts made by %1",
|
||||
"account/latest-posts": "Latest posts made by %1",
|
||||
"account/topics": "Topics created by %1",
|
||||
"account/groups": "%1's Groups",
|
||||
"account/latest-posts": "%1 viimeisimmät viestit",
|
||||
"account/topics": "%1 luomat aiheet",
|
||||
"account/groups": "%1 ryhmät",
|
||||
"account/watched_categories": "%1's Watched Categories",
|
||||
"account/bookmarks": "%1's Bookmarked Posts",
|
||||
"account/settings": "User Settings",
|
||||
"account/watched": "Topics watched by %1",
|
||||
"account/ignored": "Topics ignored by %1",
|
||||
"account/upvoted": "Posts upvoted by %1",
|
||||
"account/settings": "Käyttäjän asetukset",
|
||||
"account/watched": "%1 seuraamat aiheet",
|
||||
"account/ignored": "%1 sivuuttamat aiheet",
|
||||
"account/upvoted": "%1 tykkäämät viestit",
|
||||
"account/downvoted": "Posts downvoted by %1",
|
||||
"account/best": "Best posts made by %1",
|
||||
"account/best": "%1 tekemät parhaat viestit",
|
||||
"account/blocks": "Blocked users for %1",
|
||||
"account/uploads": "Uploads by %1",
|
||||
"account/uploads": "%1 lähetykset",
|
||||
"account/sessions": "Login Sessions",
|
||||
"confirm": "Email Confirmed",
|
||||
"maintenance.text": "%1 is currently undergoing maintenance. Please come back another time.",
|
||||
"maintenance.messageIntro": "Additionally, the administrator has left this message:",
|
||||
"throttled.text": "%1 is currently unavailable due to excessive load. Please come back another time."
|
||||
"confirm": "Sähköposti varmistettu",
|
||||
"maintenance.text": "%1 sivustoa huolletaan parhaillaan. Tarkista sivusto hetken kuluttua uudestaan.",
|
||||
"maintenance.messageIntro": "Lisäksi ylläpitäjä on jättänyt seuraavan viestin:",
|
||||
"throttled.text": "%1 sivusto on tällähetkellä alhaalla johtuen liiasta kuormituksesta. Tule takaisin myöhemmin."
|
||||
}
|
||||
@@ -6,14 +6,14 @@
|
||||
"year": "Vuosi",
|
||||
"alltime": "Alusta lähtien",
|
||||
"no_recent_topics": "Ei viimeisimpiä aiheita.",
|
||||
"no_popular_topics": "There are no popular topics.",
|
||||
"no_popular_topics": "Ei päivityksiä suosituimmissa aiheissa",
|
||||
"there-is-a-new-topic": "Uusi aihe.",
|
||||
"there-is-a-new-topic-and-a-new-post": "Uusi aihe ja uusi viesti.",
|
||||
"there-is-a-new-topic-and-new-posts": "Uusi aihe ja %1 uutta viestiä.",
|
||||
"there-are-new-topics": "%1 uutta aihetta.",
|
||||
"there-are-new-topics-and-a-new-post": "%1 uutta aihetta ja uusi viesti.",
|
||||
"there-are-new-topics-and-new-posts": "%1 uutta aihetta ja %2 uutta viestiä.",
|
||||
"there-is-a-new-post": "Uusi viesti.",
|
||||
"there-is-a-new-post": "Ei uusia viestejä",
|
||||
"there-are-new-posts": "%1 uutta viestiä.",
|
||||
"click-here-to-reload": "Päivitä napsauttamalla tätä."
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"register": "Rekisteröidy",
|
||||
"cancel_registration": "Cancel Registration",
|
||||
"cancel_registration": "Peruuta rekisteröinti",
|
||||
"help.email": "Oletuksena sähköpostiosoitettasi ei näytetä muille.",
|
||||
"help.username_restrictions": "Yksilöllisen käyttäjätunnuksen pitää olla %1-%2 merkkiä pitkä. Toiset voivat mainita sinut @<span id='yourUsername'>username</span>.",
|
||||
"help.minimum_password_length": "Salasanasi pitää olla vähintään %1 merkin mittainen.",
|
||||
@@ -16,11 +16,11 @@
|
||||
"alternative_registration": "Vaihtoehtoiset rekisteröitymistavat",
|
||||
"terms_of_use": "Käyttöehdot",
|
||||
"agree_to_terms_of_use": "Hyväksyn käyttöehdot",
|
||||
"terms_of_use_error": "You must agree to the Terms of Use",
|
||||
"registration-added-to-queue": "Your registration has been added to the approval queue. You will receive an email when it is accepted by an administrator.",
|
||||
"interstitial.intro": "We require some additional information before we can create your account.",
|
||||
"interstitial.errors-found": "We could not complete your registration:",
|
||||
"gdpr_agree_data": "I consent to the collection and processing of my personal information on this website.",
|
||||
"gdpr_agree_email": "I consent to receive digest and notification emails from this website.",
|
||||
"gdpr_consent_denied": "You must give consent to this site to collect/process your information, and to send you emails."
|
||||
"terms_of_use_error": "Sinun täytyy hyväksyä sopimusehdot",
|
||||
"registration-added-to-queue": "Rekisteröintisi on lisätty listalle odottamaan hyväksyntää. Saat ilmoituksen sähköpostiisi, kun ylläpitäjä on hyväksynyt rekisteröitymisesin.",
|
||||
"interstitial.intro": "Sivusto vaatii lisätietoja ennenkuin voi luoda tunnuksen.",
|
||||
"interstitial.errors-found": "Rekisteröitymisesi keskeytyi",
|
||||
"gdpr_agree_data": "Annan hyväksyntäni henkilökohtaisten tietojen keräämiseen ja prosessointiin tälle verkkosivulle.",
|
||||
"gdpr_agree_email": "Haluan vastaanottaa viestikoosteita ja ilmoituksia tältä verkkosivulta",
|
||||
"gdpr_consent_denied": "Sinun täytyy antaa suostumus sivustolle, jotta se voi kerätä ja tallentaa tietosi ja lähettää sinulle tarvittaessa sähköpostia."
|
||||
}
|
||||
@@ -9,9 +9,9 @@
|
||||
"repeat_password": "Vahvista salasana",
|
||||
"enter_email": "Syötä <strong>sähköpostiosoitteesi</strong>, niin me lähetämme sinulle sähköpostilla ohjeet käyttäjätilisi palauttamiseksi.",
|
||||
"enter_email_address": "Syötä sähköpostiosoite",
|
||||
"password_reset_sent": "If the specified address corresponds to an existing user account, a password reset email was sent. Please note that only one email will be sent per minute.",
|
||||
"password_reset_sent": "Salasanan nollaus viesti on lähetetty annettuun osoitteeseen, jos osoite löytyy järjestelmän kannasta. Huomaa, että on mahdollista lähettää vain yksi palautusviesti minuutissa.",
|
||||
"invalid_email": "Virheellinen sähköpostiosoite / Sähköpostiosoitetta ei ole olemassa!",
|
||||
"password_too_short": "Salasana on liian lyhyt, käytä pidempää salasanaa.",
|
||||
"passwords_do_not_match": "Salasana ja sen vahvistus eivät täsmää.",
|
||||
"password_expired": "Your password has expired, please choose a new password"
|
||||
"password_expired": "Salasanasi on vanhentunut. Luo uusi salasana."
|
||||
}
|
||||
@@ -1,23 +1,23 @@
|
||||
{
|
||||
"results_matching": "%1 result(s) matching \"%2\", (%3 seconds)",
|
||||
"no-matches": "No matches found",
|
||||
"advanced-search": "Advanced Search",
|
||||
"results_matching": "%1 tulosta löytyi hakusanalla \"%2\" (%3 sekunnissa).",
|
||||
"no-matches": "Ei hakuosumia",
|
||||
"advanced-search": "Laajennettu haku",
|
||||
"in": "In",
|
||||
"titles": "Otsikot",
|
||||
"titles-posts": "Otsikot ja Viestit",
|
||||
"match-words": "Match words",
|
||||
"all": "All",
|
||||
"any": "Any",
|
||||
"all": "Kaikki",
|
||||
"any": "Mikä tahansa",
|
||||
"posted-by": "Kirjoittanut",
|
||||
"in-categories": "In Categories",
|
||||
"in-categories": "Kategorioissa",
|
||||
"search-child-categories": "Hae alikategorioista",
|
||||
"has-tags": "Has tags",
|
||||
"has-tags": "Sisältää tagit",
|
||||
"reply-count": "Vastausten määrä",
|
||||
"at-least": "Vähintään",
|
||||
"at-most": "Enintään",
|
||||
"relevance": "Relevance",
|
||||
"relevance": "Relevanssi",
|
||||
"post-time": "Julkaisuaika",
|
||||
"votes": "Votes",
|
||||
"votes": "Ääniä",
|
||||
"newer-than": "Uudemmat kuin",
|
||||
"older-than": "Vanhemmat kuin",
|
||||
"any-date": "Mikä tahansa päivä",
|
||||
@@ -31,7 +31,7 @@
|
||||
"sort-by": "Lajitteluperuste",
|
||||
"last-reply-time": "Vastattu viimeksi",
|
||||
"topic-title": "Aiheen otsikko",
|
||||
"topic-votes": "Topic votes",
|
||||
"topic-votes": "Aiheiden äänet",
|
||||
"number-of-replies": "Vastausten määrä",
|
||||
"number-of-views": "Katselukertojen määrä",
|
||||
"topic-start-date": "Aiheen aloituspäivä",
|
||||
@@ -39,10 +39,10 @@
|
||||
"category": "Kategoria",
|
||||
"descending": "Laskevassa järjestyksessä",
|
||||
"ascending": "Nousevassa järjestyksessä",
|
||||
"save-preferences": "Save preferences",
|
||||
"clear-preferences": "Clear preferences",
|
||||
"search-preferences-saved": "Search preferences saved",
|
||||
"search-preferences-cleared": "Search preferences cleared",
|
||||
"show-results-as": "Show results as",
|
||||
"see-more-results": "See more results (%1)"
|
||||
"save-preferences": "Tallenna asetukset",
|
||||
"clear-preferences": "Tyhjennä asetukset",
|
||||
"search-preferences-saved": "Haun asetukset tallennettu",
|
||||
"search-preferences-cleared": "Haun asetukset nollattu",
|
||||
"show-results-as": "Näytä tulokset",
|
||||
"see-more-results": "Näytä lisää tuloksia (%1)"
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"success": "Onnistui",
|
||||
"topic-post": "Viestin lähettäminen onnistui.",
|
||||
"post-queued": "Your post is queued for approval.",
|
||||
"post-queued": "Viestisi on jonossa odottamassa hyväksyntää",
|
||||
"authentication-successful": "Tunnistautuminen onnistui",
|
||||
"settings-saved": "Asetukset tallennettu!"
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"no_tag_topics": "Ei viimeisimpiä aiheita tällä tagilla.",
|
||||
"tags": "Tagit",
|
||||
"enter_tags_here": "Enter tags here, between %1 and %2 characters each.",
|
||||
"enter_tags_here": "Syötä tagit tähän merkkien %1 ja %2 väliin.",
|
||||
"enter_tags_here_short": "Syötä tagit...",
|
||||
"no_tags": "Ei vielä yhtään tagia."
|
||||
}
|
||||
@@ -5,7 +5,7 @@
|
||||
"no_topics_found": "Aiheita ei löytynyt!",
|
||||
"no_posts_found": "Viestejä ei löytynyt!",
|
||||
"post_is_deleted": "Tämä viesti poistettiin!",
|
||||
"topic_is_deleted": "This topic is deleted!",
|
||||
"topic_is_deleted": "Tämä aihe on poistettu!",
|
||||
"profile": "Profiili",
|
||||
"posted_by": "%1 kirjoitti",
|
||||
"posted_by_guest": "Vieras kirjoitti",
|
||||
@@ -13,127 +13,127 @@
|
||||
"notify_me": "Ilmoita, kun tähän keskusteluun tulee uusia viestejä",
|
||||
"quote": "Lainaa",
|
||||
"reply": "Vastaa",
|
||||
"replies_to_this_post": "%1 Replies",
|
||||
"one_reply_to_this_post": "1 Reply",
|
||||
"last_reply_time": "Last reply",
|
||||
"reply-as-topic": "Reply as topic",
|
||||
"replies_to_this_post": "%1 vastauksia",
|
||||
"one_reply_to_this_post": "1 vastaus",
|
||||
"last_reply_time": "Viimeisin vastaus",
|
||||
"reply-as-topic": "Vastaa aiheeseen",
|
||||
"guest-login-reply": "Kirjaudu sisään voidaksesi vastata",
|
||||
"login-to-view": "🔒 Log in to view",
|
||||
"login-to-view": "Kirjaudu sisään",
|
||||
"edit": "Muokkaa",
|
||||
"delete": "Poista",
|
||||
"purge": "Purge",
|
||||
"purge": "Poista pysyvästi",
|
||||
"restore": "Palauta",
|
||||
"move": "Siirrä",
|
||||
"change-owner": "Change Owner",
|
||||
"change-owner": "Vaihda omistaja",
|
||||
"fork": "Haaroita",
|
||||
"link": "Linkitä",
|
||||
"share": "Jaa",
|
||||
"tools": "Työkalut",
|
||||
"locked": "Lukittu",
|
||||
"pinned": "Pinned",
|
||||
"moved": "Moved",
|
||||
"copy-ip": "Copy IP",
|
||||
"pinned": "Kiinnitetty",
|
||||
"moved": "Siirretty",
|
||||
"copy-ip": "Kopioi IP",
|
||||
"ban-ip": "Ban IP",
|
||||
"view-history": "Edit History",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"view-history": "Muokkaa historiaa",
|
||||
"bookmark_instructions": "Klikkaa tästä palataksesi viimeisimpään luettuun viestiin tässä aiheessa",
|
||||
"flag_title": "Ilmianna tämä viesti moderaattoreille",
|
||||
"merged_message": "This topic has been merged into <a href=\"/topic/%1\">%2</a>",
|
||||
"merged_message": "Tämä aihe on sulautettu aiheeseen <a href=\"/topic/%1\"> %2¤</a>",
|
||||
"deleted_message": "Tämä aihe on poistettu. Vain käyttäjät, joilla on aiheen hallintaoikeudet, voivat nähdä sen.",
|
||||
"following_topic.message": "Saat nyt ilmoituksen, kun joku kirjoittaa tähän aiheeseen.",
|
||||
"not_following_topic.message": "You will see this topic in the unread topics list, but you will not receive notifications when somebody posts to this topic.",
|
||||
"ignoring_topic.message": "You will no longer see this topic in the unread topics list. You will be notified when you are mentioned or your post is up voted.",
|
||||
"not_following_topic.message": "Et näe tätä aihetta lukemattomissa aiheissa, mutta saat ilmoituksen kun joku lähettää viestin tähän aiheeseen.",
|
||||
"ignoring_topic.message": "Et enää näe tätä aihetta lukemattomat aiheet listauksessa. Saat ilmoituksen, kun joku mainitsee sinut tai viestistäsi tykätään.",
|
||||
"login_to_subscribe": "Ole hyvä ja rekisteröidy tai kirjaudu sisään tilataksesi tämän aiheen.",
|
||||
"markAsUnreadForAll.success": "Aihe merkitty lukemattomaksi kaikille.",
|
||||
"mark_unread": "Mark unread",
|
||||
"mark_unread.success": "Topic marked as unread.",
|
||||
"watch": "Tarkkaile",
|
||||
"mark_unread": "Merkitse lukemattomaksi",
|
||||
"mark_unread.success": "Aihe on merkitty lukemattomaksi",
|
||||
"watch": "Seuraa",
|
||||
"unwatch": "Älä seuraa",
|
||||
"watch.title": "Ilmoita, kun tähän keskusteluun tulee uusia viestejä",
|
||||
"unwatch.title": "Lopeta tämän aiheen seuraaminen",
|
||||
"share_this_post": "Jaa tämä viesti",
|
||||
"watching": "Watching",
|
||||
"not-watching": "Not Watching",
|
||||
"ignoring": "Ignoring",
|
||||
"watching.description": "Notify me of new replies.<br/>Show topic in unread.",
|
||||
"not-watching.description": "Do not notify me of new replies.<br/>Show topic in unread if category is not ignored.",
|
||||
"ignoring.description": "Do not notify me of new replies.<br/>Do not show topic in unread.",
|
||||
"watching": "Seurataan",
|
||||
"not-watching": "Ei seurannassa",
|
||||
"ignoring": "Sivuutettu",
|
||||
"watching.description": "Ilmoita minulle uusista vastauksista. <br/>Näytä aiheet lukemattomissa.",
|
||||
"not-watching.description": "Älä ilmoita minulle uusista vastauksista. <br/>Näytä aihe lukemattomissa jos kategoriaa ei ole sivuutettu.",
|
||||
"ignoring.description": "Älä ilmoita minulle uusista vastauksista.",
|
||||
"thread_tools.title": "Aiheen työkalut",
|
||||
"thread_tools.markAsUnreadForAll": "Mark Unread For All",
|
||||
"thread_tools.markAsUnreadForAll": "Merkitse lukemattomaksi kaikille",
|
||||
"thread_tools.pin": "Kiinnitä aihe",
|
||||
"thread_tools.unpin": "Poista aiheen kiinnitys",
|
||||
"thread_tools.lock": "Lukitse aihe",
|
||||
"thread_tools.unlock": "Poista aiheen lukitus",
|
||||
"thread_tools.move": "Siirrä aihe",
|
||||
"thread_tools.move-posts": "Move Posts",
|
||||
"thread_tools.move-posts": "Siirrä viestit",
|
||||
"thread_tools.move_all": "Siirrä kaikki",
|
||||
"thread_tools.change_owner": "Change Owner",
|
||||
"thread_tools.select_category": "Select Category",
|
||||
"thread_tools.change_owner": "Vaihda omistaja",
|
||||
"thread_tools.select_category": "Valitse kategoria",
|
||||
"thread_tools.fork": "Haaroita aihe",
|
||||
"thread_tools.delete": "Poista aihe",
|
||||
"thread_tools.delete-posts": "Delete Posts",
|
||||
"thread_tools.delete-posts": "Poista viestit",
|
||||
"thread_tools.delete_confirm": "Haluatko varmasti poistaa tämän aiheen?",
|
||||
"thread_tools.restore": "Palauta aihe",
|
||||
"thread_tools.restore_confirm": "Haluatko varmasti palauttaa tämän aiheen?",
|
||||
"thread_tools.purge": "Purge Topic",
|
||||
"thread_tools.purge_confirm": "Are you sure you want to purge this topic?",
|
||||
"thread_tools.merge_topics": "Merge Topics",
|
||||
"thread_tools.merge": "Merge",
|
||||
"topic_move_success": "This topic has been successfully moved to %1",
|
||||
"thread_tools.purge": "Poista aihe pysyvästi",
|
||||
"thread_tools.purge_confirm": "Oletko varma, että haluat poistaa pysyvästi tämän aiheen?",
|
||||
"thread_tools.merge_topics": "Sulauta aiheet",
|
||||
"thread_tools.merge": "Sulauta",
|
||||
"topic_move_success": "Tämä aihe on siirretty onnistuneesti %1 alueelle",
|
||||
"post_delete_confirm": "Haluatko varmasti poistaa tämän viestin?",
|
||||
"post_restore_confirm": "Haluatko varmasti palauttaa tämän viestin?",
|
||||
"post_purge_confirm": "Are you sure you want to purge this post?",
|
||||
"post_purge_confirm": "Oletko varma, että haluat poistaa pysyvästi tämän viestin?",
|
||||
"load_categories": "Ladataan aihealueita",
|
||||
"confirm_move": "Siirrä",
|
||||
"confirm_fork": "Haaroita",
|
||||
"bookmark": "Bookmark",
|
||||
"bookmarks": "Bookmarks",
|
||||
"bookmarks.has_no_bookmarks": "You haven't bookmarked any posts yet.",
|
||||
"bookmark": "Kirjanmerkki",
|
||||
"bookmarks": "Kirjanmerkit",
|
||||
"bookmarks.has_no_bookmarks": "Et ole kirjanmerkinnyt yhtään viestiä vielä.",
|
||||
"loading_more_posts": "Ladataan lisää viestejä",
|
||||
"move_topic": "Siirrä aihe",
|
||||
"move_topics": "Move Topics",
|
||||
"move_topics": "Siirrä aiheet",
|
||||
"move_post": "Siirrä viesti",
|
||||
"post_moved": "Post moved!",
|
||||
"post_moved": "Viestit siirretty!",
|
||||
"fork_topic": "Haaroita keskustelu",
|
||||
"fork_topic_instruction": "Napsauta viestejä, jotka haluat haaroittaa",
|
||||
"fork_no_pids": "Ei valittuja viestejä!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Successfully forked topic! Click here to go to the forked topic.",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"merge_topics_instruction": "Click the topics you want to merge",
|
||||
"move_posts_instruction": "Click the posts you want to move",
|
||||
"change_owner_instruction": "Click the posts you want to assign to another user",
|
||||
"fork_pid_count": "%1 viesti(ä) valittuna",
|
||||
"fork_success": "Aihe eriytetty onnistuneesti! Klikkaa täältä mennäkseksi uuteen aiheeseen.",
|
||||
"delete_posts_instruction": "Valitse viestit jotka haluat poistaa (pysyvästi)",
|
||||
"merge_topics_instruction": "Valitse viestit jotka haluat sulauttaa",
|
||||
"move_posts_instruction": "Valitse viestit jotka haluat siirtää",
|
||||
"change_owner_instruction": "Valitse viestit jotka haluat siirtää toiselle henkilölle",
|
||||
"composer.title_placeholder": "Syötä aiheesi otsikko tähän...",
|
||||
"composer.handle_placeholder": "Name",
|
||||
"composer.handle_placeholder": "Nimi",
|
||||
"composer.discard": "Hylkää",
|
||||
"composer.submit": "Lähetä",
|
||||
"composer.replying_to": "Replying to %1",
|
||||
"composer.replying_to": "Vastaus viestiin %1",
|
||||
"composer.new_topic": "Uusi aihe",
|
||||
"composer.uploading": "ladataan palvelimelle...",
|
||||
"composer.thumb_url_label": "Paste a topic thumbnail URL",
|
||||
"composer.thumb_title": "Add a thumbnail to this topic",
|
||||
"composer.thumb_url_label": "Liitä aiheen aiheen kuvakkeen URL",
|
||||
"composer.thumb_title": "Lisää kuvake tähän aiheeseen",
|
||||
"composer.thumb_url_placeholder": "http://example.com/thumb.png",
|
||||
"composer.thumb_file_label": "Tai lataa tiedosto palvelimelle",
|
||||
"composer.thumb_remove": "Clear fields",
|
||||
"composer.thumb_remove": "Tyhjennä kentät",
|
||||
"composer.drag_and_drop_images": "Vedä ja pudota kuvat tähän",
|
||||
"more_users_and_guests": "%1 more user(s) and %2 guest(s)",
|
||||
"more_users_and_guests": "%1 käyttäjä(ä) ja %2 vieras(sta)",
|
||||
"more_users": "%1 more user(s)",
|
||||
"more_guests": "%1 more guest(s)",
|
||||
"users_and_others": "%1 and %2 others",
|
||||
"sort_by": "Sort by",
|
||||
"oldest_to_newest": "Oldest to Newest",
|
||||
"newest_to_oldest": "Newest to Oldest",
|
||||
"most_votes": "Most Votes",
|
||||
"most_posts": "Most Posts",
|
||||
"sort_by": "Lajittele",
|
||||
"oldest_to_newest": "Vanhimmasta uusimpaan",
|
||||
"newest_to_oldest": "Uusimmasta vanhimpaan",
|
||||
"most_votes": "Eniten ääniä",
|
||||
"most_posts": "Eniten viestejä",
|
||||
"stale.title": "Create new topic instead?",
|
||||
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
||||
"stale.create": "Create a new topic",
|
||||
"stale.reply_anyway": "Reply to this topic anyway",
|
||||
"link_back": "Re: [%1](%2)",
|
||||
"diffs.title": "Post Edit History",
|
||||
"diffs.description": "This post has <strong>%1</strong> revisions. Click one of the revisions below to see the post content at that point in time.",
|
||||
"diffs.no-revisions-description": "This post has <strong>%1</strong> revisions.",
|
||||
"diffs.current-revision": "current revision",
|
||||
"diffs.original-revision": "original revision",
|
||||
"timeago_later": "%1 later",
|
||||
"timeago_earlier": "%1 earlier"
|
||||
"stale.warning": "Aihe johon olet vastaamassa on melko vanha. Haluaisitko luoda mieluummin uuden aiheen ja viitata siitä tähän viestissäsi?",
|
||||
"stale.create": "Luo uusi aihe",
|
||||
"stale.reply_anyway": "Vastaa kuitenkin tähän aiheeseen",
|
||||
"link_back": "Vs: [%1] (%2)",
|
||||
"diffs.title": "Viestin muokkaushistoria",
|
||||
"diffs.description": "Tästä viestistä on <strong>%1 </strong>versiota. Klikkaa alempaa viestiä haluttua viestiä, jonka sisällön haluat nähdä.",
|
||||
"diffs.no-revisions-description": "Tästä viestistä on <strong>%1 </strong>versiota",
|
||||
"diffs.current-revision": "nykyinen versio",
|
||||
"diffs.original-revision": "alkuperäinen versio",
|
||||
"timeago_later": "%1 myöhempi",
|
||||
"timeago_earlier": "%1 aiempi"
|
||||
}
|
||||
@@ -5,11 +5,11 @@
|
||||
"mark_as_read": "Merkitse luetuksi",
|
||||
"selected": "Valitut",
|
||||
"all": "Kaikki",
|
||||
"all_categories": "All categories",
|
||||
"all_categories": "Kaikki kategoriat",
|
||||
"topics_marked_as_read.success": "Aihe merkitty luetuksi!",
|
||||
"all-topics": "All Topics",
|
||||
"new-topics": "New Topics",
|
||||
"watched-topics": "Watched Topics",
|
||||
"unreplied-topics": "Unreplied Topics",
|
||||
"multiple-categories-selected": "Multiple Selected"
|
||||
"all-topics": "Kaikki aiheet",
|
||||
"new-topics": "Uudet aiheet",
|
||||
"watched-topics": "Seuratut aiheet",
|
||||
"unreplied-topics": "Vastaamattomat aiheet",
|
||||
"multiple-categories-selected": "Useita valittuna"
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"uploading-file": "Uploading the file...",
|
||||
"select-file-to-upload": "Select a file to upload!",
|
||||
"upload-success": "File uploaded successfully!",
|
||||
"maximum-file-size": "Maximum %1 kb",
|
||||
"no-uploads-found": "No uploads found",
|
||||
"public-uploads-info": "Uploads are public, all visitors can see them.",
|
||||
"private-uploads-info": "Uploads are private, only logged in users can see them."
|
||||
"uploading-file": "Lähetetään tiedostoa..",
|
||||
"select-file-to-upload": "Valitse tiedosto lähetettäväksi!",
|
||||
"upload-success": "Tiedoston lähetys onnistui",
|
||||
"maximum-file-size": "Maksimi koko on %1 kt",
|
||||
"no-uploads-found": "Lähetyksiä ei löytynyt",
|
||||
"public-uploads-info": "Lähetettyjen tiedostojen näkyvyys on julkinen, kirjautumattomat käyttäjät voivat nähdä ne.",
|
||||
"private-uploads-info": "Lähetettyjen tiedostojen näkyvyys on rajoitettu, vain kirjautuneet käyttäjät voivat nähdä ne."
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"banned": "Bannattu",
|
||||
"offline": "Offline",
|
||||
"deleted": "Deleted",
|
||||
"deleted": "Poistettu",
|
||||
"username": "Käyttäjän nimi",
|
||||
"joindate": "Liittymispäivä",
|
||||
"postcount": "Viestien määrä",
|
||||
"email": "Sähköposti",
|
||||
"confirm_email": "Vahvista sähköpostiosoite",
|
||||
"account_info": "Account Info",
|
||||
"ban_account": "Ban Account",
|
||||
"ban_account_confirm": "Do you really want to ban this user?",
|
||||
"unban_account": "Unban Account",
|
||||
"account_info": "Tilin tiedot",
|
||||
"ban_account": "Bannaa käyttäjätili",
|
||||
"ban_account_confirm": "Haluatko varmasti bannata käyttäjän?",
|
||||
"unban_account": "Peru käyttäjätilin banni",
|
||||
"delete_account": "Poista käyttäjätili",
|
||||
"delete_account_confirm": "Are you sure you want to delete your account? <br /><strong>This action is irreversible and you will not be able to recover any of your data</strong><br /><br />Enter your password to confirm that you wish to destroy this account.",
|
||||
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
|
||||
"account-deleted": "Account deleted",
|
||||
"account-deleted": "Tili poistettu",
|
||||
"fullname": "Koko nimi",
|
||||
"website": "Kotisivu",
|
||||
"location": "Sijainti",
|
||||
@@ -24,11 +24,11 @@
|
||||
"profile": "Profiili",
|
||||
"profile_views": "Profiilia katsottu",
|
||||
"reputation": "Maine",
|
||||
"bookmarks": "Bookmarks",
|
||||
"watched_categories": "Watched categories",
|
||||
"change_all": "Change All",
|
||||
"bookmarks": "Kirjanmerkit",
|
||||
"watched_categories": "Seuratut kategoriat",
|
||||
"change_all": "Muuta kaikki",
|
||||
"watched": "Seurattu",
|
||||
"ignored": "Ignored",
|
||||
"ignored": "Ohitetut",
|
||||
"default-category-watch-state": "Default category watch state",
|
||||
"followers": "Seuraajat",
|
||||
"following": "Seuratut",
|
||||
@@ -36,24 +36,24 @@
|
||||
"block_toggle": "Toggle Block",
|
||||
"block_user": "Block User",
|
||||
"unblock_user": "Unblock User",
|
||||
"aboutme": "About me",
|
||||
"aboutme": "Tietoja minusta",
|
||||
"signature": "Allekirjoitus",
|
||||
"birthday": "Syntymäpäivä",
|
||||
"chat": "Keskustele",
|
||||
"chat_with": "Continue chat with %1",
|
||||
"new_chat_with": "Start new chat with %1",
|
||||
"chat_with": "Jatka keskustelua %1 kanssa",
|
||||
"new_chat_with": "Aloita keskutelu %1 kanssa",
|
||||
"flag-profile": "Flag Profile",
|
||||
"follow": "Seuraa",
|
||||
"unfollow": "Älä seuraa",
|
||||
"more": "More",
|
||||
"more": "Lisää",
|
||||
"profile_update_success": "Profiili päivitettiin onnistuneesti!",
|
||||
"change_picture": "Vaihda kuva",
|
||||
"change_username": "Change Username",
|
||||
"change_email": "Change Email",
|
||||
"change_username": "Vaihda käyttäjänimi",
|
||||
"change_email": "Vaihda sähköpostiosoite",
|
||||
"email_same_as_password": "Please enter your current password to continue – you've entered your new email again",
|
||||
"edit": "Muokkaa",
|
||||
"edit-profile": "Edit Profile",
|
||||
"default_picture": "Default Icon",
|
||||
"edit-profile": "Muokkaa profiiliasi",
|
||||
"default_picture": "Oletus kuvake",
|
||||
"uploaded_picture": "Ladattu kuva",
|
||||
"upload_new_picture": "Lataa uusi kuva",
|
||||
"upload_new_picture_from_url": "Lataa uusi kuva URL-osoitteesta",
|
||||
@@ -67,21 +67,21 @@
|
||||
"confirm_password": "Vahvista salasana",
|
||||
"password": "Salasana",
|
||||
"username_taken_workaround": "Pyytämäsi käyttäjänimi oli jo varattu, joten muutimme sitä hieman. Käyttäjänimesi on siis nyt <strong>%1</strong>",
|
||||
"password_same_as_username": "Your password is the same as your username, please select another password.",
|
||||
"password_same_as_email": "Your password is the same as your email, please select another password.",
|
||||
"weak_password": "Weak password.",
|
||||
"password_same_as_username": "Salasanasi on sama kuin käytttänimesi. Valitse joku toinen salasana.",
|
||||
"password_same_as_email": "Salasanasi on sama kuin sähköpostiosoitteesi. Valitse joku toinen salasana.",
|
||||
"weak_password": "Heikko salasana",
|
||||
"upload_picture": "Lataa kuva",
|
||||
"upload_a_picture": "Lataa kuva",
|
||||
"remove_uploaded_picture": "Remove Uploaded Picture",
|
||||
"remove_uploaded_picture": "Poista lisätty kuva",
|
||||
"upload_cover_picture": "Upload cover picture",
|
||||
"remove_cover_picture_confirm": "Are you sure you want to remove the cover picture?",
|
||||
"crop_picture": "Crop picture",
|
||||
"upload_cropped_picture": "Crop and upload",
|
||||
"crop_picture": "Rajaa kuvaa",
|
||||
"upload_cropped_picture": "Rajaa ja lähetä",
|
||||
"settings": "Asetukset",
|
||||
"show_email": "Näytä sähköpostiosoitteeni",
|
||||
"show_fullname": "Näytä koko nimeni",
|
||||
"restrict_chats": "Salli pikaviestit vain seuraamiltani käyttäjiltä",
|
||||
"digest_label": "Subscribe to Digest",
|
||||
"digest_label": "Tilaa kooste",
|
||||
"digest_description": "Tilaa päivitykset sähköpostilla tästä foorumista (uudet ilmoitukset ja aiheet) asetetun ajastuksen mukaan",
|
||||
"digest_off": "Pois päältä",
|
||||
"digest_daily": "Päivittäin",
|
||||
@@ -89,14 +89,14 @@
|
||||
"digest_monthly": "Kuukausittain",
|
||||
"has_no_follower": "Kukaan ei seuraa tätä käyttäjää :(",
|
||||
"follows_no_one": "Tämä käyttäjä ei seuraa ketään :(",
|
||||
"has_no_posts": "This user hasn't posted anything yet.",
|
||||
"has_no_topics": "This user hasn't posted any topics yet.",
|
||||
"has_no_watched_topics": "This user hasn't watched any topics yet.",
|
||||
"has_no_ignored_topics": "This user hasn't ignored any topics yet.",
|
||||
"has_no_upvoted_posts": "This user hasn't upvoted any posts yet.",
|
||||
"has_no_posts": "Käyttäjä ei ole vielä lähettänyt viestejä ",
|
||||
"has_no_topics": "Käyttäjä ei ole lähettänyt viestiä yhteenkään aiheeseen vielä.",
|
||||
"has_no_watched_topics": "Käyttäjä ei seuraa mitään aihetta vielä.",
|
||||
"has_no_ignored_topics": "Käyttäjä ei ole merkannut sivuutettavaksi yhtään aihetta.",
|
||||
"has_no_upvoted_posts": "Käyttäjä ei ole tykännyt yhdestäkään viestistä vielä.",
|
||||
"has_no_downvoted_posts": "This user hasn't downvoted any posts yet.",
|
||||
"has_no_voted_posts": "This user has no voted posts",
|
||||
"has_no_blocks": "You have blocked no users.",
|
||||
"has_no_voted_posts": "Käyttäjä ei ole antanut tykkäyksiä viesteille",
|
||||
"has_no_blocks": "Käyttäjä ei ole estänyt käyttäjiä",
|
||||
"email_hidden": "Sähköposti piilotettu",
|
||||
"hidden": "piilotettu",
|
||||
"paginate_description": "Paginate topics and posts instead of using infinite scroll",
|
||||
@@ -111,25 +111,25 @@
|
||||
"notification-sound": "Notification sound",
|
||||
"no-sound": "No sound",
|
||||
"upvote-notif-freq": "Upvote Notification Frequency",
|
||||
"upvote-notif-freq.all": "All Upvotes",
|
||||
"upvote-notif-freq.all": "Kaikki tykkäykset",
|
||||
"upvote-notif-freq.first": "First Per Post",
|
||||
"upvote-notif-freq.everyTen": "Every Ten Upvotes",
|
||||
"upvote-notif-freq.threshold": "On 1, 5, 10, 25, 50, 100, 150, 200...",
|
||||
"upvote-notif-freq.logarithmic": "On 10, 100, 1000...",
|
||||
"upvote-notif-freq.disabled": "Disabled",
|
||||
"upvote-notif-freq.disabled": "Poistettu käytöstä",
|
||||
"browsing": "Selataan asetuksia",
|
||||
"open_links_in_new_tab": "Open outgoing links in new tab",
|
||||
"open_links_in_new_tab": "Avaa palvelunulkopuoliset linkit uuteen ikkunaan",
|
||||
"enable_topic_searching": "Salli aiheen sisäiset haut",
|
||||
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behaviour and allow you to search through the entire topic, instead of what is only shown on screen",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Watch topics that you reply to",
|
||||
"follow_topics_you_create": "Watch topics you create",
|
||||
"grouptitle": "Group Title",
|
||||
"grouptitle": "Ryhmän nimi",
|
||||
"group-order-help": "Select a group and use the arrows to order titles",
|
||||
"no-group-title": "No group title",
|
||||
"no-group-title": "Ei ryhmän nimeä",
|
||||
"select-skin": "Select a Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
"homepage": "Homepage",
|
||||
"select-homepage": "Valitse kotisivu",
|
||||
"homepage": "Kotisivu",
|
||||
"homepage_description": "Select a page to use as the forum homepage or 'None' to use the default homepage.",
|
||||
"custom_route": "Custom Homepage Route",
|
||||
"custom_route_help": "Enter a route name here, without any preceding slash (e.g. \"recent\", or \"popular\")",
|
||||
@@ -145,13 +145,13 @@
|
||||
"info.no-ban-history": "This user has never been banned",
|
||||
"info.banned-until": "Banned until %1",
|
||||
"info.banned-permanently": "Banned permanently",
|
||||
"info.banned-reason-label": "Reason",
|
||||
"info.banned-no-reason": "No reason given.",
|
||||
"info.banned-reason-label": "Syy ",
|
||||
"info.banned-no-reason": "Syytä ei ole annettu",
|
||||
"info.username-history": "Username History",
|
||||
"info.email-history": "Email History",
|
||||
"info.moderation-note": "Moderation Note",
|
||||
"info.moderation-note": "Ylläpidon muistiinpano",
|
||||
"info.moderation-note.success": "Moderation note saved",
|
||||
"info.moderation-note.add": "Add note",
|
||||
"info.moderation-note.add": "Lisää muistiinpano",
|
||||
"sessions.description": "This page allows you to view any active sessions on this forum and revoke them if necessary. You can revoke your own session by logging out of your account.",
|
||||
"consent.title": "Your Rights & Consent",
|
||||
"consent.lead": "This community forum collects and processes your personal information.",
|
||||
@@ -161,7 +161,7 @@
|
||||
"consent.digest_off": "Unless explicitly changed in your user settings, this community does not send out email digests",
|
||||
"consent.received": "You have provided consent for this website to collect and process your information. No additional action is required.",
|
||||
"consent.not_received": "You have not provided consent for data collection and processing. At any time this website's administration may elect to delete your account in order to become compliant with the General Data Protection Regulation.",
|
||||
"consent.give": "Give consent",
|
||||
"consent.give": "Anna suostumus",
|
||||
"consent.right_of_access": "You have the Right of Access",
|
||||
"consent.right_of_access_description": "You have the right to access any data collected by this website upon request. You can retrieve a copy of this data by clicking the appropriate button below.",
|
||||
"consent.right_to_rectification": "You have the Right to Rectification",
|
||||
|
||||
@@ -2,21 +2,21 @@
|
||||
"latest_users": "Viimeisimmät käyttäjät",
|
||||
"top_posters": "Aktiivisimmat viestittelijät",
|
||||
"most_reputation": "Eniten mainetta",
|
||||
"most_flags": "Most Flags",
|
||||
"most_flags": "Eniten ",
|
||||
"search": "Hae",
|
||||
"enter_username": "Syötä käyttäjätunnus hakeaksesi",
|
||||
"load_more": "Lataa lisää",
|
||||
"users-found-search-took": "%1 käyttäjä(ä) löytyi! Haku kesti %2 sekuntia.",
|
||||
"filter-by": "Suodata",
|
||||
"online-only": "Vain verkossa olevat",
|
||||
"invite": "Invite",
|
||||
"prompt-email": "Emails:",
|
||||
"invitation-email-sent": "An invitation email has been sent to %1",
|
||||
"user_list": "User List",
|
||||
"recent_topics": "Recent Topics",
|
||||
"popular_topics": "Popular Topics",
|
||||
"unread_topics": "Unread Topics",
|
||||
"categories": "Categories",
|
||||
"tags": "Tunnisteet",
|
||||
"no-users-found": "No users found!"
|
||||
"invite": "Kutsu",
|
||||
"prompt-email": "Sähköpostit:",
|
||||
"invitation-email-sent": "Kutsusähköposti on lähetetty %1",
|
||||
"user_list": "Käyttäjälista",
|
||||
"recent_topics": "Viimeisimmät aiheet",
|
||||
"popular_topics": "Suositut aiheet",
|
||||
"unread_topics": "Lukemattomat aiheet",
|
||||
"categories": "Kategoriat",
|
||||
"tags": "Tagit",
|
||||
"no-users-found": "Ei käyttäjiä!"
|
||||
}
|
||||
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"lead": "Une liste des statistiques des résumés envoyés est affichée ci-dessous.",
|
||||
"disclaimer": "Veuillez noter que l'envoi par courrier électronique n'est pas garantie en raison de la nature de la technologie de messagerie. De nombreuses variables déterminent si un courrier électronique envoyé au serveur destinataire arrive dans la boîte de réception de l'utilisateur, y compris la réputation du serveur, les adresses IP figurant sur la liste noire et si DKIM / SPF / DMARC sont configurés.",
|
||||
"disclaimer": "Veuillez noter que l'envoi par courrier électronique n'est pas garantie en raison de la nature de la technologie de votre messagerie. De nombreuses variables déterminent si un courrier électronique envoyé au serveur destinataire arrive dans la boîte de réception de l'utilisateur, y compris la réputation du serveur, les adresses IP figurant sur la liste noire et si les DKIM / SPF / DMARC sont configurés.",
|
||||
"disclaimer-continued": "Un envoi réussie signifie que le message a été envoyé avec succès par NodeBB et acquitté par le serveur destinataire. Cela ne signifie pas que l'e-mail a atterri dans la boîte de réception. Pour de meilleurs résultats, nous vous recommandons d'utiliser un service de messagerie tiers, tel que <a href=\"https://sendgrid.com/why-sendgrid/\">SendGrid</a>.",
|
||||
|
||||
"user": "Utilisateur",
|
||||
"subscription": "Type d'abonnement",
|
||||
"last-delivery": "Dernier envoi réussi",
|
||||
"default": "Valeur par défaut",
|
||||
"default-help": "<em>La valeur par défaut</em> signifie que l'utilisateur n'a pas explicitement modifié ses paramètre pour les résumés; qui sont : "<strong>%1</strong>"",
|
||||
"default-help": "<em>La valeur par défaut</em> signifie que l'utilisateur n'a pas explicitement modifié ses paramètres pour les résumés; qui sont : "<strong>%1</strong>"",
|
||||
"resend": "Renvoi",
|
||||
"resend-all-confirm": "Êtes-vous sûr de vouloir exécuter manuellement ce résumé?",
|
||||
"resent-single": "Renvoi manuel du Résumé terminé",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Supprimer les utilisateurs",
|
||||
"purge": "Supprimer les utilisateurs ainsi que leurs contenus",
|
||||
"download-csv": "Télécharger au format CSV",
|
||||
"manage-groups": "Gérer les groupes",
|
||||
"add-group": "Ajouter un groupe",
|
||||
"invite": "Inviter",
|
||||
"new": "Nouvel utilisateur",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Horodatage",
|
||||
"timestamp.cut-off": "Date de coupure (en jours)",
|
||||
"timestamp.cut-off-help": "Les dates et heures seront affichées de façon relative (par exemple \"il y a 3 heures\", \"il y a 5 jours\"), et localisées. Après un certain point, le texte peut afficher la date emlle-même (par exemple 5 Novembre 2016, 15:30).<br /><em>(Défaut : <code>30</code>, ou un mois). Régler à 0 pour toujours afficher des dates, laisser vide pour toujours afficher des dates relatives.</em>",
|
||||
"timestamp.necro-threshold": "Seuil d'archivage (en jours)",
|
||||
"timestamp.necro-threshold-help": "Un message sera affiché entre les messages si le temps qui les sépare est plus long que le seuil d'archivage. (Par défaut: 7 ou une semaine). Définissez sur 0 pour désactiver.",
|
||||
"teaser": "Message d'aperçu",
|
||||
"teaser.last-post": "Dernier – Affiche le dernier message, ou celui d'origine, si il n'y a pas de réponse",
|
||||
"teaser.last-reply": "Dernier – Affiche le dernier message, ou \"Aucune réponse\" si il n'y a pas de réponse",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Valeur de pagination invalide. Celle-ci doit être comprise entre %1 et %2.",
|
||||
"username-taken": "Nom d’utilisateur déjà utilisé",
|
||||
"email-taken": "Email déjà utilisé",
|
||||
"email-not-confirmed": "Votre adresse email n'est pas confirmée, cliquez ici pour la valider.",
|
||||
"email-not-confirmed": "Vous ne pouvez pas publier de message tant que votre adresse e-mail n'est pas confirmée. Veuillez cliquer ici pour confirmer votre adresse e-mail.",
|
||||
"email-not-confirmed-chat": "Il ne vous est pas possible d'utiliser le chat tant que votre adresse email n'a pas été vérifiée. Veuillez cliquer ici pour confirmer votre adresse email.",
|
||||
"email-not-confirmed-email-sent": "Votre adresse email n'a pas encore été confirmée. Merci de vérifier l'email de confirmation dans votre boîte de réception.",
|
||||
"email-not-confirmed-email-sent": "Votre email n'a pas encore été confirmé, veuillez vérifier votre boîte mail. Vous ne pourrez pas poster ou discuter avant que votre email ne soit confirmé.",
|
||||
"no-email-to-confirm": "Ce forum requiert une vérification de votre adresse email. Veuillez cliquer ici pour entrer une adresse.",
|
||||
"email-confirm-failed": "Votre adresse email n'a pas pu être vérifiée. Veuillez ré-essayer plus tard.",
|
||||
"confirm-email-already-sent": "L'email de confirmation a déjà été envoyé. Veuillez attendre %1 minute(s) avant de redemander un nouvel envoi.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Delete User(s)",
|
||||
"purge": "Delete User(s) and Content",
|
||||
"download-csv": "Download CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invite",
|
||||
"new": "New User",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Valor de paxinación incorreto, ten que estar entre %1 e %2",
|
||||
"username-taken": "Nome de usuario en uso",
|
||||
"email-taken": "Enderezo electrónico en uso",
|
||||
"email-not-confirmed": "O teu correo aínda non está confirmado, por favor pica aquí para confirmalo.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "Non podes charlar ata que confirmes o teu correo, por favor pica aquí para confirmalo.",
|
||||
"email-not-confirmed-email-sent": "O teu enderezo electrónico está sen confirmar. Por favor, busca o correo de confirmación na túa bandexa de entrada.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "O foro require confirmación de enderezo electrónico, por favor pica aquí para engadir un.",
|
||||
"email-confirm-failed": "Non podemos confirmar o teu enderezo, por favor téntao de novo máis tarde.",
|
||||
"confirm-email-already-sent": "O correo de confirmación foi enviado, agarda %1 minute(s) para enviar outro.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "מחק משתמש(ים)",
|
||||
"purge": "מחק משתמש(ים) ומידע",
|
||||
"download-csv": "טען קובץ משתמשים",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "הזמן",
|
||||
"new": "משתמש חדש",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "ערך דף לא חוקי, חייב להיות לפחות %1 ולא מעל %2",
|
||||
"username-taken": "שם משתמש תפוס",
|
||||
"email-taken": "כתובת אימייל תפוסה",
|
||||
"email-not-confirmed": "כתובת המייל שלך עוד לא אושרה, לחץ כאן על-מנת לאשר את המייל שלך.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "אין באפשרותך לשוחח עד שהדוא\"ל שלך יאושר, אנא לחץ כאן כדי לאשר את הדוא\"ל שלך.",
|
||||
"email-not-confirmed-email-sent": "האימייל עדין לא אושר. אנא בדוק בתיבת הדואר בנוגע לאישור האימייל שנשלח לך על ידנו.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "פורום זה דורש אישור בדוא\"ל, אנא לחץ כאן כדי להכניס לדואר אלקטרוני",
|
||||
"email-confirm-failed": "לא הצלחנו לאשר את הדוא\"ל שלך, תנסה שוב אחר כך",
|
||||
"confirm-email-already-sent": "מייל האישור כבר נשלח, אנא המתן %1 דקות כדי לשלוח מייל נוסף.",
|
||||
|
||||
@@ -25,8 +25,8 @@
|
||||
"profile_views": "צפיות בפרופיל",
|
||||
"reputation": "מוניטין",
|
||||
"bookmarks": "מועדפים",
|
||||
"watched_categories": "Watched categories",
|
||||
"change_all": "Change All",
|
||||
"watched_categories": "קטגוריות במעקב",
|
||||
"change_all": "שנה הכל",
|
||||
"watched": "נצפה",
|
||||
"ignored": "התעלם",
|
||||
"default-category-watch-state": "Default category watch state",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Obriši korisnika",
|
||||
"purge": "Obriši korisnike i sadržaj",
|
||||
"download-csv": "Preuzmi CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Pozivnica",
|
||||
"new": "Novi korisnik",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Vremenska oznaka",
|
||||
"timestamp.cut-off": "Datum prekida (u danima)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Zadirkivač objava",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Netočno numeriranje stranica, mora biti %1 ili %2",
|
||||
"username-taken": "Korisničko ime je zauzeto",
|
||||
"email-taken": "Email je zauzet",
|
||||
"email-not-confirmed": "Vaš email još nije potvrđen, kliknite ovdje da bi potvrdili svoj email.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "Nemožete razgovarati dok Vaš email nije potvrđen, kliknite ovdje da bi potvrdili svoj email.",
|
||||
"email-not-confirmed-email-sent": "Vaš email još nije potvrđen, provjerite svoj sandučić za potvrdni email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "Ovaj forum zahtijeva potvrdu emaila, kliknite ovdje da bi potvrdili svoj email.",
|
||||
"email-confirm-failed": "Nismo u mogućnosti potvrditi Vaš email, pokušajte ponovno kasnije.",
|
||||
"confirm-email-already-sent": "Potvrdni email je poslan, počekajte %1 minuta za ponovni pokušaj.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Felhasználó(k) törlése",
|
||||
"purge": "Felhasználó(k) és tartalmai(k) törlése",
|
||||
"download-csv": "CSV letöltése",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Meghívás",
|
||||
"new": "Új felhasználó",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||
"username-taken": "Foglalt felhasználónév",
|
||||
"email-taken": "Foglalt e-mail",
|
||||
"email-not-confirmed": "Az e-mail címed még nem lett ellenőrizve, kérlek kattints ide az e-mail címed ellenőrzéséhez!",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "Ez a fórum e-mail megerősítést kíván, kérlek kattints ide egy cím beírásához",
|
||||
"email-confirm-failed": "Nem tudtuk ellenőrizni az e-mail címedet, kérlek próbálkozz később.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Delete User(s)",
|
||||
"purge": "Delete User(s) and Content",
|
||||
"download-csv": "Download CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invite",
|
||||
"new": "New User",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Nomor pagination tidak valid, minimal %1 dan maksimal %2",
|
||||
"username-taken": "Username sudah terdaftar",
|
||||
"email-taken": "Email sudah terdaftar",
|
||||
"email-not-confirmed": "Email kamu belum dikonfirmasi, klik disini untuk mengkonfirmasi email.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "Rimuovi Utente(i)",
|
||||
"purge": "Rimuovi Utente(i) e Contenuto",
|
||||
"download-csv": "Scarica CSV",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "Invito",
|
||||
"new": "Nuovo utente",
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"manage/groups": "Gruppi",
|
||||
"manage/ip-blacklist": "Lista degli IP bloccati",
|
||||
"manage/uploads": "Uploads",
|
||||
"manage/digest": "Digests",
|
||||
"manage/digest": "Riepilogo",
|
||||
|
||||
"section-settings": "Impostazioni",
|
||||
"settings/general": "Generale",
|
||||
|
||||
@@ -1,45 +1,47 @@
|
||||
{
|
||||
"sorting": "Post Sorting",
|
||||
"sorting.post-default": "Default Post Sorting",
|
||||
"sorting.oldest-to-newest": "Oldest to Newest",
|
||||
"sorting.newest-to-oldest": "Newest to Oldest",
|
||||
"sorting.most-votes": "Most Votes",
|
||||
"sorting.most-posts": "Most Posts",
|
||||
"sorting.topic-default": "Default Topic Sorting",
|
||||
"length": "Post Length",
|
||||
"post-queue": "Post Queue",
|
||||
"sorting": "Ordinamento Post",
|
||||
"sorting.post-default": "Ordinamento Post Predefinito",
|
||||
"sorting.oldest-to-newest": "Dal meno recente al più recente",
|
||||
"sorting.newest-to-oldest": "Dal più recente al meno recente",
|
||||
"sorting.most-votes": "Più Voti",
|
||||
"sorting.most-posts": "Più Post",
|
||||
"sorting.topic-default": "Ordinamento Discussione Predefinito",
|
||||
"length": "Lunghezza Post",
|
||||
"post-queue": "Coda Post",
|
||||
"restrictions": "Restrizioni pubblicazione",
|
||||
"restrictions-new": "New User Restrictions",
|
||||
"restrictions-new": "Restrizioni Nuovo Utente",
|
||||
"restrictions.post-queue": "Abilita post in attesa",
|
||||
"restrictions.post-queue-rep-threshold": "Reputation required to bypass post queue",
|
||||
"restrictions.groups-exempt-from-post-queue": "Select groups that should be exempt from the post queue",
|
||||
"restrictions-new.post-queue": "Enable new user restrictions",
|
||||
"restrictions.post-queue-help": "Enabling post queue will put the posts of new users in a queue for approval",
|
||||
"restrictions-new.post-queue-help": "Enabling new user restrictions will set restrictions on posts created by new users",
|
||||
"restrictions.seconds-between": "Number of seconds between posts",
|
||||
"restrictions.seconds-between-new": "Seconds between posts for new users",
|
||||
"restrictions.rep-threshold": "Reputation threshold before these restrictions are lifted",
|
||||
"restrictions.seconds-before-new": "Seconds before a new user can make their first post",
|
||||
"restrictions.seconds-edit-after": "Number of seconds a post remains editable (set to 0 to disable)",
|
||||
"restrictions.seconds-delete-after": "Number of seconds a post remains deletable (set to 0 to disable)",
|
||||
"restrictions.replies-no-delete": "Number of replies after users are disallowed to delete their own topics (set to 0 to disable)",
|
||||
"restrictions.min-title-length": "Minimum Title Length",
|
||||
"restrictions.max-title-length": "Maximum Title Length",
|
||||
"restrictions.min-post-length": "Minimum Post Length",
|
||||
"restrictions.max-post-length": "Maximum Post Length",
|
||||
"restrictions.post-queue-rep-threshold": "Reputazione necessaria a superare la coda dei post",
|
||||
"restrictions.groups-exempt-from-post-queue": "Seleziona i gruppi che dovrebbero essere esclusi dalla coda dei post",
|
||||
"restrictions-new.post-queue": "Abilita le restrizioni per i nuovi utenti",
|
||||
"restrictions.post-queue-help": "Abilitando la coda dei post, i post dei nuovi utenti, verranno messi in coda per l'approvazione",
|
||||
"restrictions-new.post-queue-help": "Abilitando le restrizioni per i nuovi utenti verranno impostate le restrizioni sui post dei nuovi utenti",
|
||||
"restrictions.seconds-between": "Numero di secondi tra i post",
|
||||
"restrictions.seconds-between-new": "Numero di secondi tra i post per i nuovi utenti",
|
||||
"restrictions.rep-threshold": "Soglia di reputazione dopo la quale queste restrizioni vengono rimosse",
|
||||
"restrictions.seconds-before-new": "Secondi dopo i quali un nuovo utente può creare il suo primo post",
|
||||
"restrictions.seconds-edit-after": "Numero di secondi per i quali il post rimane modificabile (imposta a 0 per disabilitare)",
|
||||
"restrictions.seconds-delete-after": "Numero di secondi per i quali il post rimane cancellabile (imposta a 0 per disabilitare)",
|
||||
"restrictions.replies-no-delete": "Numero di risposte dopo le quali l'utente non può più cancellare le proprie discussioni (imposta a 0 per disabilitare)",
|
||||
"restrictions.min-title-length": "Lunghezza Minima Titolo",
|
||||
"restrictions.max-title-length": "Lunghezza Massima Titolo",
|
||||
"restrictions.min-post-length": "Lunghezza Minima Post",
|
||||
"restrictions.max-post-length": "Lunghezza Massima Post",
|
||||
"restrictions.days-until-stale": "Days until topic is considered stale",
|
||||
"restrictions.stale-help": "If a topic is considered \"stale\", then a warning will be shown to users who attempt to reply to that topic.",
|
||||
"timestamp": "Timestamp",
|
||||
"timestamp.cut-off": "Date cut-off (in days)",
|
||||
"timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).<br /><em>(Default: <code>30</code>, or one month). Set to 0 to always display dates, leave blank to always display relative times.</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "Teaser Post",
|
||||
"teaser.last-post": "Last – Show the latest post, including the original post, if no replies",
|
||||
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
|
||||
"teaser.first": "First",
|
||||
"teaser.first": "Primo",
|
||||
"unread": "Unread Settings",
|
||||
"unread.cutoff": "Unread cutoff days",
|
||||
"unread.min-track-last": "Minimum posts in topic before tracking last read",
|
||||
"recent": "Recent Settings",
|
||||
"recent": "Impostazioni Recenti",
|
||||
"recent.categoryFilter.disable": "Disable filtering of topics in ignored categories on the /recent page",
|
||||
"signature": "Signature Settings",
|
||||
"signature.disable": "Disable signatures",
|
||||
|
||||
@@ -1,43 +1,43 @@
|
||||
{
|
||||
"authentication": "Autenticazione",
|
||||
"require-email-confirmation": "Richiesta Email di Conferma",
|
||||
"email-confirm-interval": "User may not resend a confirmation email until",
|
||||
"email-confirm-interval": "L'utente non può mandare una nuova email di conferma fino a",
|
||||
"email-confirm-email2": "minuti trascorsi",
|
||||
"allow-login-with": "Consenti l'accesso con",
|
||||
"allow-login-with.username-email": "Username o Email",
|
||||
"allow-login-with.username": "Solo Username",
|
||||
"allow-login-with.email": "Solo Email",
|
||||
"account-settings": "Impostazioni Account",
|
||||
"gdpr_enabled": "Enable GDPR consent collection",
|
||||
"gdpr_enabled_help": "When enabled, all new registrants will be required to explicitly give consent for data collection and usage under the <a href=\"https://eugdpr.org/the-regulation/gdpr-faqs/\">General Data Protection Regulation (GDPR)</a>. <strong>Note</strong>: Enabling GDPR does not force pre-existing users to provide consent. To do so, you will need to install the GDPR plugin.",
|
||||
"gdpr_enabled": "Abilita la raccolta di consensi GDPR",
|
||||
"gdpr_enabled_help": "Quando abilitato, tutti i soggetti in fase di registrazione dovranno dare il consenso esplicito per l'acquisizione e l'uso dei dati secondo la <a href=\"https://eugdpr.org/the-regulation/gdpr-faqs/\">General Data Protection Regulation (GDPR)</a>. <strong>Nota</strong>: Attivando la GDPR gli utenti pre-esistenti non verranno forzati a dare il consenso. Per fare ciò, dovrai installare il plugin GDPR.",
|
||||
"disable-username-changes": "Disabilita il cambio dello username",
|
||||
"disable-email-changes": "Disabilita il cambio della mail",
|
||||
"disable-email-changes": "Disabilita il cambio di email",
|
||||
"disable-password-changes": "Disabilita cambio password",
|
||||
"allow-account-deletion": "Abilita cancellazione dell'account",
|
||||
"hide-fullname": "Nascondi nome completo agli utenti",
|
||||
"hide-email": "Hide email from users",
|
||||
"hide-email": "Nascondi l'email dagli utenti",
|
||||
"themes": "Temi",
|
||||
"disable-user-skins": "Prevent users from choosing a custom skin",
|
||||
"disable-user-skins": "Non permettere agli utenti di scegliere una skin personalizzata",
|
||||
"account-protection": "Protezione Account",
|
||||
"admin-relogin-duration": "Durata di riaccesso dell'amministratore (minuti)",
|
||||
"admin-relogin-duration-help": "Dopo un determinato periodo di tempo l'accesso alla sezione amministratore richiederà un nuovo accesso, impostandolo a 0 si disabilita",
|
||||
"login-attempts": "Tentativi di accesso all'ora",
|
||||
"login-attempts-help": "Se il numero di tentativi di accesso a un account supera questa soglia, l'account sarà bloccato per un periodo di tempo preconfigurato.",
|
||||
"lockout-duration": "Account Lockout Duration (minutes)",
|
||||
"lockout-duration": "Account Lockout Duration (minuti)",
|
||||
"login-days": "Giorni per ricordare le sessioni di accesso utente",
|
||||
"password-expiry-days": "Forza il reset della password a un numero di giorni",
|
||||
"session-time": "Tempo di Sessione",
|
||||
"session-time-days": "Giorni",
|
||||
"session-time-seconds": "Secondi",
|
||||
"session-time-help": "These values are used to govern how long a user stays logged in when they check "Remember Me" on login. Note that only one of these values will be used. If there is no <i>seconds</i> value we fall back to <i>days</i>. If there is no <i>days</i> value we default to <i>14 days</i>.",
|
||||
"session-time-help": "Questi valori vengono utilizzati per definire per quanto tempo un utente rimane loggato quando spuntano "Remember Me" al login. Nota che solo uno di questi valori verrà utilizzato. Se non ci sono valori per<i> secondi</i> si passerà ai <i>giorni</i>. Se non ci sono valori per i<i>giorni</i> si passerà al valore di dafault di <i>14 giorni</i>.",
|
||||
"online-cutoff": "Minuti dopo per cui l'utente è considerato inattivo",
|
||||
"online-cutoff-help": "If user performs no actions for this duration, they are considered inactive and they do not receive realtime updates.",
|
||||
"online-cutoff-help": "Se l'utente non esegue alcuna azione per questa durata di tempo, vengono considerati inattivi e non ricevono aggiornamenti in tempo reale.",
|
||||
"registration": "Registrazione Utente",
|
||||
"registration-type": "Tipo Registrazione",
|
||||
"registration-approval-type": "Registration Approval Type",
|
||||
"registration-approval-type": "Tipo di Approvazione registrazione",
|
||||
"registration-type.normal": "Normale",
|
||||
"registration-type.admin-approval": "Admin Approval",
|
||||
"registration-type.admin-approval-ip": "Admin Approval for IPs",
|
||||
"registration-type.admin-approval": "Approvazione Amministratore",
|
||||
"registration-type.admin-approval-ip": "Approvazione Amministratore per gli IP",
|
||||
"registration-type.invite-only": "Solo Invito",
|
||||
"registration-type.admin-invite-only": "Solo invito per Amministratori",
|
||||
"registration-type.disabled": "Niente registrazione",
|
||||
@@ -52,26 +52,26 @@
|
||||
"max-username-length": "Lunghezza Massima Username",
|
||||
"min-password-length": "Lunghezza Minima Password",
|
||||
"min-password-strength": "Lunghezza Minima Password",
|
||||
"max-about-me-length": "Maximum About Me Length",
|
||||
"max-about-me-length": "Massima Lunghezza Riguardo a Me",
|
||||
"terms-of-use": "Termini di Utilizzo del Forum <small>(Lasciare vuoto per disabilitare)</small>",
|
||||
"user-search": "Ricerca Utente",
|
||||
"user-search-results-per-page": "Numero di risultati per visualizzazioni",
|
||||
"default-user-settings": "Default User Settings",
|
||||
"show-email": "Show email",
|
||||
"default-user-settings": "Impostazioni Utente Predefinite",
|
||||
"show-email": "Mostra email ",
|
||||
"show-fullname": "Mostra nome completo",
|
||||
"restrict-chat": "Only allow chat messages from users I follow",
|
||||
"outgoing-new-tab": "Open outgoing links in new tab",
|
||||
"restrict-chat": "Permetti messaggi in chat solo da utenti che seguo",
|
||||
"outgoing-new-tab": "Apri link esterni in una nuova scheda",
|
||||
"topic-search": "Abilita ricerca nella Discussione",
|
||||
"digest-freq": "Iscriviti al Riepilogo",
|
||||
"digest-freq.off": "Off",
|
||||
"digest-freq.daily": "Daily",
|
||||
"digest-freq.weekly": "Weekly",
|
||||
"digest-freq.monthly": "Monthly",
|
||||
"email-chat-notifs": "Send an email if a new chat message arrives and I am not online",
|
||||
"email-post-notif": "Send an email when replies are made to topics I am subscribed to",
|
||||
"follow-created-topics": "Follow topics you create",
|
||||
"follow-replied-topics": "Follow topics that you reply to",
|
||||
"default-notification-settings": "Default notification settings",
|
||||
"digest-freq.daily": "Quotidiano",
|
||||
"digest-freq.weekly": "Settimanale",
|
||||
"digest-freq.monthly": "Mensile",
|
||||
"email-chat-notifs": "Manda una email se arriva un nuovo messaggio di chat e non sono online",
|
||||
"email-post-notif": "Manda una email quando ci sono nuove risposte a discussioni a cui sono iscritto",
|
||||
"follow-created-topics": "Segui le discussioni che tu crei",
|
||||
"follow-replied-topics": "Segui discussioni a cui rispondi tu",
|
||||
"default-notification-settings": "Impostazioni di notifica predefinite",
|
||||
"categoryWatchState": "Default category watch state",
|
||||
"categoryWatchState.watching": "Watching",
|
||||
"categoryWatchState.notwatching": "Not Watching",
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"invalid-pagination-value": "Valore di impaginazione non valido, deve essere almeno %1 ed al massimo %2",
|
||||
"username-taken": "Nome utente già esistente",
|
||||
"email-taken": "Email già esistente",
|
||||
"email-not-confirmed": "La tua email non è stata ancora confermata, clicca qui per confermare la tua email.",
|
||||
"email-not-confirmed": "You are unable to post until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-chat": "Non puoi chattare finché non confermi la tua email, per favore clicca qui per confermare la tua email.",
|
||||
"email-not-confirmed-email-sent": "La tua email non è ancora stata confermata, per favore controlla la tua casella di posta per l'email di conferma.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email. You won't be able to post or chat until your email is confirmed.",
|
||||
"no-email-to-confirm": "Questo forum richiede una conferma via email, clicca qui per inserire un'email",
|
||||
"email-confirm-failed": "Non abbiamo potuto confermare la tua email, per favore riprovaci più tardi.",
|
||||
"confirm-email-already-sent": "Email di conferma già inviata, per favore attendere %1 minuto(i) per inviarne un'altra.",
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
"repeat_password": "Conferma Password",
|
||||
"enter_email": "Per favore inserisci il tuo <strong>indirizzo email</strong> e ti invieremo un'email con le istruzioni per resettare il tuo account.",
|
||||
"enter_email_address": "Inserisci l'Indirizzo Email",
|
||||
"password_reset_sent": "If the specified address corresponds to an existing user account, a password reset email was sent. Please note that only one email will be sent per minute.",
|
||||
"password_reset_sent": "Se l'indirizzo specificato corrisponde ad un account utente esistente, è stata inviata un'email di reset della password. Si prega di notare che sarà inviata una sola email al minuto.",
|
||||
"invalid_email": "Email invalida / L'email non esiste!",
|
||||
"password_too_short": "La password inserita è troppo corta, per favore inserisci una password differente.",
|
||||
"passwords_do_not_match": "Le due password che hai inserito non corrispondono.",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"reputation": "Reputazione",
|
||||
"bookmarks": "Preferiti",
|
||||
"watched_categories": "Categorie seguite",
|
||||
"change_all": "Change All",
|
||||
"change_all": "Cambia Tutto",
|
||||
"watched": "Seguiti",
|
||||
"ignored": "Ignorati",
|
||||
"default-category-watch-state": "Stato di controllo della categoria predefinita",
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
"delete": "ユーサー(s)を削除します",
|
||||
"purge": "ユーザー(s)とコンテンツを削除する",
|
||||
"download-csv": "CSVでダウンロード",
|
||||
"manage-groups": "Manage Groups",
|
||||
"add-group": "Add Group",
|
||||
"invite": "招待",
|
||||
"new": "新しいユーザー",
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
"timestamp": "タイムスタンプ",
|
||||
"timestamp.cut-off": "日付のカットオフ(日数)",
|
||||
"timestamp.cut-off-help": "日付&時間は相対的な方法で表示されます(例:「3時間前」/「5日前」)。そしてさまざまな地域にローカライズされています。\n\\t\\t\\t\\t\\t言語。特定のポイントの後、このテキストは、ローカライズされた日付自体を表示するように切り替えることができます。\n\\t\\t\\t\\t\\t(例:2016年11月5日15:30)<br /><em>(デフォルト:<code>30 </code>、または1か月)。日付を常に表示するには0に設定し、常に相対時間を表示するには空白のままにします。</em>",
|
||||
"timestamp.necro-threshold": "Necro Threshold (in days)",
|
||||
"timestamp.necro-threshold-help": "A message will be shown between posts if the time between them is longer than the necro threshold. (Default: <code>7</code>, or one week). Set to 0 to disable.</em>",
|
||||
"teaser": "ティーザーの投稿",
|
||||
"teaser.last-post": "最後&ndash;返信がない場合は、元の投稿を含む最新の投稿を表示",
|
||||
"teaser.last-reply": "最後&ndash;最新の返信を表示するか、返信がない場合は「返信なし」のプレースホルダを表示する",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user