Merge commit '9855429445d1856a28b3f845e4bad788f5860914' into v1.18.x

v1.18.x
Misty (Bot)
commit eff03e4b57

@ -10,7 +10,7 @@ checks:
threshold: 500
method-lines:
config:
threshold: 50
threshold: 75
method-complexity:
config:
threshold: 10

@ -0,0 +1,51 @@
name: Run Docker
# Controls when the workflow will run
on:
push:
branches:
- 'master'
- 'v*.x'
tags:
- 'v*'
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: nodebb/docker
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest
- name: Build and push Docker images
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}

@ -1,3 +1,46 @@
#### v1.18.2 (2021-09-08)
##### Chores
* **deps:** update commitlint monorepo to v13 (87ba768f)
* incrementing version number - v1.18.1 (f8f80e4f)
* update changelog for v1.18.1 (0713475d)
##### New Features
* a slightly less ugly rewards panel (bf0c02a7)
##### Bug Fixes
* dashboard graph controls (a7855c4c)
* #9767 ACP change group icon fix (580a016b)
* #9781 (#9782) (0ce4b87d)
* replace logic in isPrivilegedOrSelfAndPasswordMatch to use privileges.users.canEdit (856ba78a)
* handle missing uid in deprecated socket call (cdaea611)
* use privileges.users.canEdit for image upload priv check (e33e046f)
* errors from registerComplete (a48bbdbf)
* simplify logic for fullname and email blanking in user retrieval (getUserDataByUserSlug) (60de0844)
* lint (1e2bda13)
* manifest error (488f0978)
* #9772, regression from https://github.com/NodeBB/NodeBB/commit/70a04bc10577e90e28d66a647d38cafc3307a285 (72710b80)
* push back some deprecations, remove deprecated stuff scheduled for v1.18.0 (dd4e66e2)
* deprecate userData.showHidden as it is functionally equivalent to userData.canEdit (4ac701d7)
* focus on save button on plugin activation (46e5e17d)
* #9773, fire hooks properly for priv changes (#9774) (6869920e)
* **deps:**
* update dependency sharp to v0.29.1 (ac6cd02f)
* update dependency nodebb-plugin-dbsearch to v5.0.3 (338f90fc)
* update dependency nodebb-theme-vanilla to v12.1.3 (0b3ea5ad)
* update dependency nodebb-theme-persona to v11.2.5 (57e54d55)
##### Refactors
* deprecate picture update socket call, new API routes for picture update (0a41741b)
##### Tests
* added test for external image via new change picture API (8cbad61e)
#### v1.18.1 (2021-09-03)
##### Chores

@ -32,7 +32,7 @@
"ace-builds": "^1.4.12",
"archiver": "^5.2.0",
"async": "^3.2.0",
"autoprefixer": "10.3.4",
"autoprefixer": "10.3.5",
"bcryptjs": "2.4.3",
"benchpressjs": "2.4.3",
"body-parser": "^1.19.0",
@ -46,7 +46,7 @@
"compare-versions": "3.6.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongo": "4.5.0",
"connect-mongo": "4.6.0",
"connect-multiparty": "^2.2.0",
"connect-pg-simple": "^6.2.1",
"connect-redis": "6.0.0",
@ -78,13 +78,13 @@
"material-design-lite": "^1.3.0",
"mime": "^2.5.2",
"mkdirp": "^1.0.4",
"mongodb": "3.7.0",
"mongodb": "3.7.1",
"morgan": "^1.10.0",
"mousetrap": "^1.6.5",
"multiparty": "4.2.2",
"@nodebb/bootswatch": "3.4.2",
"nconf": "^0.11.2",
"nodebb-plugin-composer-default": "7.0.2",
"nodebb-plugin-composer-default": "7.0.7",
"nodebb-plugin-dbsearch": "5.0.3",
"nodebb-plugin-emoji": "^3.5.0",
"nodebb-plugin-emoji-android": "2.0.5",
@ -93,8 +93,8 @@
"nodebb-plugin-spam-be-gone": "0.7.9",
"nodebb-rewards-essentials": "0.1.5",
"nodebb-theme-lavender": "5.2.1",
"nodebb-theme-persona": "11.2.5",
"nodebb-theme-slick": "1.4.12",
"nodebb-theme-persona": "11.2.8",
"nodebb-theme-slick": "1.4.13",
"nodebb-theme-vanilla": "12.1.3",
"nodebb-widget-essentials": "5.0.4",
"nodemailer": "^6.5.0",
@ -104,7 +104,7 @@
"passport-local": "1.0.0",
"pg": "^8.7.1",
"pg-cursor": "^2.7.1",
"postcss": "8.3.6",
"postcss": "8.3.7",
"postcss-clean": "1.2.0",
"prompt": "^1.1.0",
"ioredis": "4.27.9",

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Време за разпращане",
"subscriptions.hour-help": "Моля, въведете число, представляващо часа, в който да се разпращат е-писма с подготвеното резюме (напр.. <code>0</code> за полунощ, <code>17</code> за 5 следобед). Имайте предвид, че този час е според часовата зона на сървъра и може да не съвпада с часовника на системата Ви.<br /> Приблизителното време на сървъра е: <span id=\"serverTime\"></span><br /> Изпращането на следващия ежедневен бюлетин е планирано за <span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Премахване на изображенията от известията по е-поща",
"require-email-address": "Новите потребители задължително трябва да предоставят е-поща",
"require-email-address-warning": "По подразбиране потребителите могат да не въвеждат адрес на е-поща. Ако включите това, те задължително ще трябва да предоставят е-поща, за да могат да се регистрират. <strong>Това не означава, че потребителят ще въведе съществуваща е-поща, нито че тя ще е негова.</strong>",
"include-unverified-emails": "Изпращане на е-писма към получатели, които не са потвърдили изрично е-пощата си",
"include-unverified-warning": "За потребителите, които имат свързана е-поща с регистрацията си, тя се смята за потвърдена. Но има ситуации, в които това не е така (например при ползване на регистрация от друга система, но и в други случаи), <strong>Включете тази настройка на собствен риск</strong> &ndash; изпращането на е-писма към непотвърдени адреси може да нарушава определени местни закони против нежеланата поща."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Hodina přehledu",
"subscriptions.hour-help": "Zadejte číslo odpovídající hodině, kdy mají být odeslány přehledové e-maily (tj. <code>0</code> pro půlnoc, <code>17</code> pro 5:00pm). Mějte na paměti, že tato hodina závisí na hodinách samotného serveru a nemusí tak souhlasit se systémovými hodinami. <br />Přibližný čas serveru je: <span id=\"serverTime\"></span>.<br />Další odeslání přehledů je plánováno na <span id=\"nextDigestTime\"></span>.",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Sende Zeit",
"subscriptions.hour-help": "Bitte geben Sie eine Nummer ein, welche die Stunde repräsentiert zu welcher geplante Emails versandt werden sollen (z.B. <code>0</code> für Mitternacht, <code>17</code> für 5 Uhr Nachmittags). Beachten Sie, dass die Zeit auf der Serverzeit basiert und daher nicht umbedingt mit ihrer Systemzeit übereinstimmen muss.<br>Die ungefähre Serverzeit ist: <span id=\"serverTime\"></span><br>Die nächste tägliche Sendung ist um <span id=\"nextDigestTime\"></span> geplant",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Heure d'envoi",
"subscriptions.hour-help": "Veuillez entrer un nombre représentant l'heure à laquelle envoyer les lettres d'activités (c'est à dire <code>0</code> pour minuit, <code>17</code> pour 5:00 pm). Gardez à l'esprit qu'il s'agit de l'heure du serveur, et peut ne pas correspondre à votre heure locale.<br /> L'heure du serveur est : <span id=\"serverTime\"></span><br /> La prochaine lettre d'activités sera envoyée à <span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Supprimer les images des notifications par e-mail",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Envoyer des mails aux destinataires qui n'ont pas explicitement confirmé leurs mails",
"include-unverified-warning": "Par défaut, les utilisateurs dont les mails sont associés à leur compte ont déjà été vérifiés, mais il existe des situations où ce n'est pas le cas (par exemple, les connexions SSO, les utilisateurs bénéficiant de droits acquis, etc.). <strong>Activez ce paramètre à vos risques et périls </strong>&ndash; l'envoi de mails à des adresses non vérifiées peut constituer une violation des lois anti-spam régionales."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.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>",
"notifications.remove-images": "הסר תמונות מהודעות דוא\"ל",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Pregled Sati.",
"subscriptions.hour-help": "Unesite broj koji pretstavlja vrijeme kada će se poslati pregled mailom (npr. <code>0</code> za ponoć, <code>17</code>za 5 popodne).Imajte na umu da to vrijeme predstavlja vrijeme servera te ne mora predstavljati vrijeme na Vašem sistemu. Vrijeme servera je: <span id=\"serverTime\"></span><br /> Sljedeći pregled će biti poslan <span id=\"nextDigestTime\"></span> .",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Összefoglalások küldési időpontja",
"subscriptions.hour-help": "Kérjük adj meg egy számot, ami azt az órát jelenti, amikor az ütemezett összefoglalókat kiküldi a rendszer (<code>0</code> az éjfél, <code>17</code> a délután 5 óra). Tartsd észben, hogy ez az időpont a szerver idejét veszi figyelembe és előfordulhat, hogy nem egyezik meg a Te gépeden jelzett idővel. A becsült szerver idő jelenleg: <span id=\"serverTime\"></span><br /> A következő napi összefoglalás tervezett kiküldési ideje <span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Képek eltávolítása az email értesítésekből",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Orario riepilogo",
"subscriptions.hour-help": "Si prega di inserire un numero che rappresenta l'ora per l'invio dell'email programmate (es. <code>0</code>per mezzanotte, <code>17</code>per le 17: 00). Tieni presente che questa è l'ora secondo il server stesso, e potrebbe non combaciare esattamente al tuo orologio di sistema.<br /> L'orario approssimativo del server è: <span id=\"serverTime\"></span> <br /> La prossima trasmissione giornaliera è prevista alle <span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Rimuovi le immagini dalle notifiche email",
"require-email-address": "Richiedere ai nuovi utenti di specificare un indirizzo email",
"require-email-address-warning": "Per impostazione predefinita, gli utenti possono rinunciare a inserire un indirizzo email. Abilitare questa opzione significa che devono inserire un indirizzo email per procedere con la registrazione. <strong>Non assicura che l'utente inserisca un indirizzo email reale, e nemmeno un indirizzo che possiede.</strong>",
"include-unverified-emails": "Invia email a destinatari che non hanno confermato esplicitamente le loro email",
"include-unverified-warning": "Per impostazione predefinita, gli utenti con email associate al loro account sono già stati verificati, ma ci sono situazioni in cui ciò non è vero (ad esempio accessi SSO, vecchi utenti, ecc.). <strong>Abilita questa impostazione a tuo rischio e pericolo</strong> &ndash; l'invio di email a indirizzi non verificati può essere una violazione delle leggi regionali anti-spam."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "ダイジェストアワー",
"subscriptions.hour-help": "スケジュールされたメールのダイジェストを送信する時間を表す数字を入力してください(深夜は<code>0</ code>、午後5:00は<code>17</code>)これはサーバー自体に基づく時間であり、システムの時計と正確に一致しない場合があります。<span id=\"serverTime\"></ span> <br />次の日のダイジェストは<span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "포럼 메일 발송 시간",
"subscriptions.hour-help": "정기 포럼 메일을 보낼 시간을 입력해주세요. (예: <code>0</code>은 자정, <code>17</code>은 오후 5시 입니다. 이 시간은 서버 시간 기준이며, 사용자의 시스템 시간과 일치하지 않을 수 있습니다. <br />서버 시간은 <span id=\"serverTime\"></span> 입니다. <br /> 다음 정기 포럼 메일은 <span id=\"nextDigestTime\"></span> 에 발송 예정입니다.",
"notifications.remove-images": "이메일 알림에서 이미지 제거",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "전자 메일을 명시적으로 확인하지 않은 수신자에게 전자 메일 보내기",
"include-unverified-warning": "기본적으로 계정과 연결된 전자 메일이 있는 사용자는 이미 확인되었지만 그렇지 않은 경우가 있습니다(예: SSO 로그인, 약관으로부터 제외된 사용자 등). <strong>사용자가 위험을 감수하고 이 설정을 사용하도록 설정합니다.</strong> &ndash; 확인되지 않은 주소로 이메일을 보내는 것은 지역별 스팸 방지법을 위반하는 것일 수 있습니다."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Kopsavilkumu nosūtīšanas stunda",
"subscriptions.hour-help": "Ievadīt skaitli, kas norāda stundu, kurā nosūtītu e-pasta rakstu apkopojumu (piemēram, <code>0</code> nozīmē pusnakts, <code>17</code> nozīmē plkst.1700). Paturēt prātā, ka šī ir stunda servera laikā, un tā var neatbilst Tavam pulkstenim. Aptuvens servera laiks ir: <span id=\"serverTime\"></span><br />Nākamais ikdienas apkopojums tiks nosūtīts <span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Uur van Digest",
"subscriptions.hour-help": "Voer het nummer in dat het uur representeerd waarop scheduled email digests worden verstuurd (bv. <code>0</code> voor middernacht, <code>17</code> voor 17:00). Neem er s.v.p. notie van dat dit het uur is van de server self, dit hoeft niet exact overeen te komen met de klok van uw systeem.<br /> De tijd op de server is bij benadering: <span id=\"serverTime\"></span><br /> De volgende dagelijkse digest staat gepland om <span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Godzina podsumowania",
"subscriptions.hour-help": "Wprowadź liczbę odpowiadającą godzinie, o której mają być wysyłane regularne e-maile z podsumowaniem (np. <code>0</code> dla północy lub <code>17</code> dla 17:00). Pamiętaj, że godzina jest godziną serwera i nie musi zgadzać się z czasem lokalnym administratora. Przybliżony czas serwera to: <span id=\"serverTime\"></span><br /> Wysłanie kolejnego e-maila z podsumowaniem zaplanowano na <span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Hora de Envio dos Resumos",
"subscriptions.hour-help": "Por favor, entre um número representando a hora para enviar os resumos agendados via e-mail (por exemplo: <code>0</code> para meia-noite, <code>17</code> para 5:00pm). Tenha em mente que esta é a hora de acordo com o servidor e pode não combinar exatamente com o relógio do seu sistema.<br /> O horário aproximado do servidor é: <span id=\"serverTime\"></span><br /> O próximo resumo diário está agendado para ser enviado <span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Remover imagens de notificações por e-mail",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Hora do Resumo",
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Час отправки",
"subscriptions.hour-help": "Введите число, соответствующее номеру часа (например, <code>0</code> для полуночи, <code>17</code> для 17:00). Имейте в виду, что время определяется по часовому поясу сервера.<br /> Текущее время сервера: <span id=\"serverTime\"></span><br /> Следующая рассылка запланирована на <span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Удалить изображения из уведомлений по электронной почте",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -1,7 +1,7 @@
{
"alert.confirm-rebuild-and-restart": "Ste prepričani, da želite znova zagnati NodeBB?",
"alert.confirm-rebuild-and-restart": "Ste prepričani, da želite obnoviti in ponovno zagnati NodeBB?",
"alert.confirm-restart": "Ste prepričani, da želite znova zagnati NodeBB?",
"acp-title": "NodeBB administracijska nadzorna plošča",
"settings-header-contents": "Contents"
"acp-title": "%1 | NodeBB skrbniška nadzorna plošča",
"settings-header-contents": "Vsebine"
}

@ -1,6 +1,6 @@
{
"post-cache": "Post Cache",
"percent-full": "%1% Full",
"post-cache-size": "Post Cache Size",
"items-in-cache": "Items in Cache"
"post-cache": "Predpomnilnik objav",
"percent-full": "%1%Zasedeno",
"post-cache-size": "Velikost predpomnilnika objav",
"items-in-cache": "Elementi v predpomnilniku"
}

@ -2,51 +2,51 @@
"x-b": "%1 b",
"x-mb": "%1 mb",
"x-gb": "%1 gb",
"uptime-seconds": "Uptime in Seconds",
"uptime-days": "Uptime in Days",
"uptime-seconds": "Čas delovanja v sekundah",
"uptime-days": "Čas delovanja v dneh",
"mongo": "Mongo",
"mongo.version": "MongoDB Version",
"mongo.storage-engine": "Storage Engine",
"mongo.collections": "Collections",
"mongo.objects": "Objects",
"mongo.avg-object-size": "Avg. Object Size",
"mongo.data-size": "Data Size",
"mongo.storage-size": "Storage Size",
"mongo.index-size": "Index Size",
"mongo.file-size": "File Size",
"mongo.resident-memory": "Resident Memory",
"mongo.virtual-memory": "Virtual Memory",
"mongo.version": "MongoDB verzija",
"mongo.storage-engine": "Pogon za shranjevanje",
"mongo.collections": "Zbirke",
"mongo.objects": "Predmeti",
"mongo.avg-object-size": "Povpr. velikost predmeta",
"mongo.data-size": "Velikost podatkov",
"mongo.storage-size": "Velikost shrambe",
"mongo.index-size": "Velikost indeksa",
"mongo.file-size": "Velikost datoteke",
"mongo.resident-memory": "Stalni spomin",
"mongo.virtual-memory": "Navidezni spomin",
"mongo.mapped-memory": "Mapped Memory",
"mongo.bytes-in": "Bytes In",
"mongo.bytes-out": "Bytes Out",
"mongo.num-requests": "Number of Requests",
"mongo.num-requests": "Število zahtev",
"mongo.raw-info": "MongoDB Raw Info",
"mongo.unauthorized": "NodeBB was unable to query the MongoDB database for relevant statistics. Please ensure that the user in use by NodeBB contains the &quot;clusterMonitor&quot; role for the &quot;admin&quot; database.",
"mongo.unauthorized": "NodeBB ni mogel poizvedovati po zbirki podatkov MongoDB o ustreznih statističnih podatkih. Prepričajte se, da uporabnik, ki ga uporablja NodeBB, ima vlogo &quot;nadzornika gruče&quot; za &quot;administriranje&quot; zbirke podatkov.",
"redis": "Redis",
"redis.version": "Redis Version",
"redis.keys": "Keys",
"redis.expires": "Expires",
"redis.avg-ttl": "Average TTL",
"redis.connected-clients": "Connected Clients",
"redis.version": "Redis verzija",
"redis.keys": "Ključi",
"redis.expires": "Poteče",
"redis.avg-ttl": "Povprečni TTL",
"redis.connected-clients": "Povezane stranke",
"redis.connected-slaves": "Connected Slaves",
"redis.blocked-clients": "Blocked Clients",
"redis.used-memory": "Used Memory",
"redis.memory-frag-ratio": "Memory Fragmentation Ratio",
"redis.total-connections-recieved": "Total Connections Received",
"redis.total-commands-processed": "Total Commands Processed",
"redis.iops": "Instantaneous Ops. Per Second",
"redis.iinput": "Instantaneous Input Per Second",
"redis.ioutput": "Instantaneous Output Per Second",
"redis.total-input": "Total Input",
"redis.total-output": "Total Ouput",
"redis.blocked-clients": "Blokirane stranke",
"redis.used-memory": "Uporabljen pomnilnik",
"redis.memory-frag-ratio": "Razmerje razdrobljenosti pomnilnika",
"redis.total-connections-recieved": "Prejete povezave skupaj",
"redis.total-commands-processed": "Obdelani ukazi skupaj",
"redis.iops": "Takojšnje operacije na sekundo",
"redis.iinput": "Takojšnji vnos na sekundo",
"redis.ioutput": "Takojšnji izhod na sekundo",
"redis.total-input": "Vnos skupaj",
"redis.total-output": "Izhod skupaj",
"redis.keyspace-hits": "Keyspace Hits",
"redis.keyspace-misses": "Keyspace Misses",
"redis.raw-info": "Redis Raw Info",
"postgres": "Postgres",
"postgres.version": "PostgreSQL Version",
"postgres.version": "PostgreSQL verzija",
"postgres.raw-info": "Postgres Raw Info"
}

@ -1,14 +1,14 @@
{
"figure-x": "Figure %1",
"error-events-per-day": "<code>%1</code> events per day",
"error.404": "404 Not Found",
"error.503": "503 Service Unavailable",
"manage-error-log": "Manage Error Log",
"export-error-log": "Export Error Log (CSV)",
"clear-error-log": "Clear Error Log",
"route": "Route",
"count": "Count",
"no-routes-not-found": "Hooray! No 404 errors!",
"clear404-confirm": "Are you sure you wish to clear the 404 error logs?",
"clear404-success": "\"404 Not Found\" errors cleared"
"error-events-per-day": "<code>%1</code> dogodkov na dan",
"error.404": "4040 ni najdeno",
"error.503": "503 storitev ni na voljo",
"manage-error-log": "Upravljaj dnevnik napak",
"export-error-log": "Izvozi dnevnik napak (CSV)",
"clear-error-log": "Počisti dnevnik napak",
"route": "Pot",
"count": "Število",
"no-routes-not-found": "Hura! Ni napak 404! ",
"clear404-confirm": "Ste prepričani, da želite izbrisati dnevnik napak 404?",
"clear404-success": "Napake \"404 ni najdeno\" so počiščene"
}

@ -1,12 +1,12 @@
{
"events": "Events",
"no-events": "There are no events",
"control-panel": "Events Control Panel",
"delete-events": "Delete Events",
"filters": "Filters",
"filters-apply": "Apply Filters",
"filter-type": "Event Type",
"filter-start": "Start Date",
"filter-end": "End Date",
"filter-perPage": "Per Page"
"events": "Dogodki",
"no-events": "Ni dogodkov",
"control-panel": "Nadzorna plošča za dogodke",
"delete-events": "Izbriši dogodke",
"filters": "Filtri",
"filters-apply": "Uveljavi filtre",
"filter-type": "Tip dogodka",
"filter-start": "Začetni datum",
"filter-end": "Končni datum",
"filter-perPage": "Na stran"
}

@ -1,7 +1,7 @@
{
"logs": "Logs",
"control-panel": "Logs Control Panel",
"reload": "Reload Logs",
"clear": "Clear Logs",
"clear-success": "Logs Cleared!"
"logs": "Dnevniki",
"control-panel": "Nadzorna plošča dnevnikov",
"reload": "Ponovno naloži dnevnike",
"clear": "Počisti dnevnike",
"clear-success": "Dnevniki so počiščeni!"
}

@ -1,16 +1,16 @@
{
"custom-css": "Custom CSS/LESS",
"custom-css": "CSS/LESS po meri",
"custom-css.description": "Enter your own CSS/LESS declarations here, which will be applied after all other styles.",
"custom-css.enable": "Enable Custom CSS/LESS",
"custom-css.enable": "Omogoči CSS/LESS po meri",
"custom-js": "Custom Javascript",
"custom-js.description": "Enter your own javascript here. It will be executed after the page is loaded completely.",
"custom-js.enable": "Enable Custom Javascript",
"custom-js": "Javascript po meri",
"custom-js.description": "Tukaj vnesite svoj javascript. Izveden bo, ko se stran popolnoma naloži.",
"custom-js.enable": "Omogoči Javascript po meri",
"custom-header": "Custom Header",
"custom-header.description": "Enter custom HTML here (ex. Meta Tags, etc.), which will be appended to the <code>&lt;head&gt;</code> section of your forum's markup. Script tags are allowed, but are discouraged, as the <a href=\"#custom-js\" data-toggle=\"tab\">Custom Javascript</a> tab is available.",
"custom-header.enable": "Enable Custom Header",
"custom-header": "Glava po meri",
"custom-header.description": "Tukaj vnesite HTML po meri (npr. meta oznake itd.), ki bo dodan v <code>& lt; head & gt;</code> razdelek oznak vašega foruma. Oznake skript so dovoljene, vendar niso priporočljive, saj je na voljo zavihek Javascript po meri.",
"custom-header.enable": "Omogoči glavo po meri",
"custom-css.livereload": "Enable Live Reload",
"custom-css.livereload.description": "Enable this to force all sessions on every device under your account to refresh whenever you click save"
"custom-css.livereload.description": "Omogočite to, da se vse seje na vsaki napravi v vašem računu osvežijo, ko kliknete shrani"
}

@ -1,9 +1,9 @@
{
"loading": "Loading Skins...",
"homepage": "Homepage",
"select-skin": "Select Skin",
"current-skin": "Current Skin",
"skin-updated": "Skin Updated",
"applied-success": "%1 skin was succesfully applied",
"revert-success": "Skin reverted to base colours"
"loading": "Nalagam preobleke...",
"homepage": "Domača stran",
"select-skin": "Izberi preobleko",
"current-skin": "Trenutna preobleka",
"skin-updated": "Preobleka je posodobljena",
"applied-success": "%1 preobleke je bilo uspešno uveljavljene",
"revert-success": "Preobleka je povrnjena v osnovne barve"
}

@ -1,11 +1,11 @@
{
"checking-for-installed": "Checking for installed themes...",
"homepage": "Homepage",
"select-theme": "Select Theme",
"current-theme": "Current Theme",
"no-themes": "No installed themes found",
"revert-confirm": "Are you sure you wish to restore the default NodeBB theme?",
"theme-changed": "Theme Changed",
"revert-success": "You have successfully reverted your NodeBB back to it's default theme.",
"restart-to-activate": "Please rebuild and restart your NodeBB to fully activate this theme."
"checking-for-installed": "Iščem nameščene teme...",
"homepage": "Domača stran",
"select-theme": "Izberi temo",
"current-theme": "Trenutna tema",
"no-themes": "Ni najdenih nameščenih tem",
"revert-confirm": "Ste prepričani, da želite obnoviti privzeto NodeBB temo?",
"theme-changed": "Tema je spremenjena",
"revert-success": "Uspešno ste povrnili vaš NodeBB nazaj na privzeto temo.",
"restart-to-activate": "Za popolno aktivacijo te teme obnovite in ponovno zaženete vaš NodeB."
}

@ -1,88 +1,88 @@
{
"forum-traffic": "Forum Traffic",
"page-views": "Page Views",
"unique-visitors": "Unique Visitors",
"logins": "Logins",
"new-users": "New Users",
"posts": "Posts",
"topics": "Topics",
"page-views-seven": "Last 7 Days",
"page-views-thirty": "Last 30 Days",
"page-views-last-day": "Last 24 hours",
"page-views-custom": "Custom Date Range",
"page-views-custom-start": "Range Start",
"page-views-custom-end": "Range End",
"page-views-custom-help": "Enter a date range of page views you would like to view. If no date picker is available, the accepted format is <code>YYYY-MM-DD</code>",
"page-views-custom-error": "Please enter a valid date range in the format <code>YYYY-MM-DD</code>",
"forum-traffic": "Promet na forumu",
"page-views": "Ogledi strani",
"unique-visitors": "Edinstveni obiskovalci",
"logins": "Prijave",
"new-users": "Novi uporabniki",
"posts": "Objave",
"topics": "Teme",
"page-views-seven": "Zadnjih 7 dni",
"page-views-thirty": "Zadnjih 30 dni",
"page-views-last-day": "Zadnjih 24 ur",
"page-views-custom": "Časovno obdobje po meri",
"page-views-custom-start": "Začetek obdobja",
"page-views-custom-end": "Konec obdobja",
"page-views-custom-help": "Vnesite časovno obdobje ogledov strani, ki bi si jih radi ogledali. Če izbirnik datumov ni na voljo, je sprejeta oblika <code>LLLL-MM-DD</code>",
"page-views-custom-error": "Vnesite veljavno časovno obdobje v obliki <code>LLLL-MM-DD</code>",
"stats.yesterday": "Yesterday",
"stats.today": "Today",
"stats.last-week": "Last Week",
"stats.this-week": "This Week",
"stats.last-month": "Last Month",
"stats.this-month": "This Month",
"stats.all": "All Time",
"stats.yesterday": "Včeraj",
"stats.today": "Danes",
"stats.last-week": "Prejšnji teden",
"stats.this-week": "Ta teden",
"stats.last-month": "Zadnji mesec",
"stats.this-month": "Ta mesec",
"stats.all": "Celotni čas",
"updates": "Updates",
"running-version": "You are running <strong>NodeBB v<span id=\"version\">%1</span></strong>.",
"keep-updated": "Always make sure that your NodeBB is up to date for the latest security patches and bug fixes.",
"up-to-date": "<p>You are <strong>up-to-date</strong> <i class=\"fa fa-check\"></i></p>",
"upgrade-available": "<p>A new version (v%1) has been released. Consider <a href=\"https://docs.nodebb.org/configuring/upgrade/\" target=\"_blank\">upgrading your NodeBB</a>.</p>",
"prerelease-upgrade-available": "<p>This is an outdated pre-release version of NodeBB. A new version (v%1) has been released. Consider <a href=\"https://docs.nodebb.org/configuring/upgrade/\" target=\"_blank\">upgrading your NodeBB</a>.</p>",
"prerelease-warning": "<p>This is a <strong>pre-release</strong> version of NodeBB. Unintended bugs may occur. <i class=\"fa fa-exclamation-triangle\"></i></p>",
"fallback-emailer-not-found": "Fallback emailer not found!",
"running-in-development": "<span>Forum is running in development mode. The forum may be open to potential vulnerabilities; please contact your system administrator.</span>",
"latest-lookup-failed": "<p>Failed to look up latest available version of NodeBB</p>",
"updates": "Posodobitve",
"running-version": " Teče <strong>NodeBB v<span id=\"version\">%1</span></strong>.",
"keep-updated": "Vedno se prepričajte, da je vaš NodeBB posodobljen za najnovejše varnostne popravke in popravke napak.",
"up-to-date": "<p>Ste <strong>na tekočem</strong> <i class=\"fa fa-check\"></i></p>",
"upgrade-available": "<p>Izdana je bila nova različica (v%1). Premislite o <a href=\"https://docs.nodebb.org/configuring/upgrade/\" target=\"_blank\">posodobitvi vašega NodeBB</a>.</p>",
"prerelease-upgrade-available": "<p>To je zastarela predizdajna različica NodeBB. Izšla je nova različica (v%1). Premislite o <a href=\"https://docs.nodebb.org/configuring/upgrade/\" target=\"_blank\">posodobitvi vašega NodeBB</a>.</p>",
"prerelease-warning": "</p>To je <strong>predizdajna</strong> različica NodeBB. Pojavijo se lahko nenameravane napake. <i class=\"fa fa-exclamation-triangle\"></i></p>",
"fallback-emailer-not-found": "Povratnega e-poštnega sporočila ni mogoče najti!",
"running-in-development": "<span>Forum teče v razvojnem načinu. Forum je lahko odprt za potencialne ranljivosti; obrnite se na skrbnika sistema.</span>",
"latest-lookup-failed": "<p>Najnovejše razpoložljive različice NodeBB ni bilo mogoče najti</p>",
"notices": "Notices",
"restart-not-required": "Restart not required",
"restart-required": "Restart required",
"search-plugin-installed": "Search Plugin installed",
"search-plugin-not-installed": "Search Plugin not installed",
"search-plugin-tooltip": "Install a search plugin from the plugin page in order to activate search functionality",
"notices": "Opombe",
"restart-not-required": "Ponovni zagon ni potreben",
"restart-required": "Potreben je ponovni zagon",
"search-plugin-installed": "Iskalni vtičnik je nameščen",
"search-plugin-not-installed": "Iskalni vtičnik ni nameščen",
"search-plugin-tooltip": "Za aktiviranje iskalne funkcije namestite iskalni vtičnik s strani vtičnika",
"control-panel": "System Control",
"rebuild-and-restart": "Rebuild &amp; Restart",
"restart": "Restart",
"restart-warning": "Rebuilding or Restarting your NodeBB will drop all existing connections for a few seconds.",
"restart-disabled": "Rebuilding and Restarting your NodeBB has been disabled as you do not seem to be running it via the appropriate daemon.",
"maintenance-mode": "Maintenance Mode",
"maintenance-mode-title": "Click here to set up maintenance mode for NodeBB",
"realtime-chart-updates": "Realtime Chart Updates",
"control-panel": "Nadzor sistema",
"rebuild-and-restart": "Obnovi &amp; ponovno zaženi",
"restart": "Ponovno zaženi",
"restart-warning": "Obnova ali ponovni zagon vašega NodeBB za nekaj sekund prekine vse obstoječe povezave.",
"restart-disabled": "Obnova in ponovni zagon vašega NodeBB sta onemogočena, saj se zdi, da ga ne izvajate prek ustreznega prikritega procesa.",
"maintenance-mode": "Način vzdrževanja",
"maintenance-mode-title": "Za nastavitev načina vzdrževanja za NodeBB kliknite tukaj",
"realtime-chart-updates": "Posodobitev grafikona v realnem času",
"active-users": "Active Users",
"active-users.users": "Users",
"active-users.guests": "Guests",
"active-users.total": "Total",
"active-users.connections": "Connections",
"active-users": "Aktivni uporabniki",
"active-users.users": "Uporabniki",
"active-users.guests": "Gostje",
"active-users.total": "Skupaj",
"active-users.connections": "Povezave",
"anonymous-registered-users": "Anonymous vs Registered Users",
"anonymous": "Anonymous",
"registered": "Registered",
"anonymous-registered-users": "Anonimni : Registrirani uporabniki",
"anonymous": "Anonimni",
"registered": "Registrirani",
"user-presence": "User Presence",
"user-presence": "Prisotnost uporabnikov",
"on-categories": "On categories list",
"reading-posts": "Reading posts",
"browsing-topics": "Browsing topics",
"recent": "Recent",
"unread": "Unread",
"recent": "Nedavno",
"unread": "Neprebrano",
"high-presence-topics": "High Presence Topics",
"graphs.page-views": "Page Views",
"graphs.page-views": "Ogledov strani",
"graphs.page-views-registered": "Page Views Registered",
"graphs.page-views-guest": "Page Views Guest",
"graphs.page-views-bot": "Page Views Bot",
"graphs.unique-visitors": "Unique Visitors",
"graphs.registered-users": "Registered Users",
"graphs.anonymous-users": "Anonymous Users",
"last-restarted-by": "Last restarted by",
"no-users-browsing": "No users browsing",
"graphs.unique-visitors": "Edinstveni obiskovalci",
"graphs.registered-users": "Registrirani uporabniki",
"graphs.anonymous-users": "Anonimni uporabniki",
"last-restarted-by": "Nazadnje ponovno zagnal(a)",
"no-users-browsing": "Ne brska noben uporabnik",
"back-to-dashboard": "Back to Dashboard",
"details.no-users": "No users have joined within the selected timeframe",
"details.no-topics": "No topics have been posted within the selected timeframe",
"details.no-logins": "No logins have been recorded within the selected timeframe",
"details.logins-static": "NodeBB only saves session data for %1 days, and so this table below will only show the most recently active sessions",
"details.logins-login-time": "Login Time"
"back-to-dashboard": "Nazaj na nadzorno ploščo",
"details.no-users": "V izbranem časovnem okviru se ni pridružil noben uporabnik",
"details.no-topics": "V izbranem časovnem okviru ni bila objavljena nobena tema",
"details.no-logins": "V izbranem časovnem okviru ni bila zabeležena nobena prijava",
"details.logins-static": "NodeBB shranjuje samo podatke o sejah za %1 dni, zato bo ta spodnja tabela prikazala samo zadnje aktivne seje",
"details.logins-login-time": "Čas prijave"
}

@ -1,21 +1,21 @@
{
"you-are-on": "You are on <strong>%1:%2</strong>",
"ip": "IP <strong>%1</strong>",
"nodes-responded": "%1 nodes responded within %2ms!",
"host": "host",
"nodes-responded": "%1 vozlišč se je odzvalo v %2ms!",
"host": "gostitelj",
"primary": "primary / run jobs",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
"online": "na spletu",
"git": "git",
"memory": "memory",
"load": "system load",
"cpu-usage": "cpu usage",
"uptime": "uptime",
"memory": "spomin",
"load": "obremenitev sistema",
"cpu-usage": "uporaba procesorja",
"uptime": "čas delovanja",
"registered": "Registered",
"sockets": "Sockets",
"guests": "Guests",
"registered": "Registrirani",
"sockets": "Vtičnice",
"guests": "Gostje",
"info": "Info"
}

@ -1,15 +1,15 @@
{
"trending": "Trending",
"installed": "Installed",
"active": "Active",
"inactive": "Inactive",
"out-of-date": "Out of Date",
"none-found": "No plugins found.",
"none-active": "No Active Plugins",
"find-plugins": "Find Plugins",
"installed": "Nameščeno",
"active": "Aktivno",
"inactive": "Neaktivno",
"out-of-date": "zastarelo",
"none-found": "Vtičnikov ni bilo mogoče najti.",
"none-active": "Ni aktivnih vtičnikov.",
"find-plugins": "Najdi vtičnike",
"plugin-search": "Plugin Search",
"plugin-search-placeholder": "Search for plugin...",
"plugin-search": "Iskanje vtičnikov",
"plugin-search-placeholder": "Iskanje vtičnika...",
"submit-anonymous-usage": "Submit anonymous plugin usage data.",
"reorder-plugins": "Re-order Plugins",
"order-active": "Order Active Plugins",
@ -19,31 +19,31 @@
"order.description": "Certain plugins work ideally when they are initialised before/after other plugins.",
"order.explanation": "Plugins load in the order specified here, from top to bottom",
"plugin-item.themes": "Themes",
"plugin-item.deactivate": "Deactivate",
"plugin-item.activate": "Activate",
"plugin-item.install": "Install",
"plugin-item.uninstall": "Uninstall",
"plugin-item.settings": "Settings",
"plugin-item.installed": "Installed",
"plugin-item.latest": "Latest",
"plugin-item.upgrade": "Upgrade",
"plugin-item.more-info": "For more information:",
"plugin-item.unknown": "Unknown",
"plugin-item.themes": "Teme",
"plugin-item.deactivate": "Deaktiviraj",
"plugin-item.activate": "Aktiviraj",
"plugin-item.install": "Namesti",
"plugin-item.uninstall": "Odstrani",
"plugin-item.settings": "Nastavitve",
"plugin-item.installed": "Nameščeno",
"plugin-item.latest": "Najnovejše",
"plugin-item.upgrade": "Posodobi",
"plugin-item.more-info": "Za več informacij:",
"plugin-item.unknown": "Neznano",
"plugin-item.unknown-explanation": "The state of this plugin could not be determined, possibly due to a misconfiguration error.",
"plugin-item.compatible": "This plugin works on NodeBB %1",
"plugin-item.compatible": "Ta vtičnik deluje na NodeBB %1",
"plugin-item.not-compatible": "This plugin has no compatibility data, make sure it works before installing on your production environment.",
"alert.enabled": "Plugin Enabled",
"alert.disabled": "Plugin Disabled",
"alert.upgraded": "Plugin Upgraded",
"alert.installed": "Plugin Installed",
"alert.uninstalled": "Plugin Uninstalled",
"alert.activate-success": "Please rebuild and restart your NodeBB to fully activate this plugin",
"alert.deactivate-success": "Plugin successfully deactivated",
"alert.upgrade-success": "Please rebuild and restart your NodeBB to fully upgrade this plugin.",
"alert.install-success": "Plugin successfully installed, please activate the plugin.",
"alert.uninstall-success": "The plugin has been successfully deactivated and uninstalled.",
"alert.enabled": "Vtičnik omogočen",
"alert.disabled": "Vtičnik onemogočen",
"alert.upgraded": "Vtičnik posodobljen",
"alert.installed": "Vtičnik nameščen",
"alert.uninstalled": "Vtičnik odstranjen",
"alert.activate-success": "Za popolno aktivacijo tega vtičnika obnovite in ponovno zaženete vaš NodeB.",
"alert.deactivate-success": "Vtičnik je bil uspešno deaktiviran",
"alert.upgrade-success": "Za popolno nadgradnjo tega vtičnika obnovite in ponovno zaženete vaš NodeB.",
"alert.install-success": "Vtičnik je uspešno nameščen, aktivirajte ga.",
"alert.uninstall-success": "Vtičnik je bil uspešno deaktiviran in odstranjen.",
"alert.suggest-error": "<p>NodeBB could not reach the package manager, proceed with installation of latest version?</p><div class=\"alert alert-danger\"><strong>Server returned (%1)</strong>: %2</div>",
"alert.package-manager-unreachable": "<p>NodeBB could not reach the package manager, an upgrade is not suggested at this time.</p>",
"alert.incompatible": "<p>Your version of NodeBB (v%1) is only cleared to upgrade to v%2 of this plugin. Please update your NodeBB if you wish to install a newer version of this plugin.</p>",
@ -53,5 +53,5 @@
"license.title": "Plugin License Information",
"license.intro": "The plugin <strong>%1</strong> is licensed under the %2. Please read and understand the license terms prior to activating this plugin.",
"license.cta": "Do you wish to continue with activating this plugin?"
"license.cta": "Ali želite nadaljevati z aktiviranjem tega vtičnika?"
}

@ -1,15 +1,15 @@
{
"rewards": "Rewards",
"rewards": "Nagrade",
"condition-if-users": "If User's",
"condition-is": "Is:",
"condition-then": "Then:",
"max-claims": "Amount of times reward is claimable",
"max-claims": "Kolikokrat je mogoče zahtevati nagrado",
"zero-infinite": "Enter 0 for infinite",
"delete": "Delete",
"enable": "Enable",
"disable": "Disable",
"delete": "Izbriši",
"enable": "Omogoči",
"disable": "Onemogoči",
"alert.delete-success": "Successfully deleted reward",
"alert.delete-success": "Nagrada je uspešno izbrisana",
"alert.no-inputs-found": "Illegal reward - no inputs found!",
"alert.save-success": "Successfully saved rewards"
"alert.save-success": "Nagrada je uspešno shranjena"
}

@ -1,26 +1,26 @@
{
"available": "Available Widgets",
"explanation": "Select a widget from the dropdown menu and then drag and drop it into a template's widget area on the left.",
"available": "Razpoložljivi pripomočki",
"explanation": "V spustnem meniju izberite pripomoček in ga povlecite in spustite v območje gradnikov predloge na levi.",
"none-installed": "No widgets found! Activate the widget essentials plugin in the <a href=\"%1\">plugins</a> control panel.",
"clone-from": "Clone widgets from",
"clone-from": "Klonirajte pripomočke iz",
"containers.available": "Available Containers",
"containers.explanation": "Drag and drop on top of any active widget",
"containers.none": "None",
"containers.explanation": "Povlecite in spustite na kateri koli aktivni gradnik",
"containers.none": "Brez",
"container.well": "Well",
"container.jumbotron": "Jumbotron",
"container.panel": "Panel",
"container.panel-header": "Panel Header",
"container.panel": "plošča",
"container.panel-header": "Glava plošče",
"container.panel-body": "Panel Body",
"container.alert": "Alert",
"container.alert": "Opozorilo",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
"alert.updated": "Widgets Updated",
"alert.update-success": "Successfully updated widgets",
"alert.clone-success": "Successfully cloned widgets",
"alert.confirm-delete": "Ste prepričani, da želite izbrisati ta pripomoček?",
"alert.updated": "Pripomočki so posodobljeni",
"alert.update-success": "Pripomočki so uspešno shranjeni",
"alert.clone-success": "Pripomočki so uspešno klonirani",
"error.select-clone": "Please select a page to clone from",
"error.select-clone": "Izberite stran, s katere želite klonirati",
"title": "Title",
"title": "Naslov",
"title.placeholder": "Title (only shown on some containers)",
"container": "Container",
"container.placeholder": "Drag and drop a container or enter HTML here.",

@ -1,22 +1,22 @@
{
"settings": "Category Settings",
"settings": "Nastavitve kategorije",
"privileges": "Privileges",
"name": "Category Name",
"description": "Category Description",
"bg-color": "Background Colour",
"text-color": "Text Colour",
"name": "Ime kategorije",
"description": "Opis kategorije",
"bg-color": "Barva ozadja",
"text-color": "Barva besedila",
"bg-image-size": "Background Image Size",
"custom-class": "Custom Class",
"num-recent-replies": "# of Recent Replies",
"ext-link": "External Link",
"subcategories-per-page": "Subcategories per page",
"ext-link": "Zunanja povezava",
"subcategories-per-page": "Podkategorij na stran",
"is-section": "Treat this category as a section",
"post-queue": "Post queue",
"post-queue": "Čakalna vrsta objav",
"tag-whitelist": "Tag Whitelist",
"upload-image": "Upload Image",
"delete-image": "Remove",
"category-image": "Category Image",
"upload-image": "Naloži sliko",
"delete-image": "Odstrani",
"category-image": "Slika kategorije",
"parent-category": "Parent Category",
"optional-parent-category": "(Optional) Parent Category",
"top-level": "Top Level",
@ -27,15 +27,15 @@
"clone-children": "Clone Children Categories And Settings",
"purge": "Purge Category",
"enable": "Enable",
"disable": "Disable",
"enable": "Omogoči",
"disable": "Onemogoči",
"edit": "Edit",
"analytics": "Analytics",
"view-category": "View category",
"set-order": "Set order",
"set-order-help": "Setting the order of the category will move this category to that order and update the order of other categories as necessary. Minimum order is 1 which puts the category at the top.",
"view-category": "Poglej kategorijo",
"set-order": "Nastavi vrstni red",
"set-order-help": "Če nastavite vrstni red kategorije, se bo ta kategorija premaknila in po potrebi posodobila vrstni red drugih kategorij. Najmanjša št. vrstnega reda je 1, kar kategorijo postavlja na vrh.",
"select-category": "Select Category",
"select-category": "Izberi kategorijo",
"set-parent-category": "Set Parent Category",
"privileges.description": "You can configure the access control privileges for portions of the site in this section. Privileges can be granted on a per-user or a per-group basis. Select the domain of effect from the dropdown below.",
@ -45,48 +45,48 @@
"privileges.section-posting": "Posting Privileges",
"privileges.section-moderation": "Moderation Privileges",
"privileges.section-other": "Other",
"privileges.section-user": "User",
"privileges.search-user": "Add User",
"privileges.section-user": "Uporabnik",
"privileges.search-user": "Dodaj uporabnika",
"privileges.no-users": "No user-specific privileges in this category.",
"privileges.section-group": "Group",
"privileges.group-private": "This group is private",
"privileges.section-group": "Skupina",
"privileges.group-private": "Ta skupina je zasebna",
"privileges.inheritance-exception": "This group does not inherit privileges from registered-users group",
"privileges.banned-user-inheritance": "Banned users inherit privileges from banned-users group",
"privileges.search-group": "Add Group",
"privileges.search-group": "Dodaj skupino",
"privileges.copy-to-children": "Copy to Children",
"privileges.copy-from-category": "Copy from Category",
"privileges.copy-privileges-to-all-categories": "Copy to All Categories",
"privileges.copy-from-category": "Kopiraj iz kategorije",
"privileges.copy-privileges-to-all-categories": "Kopiraj v vse kategorije",
"privileges.copy-group-privileges-to-children": "Copy this group's privileges to the children of this category.",
"privileges.copy-group-privileges-to-all-categories": "Copy this group's privileges to all categories.",
"privileges.copy-group-privileges-from": "Copy this group's privileges from another category.",
"privileges.inherit": "If the <code>registered-users</code> group is granted a specific privilege, all other groups receive an <strong>implicit privilege</strong>, even if they are not explicitly defined/checked. This implicit privilege is shown to you because all users are part of the <code>registered-users</code> user group, and so, privileges for additional groups need not be explicitly granted.",
"privileges.copy-success": "Privileges copied!",
"analytics.back": "Back to Categories List",
"analytics.back": "Nazaj na seznam kategorij",
"analytics.title": "Analytics for \"%1\" category",
"analytics.pageviews-hourly": "<strong>Figure 1</strong> &ndash; Hourly page views for this category</small>",
"analytics.pageviews-daily": "<strong>Figure 2</strong> &ndash; Daily page views for this category</small>",
"analytics.topics-daily": "<strong>Figure 3</strong> &ndash; Daily topics created in this category</small>",
"analytics.posts-daily": "<strong>Figure 4</strong> &ndash; Daily posts made in this category</small>",
"alert.created": "Created",
"alert.create-success": "Category successfully created!",
"alert.none-active": "You have no active categories.",
"alert.create": "Create a Category",
"alert.created": "Ustvarjeno",
"alert.create-success": "Kategorija je uspešno ustvarjena!",
"alert.none-active": "Nimate aktivnih kategorij.",
"alert.create": "Ustvari kategorijo",
"alert.confirm-purge": "<p class=\"lead\">Do you really want to purge this category \"%1\"?</p><h5><strong class=\"text-danger\">Warning!</strong> All topics and posts in this category will be purged!</h5> <p class=\"help-block\">Purging a category will remove all topics and posts, and delete the category from the database. If you want to remove a category <em>temporarily</em>, you'll want to \"disable\" the category instead.</p>",
"alert.purge-success": "Category purged!",
"alert.copy-success": "Settings Copied!",
"alert.set-parent-category": "Set Parent Category",
"alert.updated": "Updated Categories",
"alert.updated": "Posodobljene kategorije",
"alert.updated-success": "Category IDs %1 successfully updated.",
"alert.upload-image": "Upload category image",
"alert.find-user": "Find a User",
"alert.upload-image": "Naloži sliko kategorije",
"alert.find-user": "Poišči uporabnika",
"alert.user-search": "Search for a user here...",
"alert.find-group": "Find a Group",
"alert.find-group": "Poišči skupino",
"alert.group-search": "Search for a group here...",
"alert.not-enough-whitelisted-tags": "Whitelisted tags are less than minimum tags, you need to create more whitelisted tags!",
"collapse-all": "Collapse All",
"expand-all": "Expand All",
"collapse-all": "Strni vse",
"expand-all": "Razširi vse",
"disable-on-create": "Disable on create",
"no-matches": "No matches"
"no-matches": "Ni zadetkov"
}

@ -1,11 +1,11 @@
{
"lead": "A listing of digest delivery stats and times is displayed below.",
"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": "Upoštevajte, da dostava elektronske pošte zaradi narave tehnologije e-pošte ni zagotovljena. Številne spremenljivke vplivajo na to, ali je e-poštno sporočilo, poslano prejemniškemu strežniku, na koncu dostavljeno v mapo »Prejeto«, vključno z ugledom strežnika, naslovi IP na črnem seznamu in ali je konfiguriran DKIM/SPF/DMARC.",
"disclaimer-continued": "Uspešna dostava pomeni, da je NodeBB uspešno poslal sporočilo in ga je strežnik prejemnika potrdil. To ne pomeni, da je e-poštno sporočilo prispelo v mapo »Prejeto«. Za najboljše rezultate priporočamo uporabo storitev dostave e-pošte tretjih oseb, kot je npr <a href=\"https://sendgrid.com/why-sendgrid/\">SendGrid</a>.",
"user": "User",
"subscription": "Subscription Type",
"last-delivery": "Last successful delivery",
"user": "Uporabnik",
"subscription": "Vrsta naročnine",
"last-delivery": "Zadnja uspešna dostava",
"default": "System default",
"default-help": "<em>System default</em> means the user has not explicitly overridden the global forum setting for digests, which is currently: &quot;<strong>%1</strong>&quot;",
"resend": "Resend Digest",

@ -1,44 +1,44 @@
{
"name": "Group Name",
"badge": "Badge",
"properties": "Properties",
"description": "Group Description",
"member-count": "Member Count",
"system": "System",
"hidden": "Hidden",
"private": "Private",
"edit": "Edit",
"delete": "Delete",
"name": "Ime skupine",
"badge": "Značka",
"properties": "Lastnosti",
"description": "Opis skupine",
"member-count": "Število članov",
"system": "Sistem",
"hidden": "Skrita",
"private": "Zasebna",
"edit": "Uredi",
"delete": "Izbriši",
"privileges": "Privileges",
"download-csv": "CSV",
"search-placeholder": "Search",
"create": "Create Group",
"description-placeholder": "A short description about your group",
"create-button": "Create",
"create": "Ustvari skupino",
"description-placeholder": "Kratki opis vaše skupine",
"create-button": "Ustvari",
"alerts.create-failure": "<strong>Uh-Oh</strong><p>There was a problem creating your group. Please try again later!</p>",
"alerts.confirm-delete": "Are you sure you wish to delete this group?",
"alerts.confirm-delete": "Ste prepričani, da želite izbrisati to skupino?",
"edit.name": "Name",
"edit.description": "Description",
"edit.name": "Ime",
"edit.description": "Opis",
"edit.user-title": "Title of Members",
"edit.icon": "Group Icon",
"edit.label-color": "Group Label Color",
"edit.text-color": "Group Text Color",
"edit.show-badge": "Show Badge",
"edit.private-details": "If enabled, joining of groups requires approval from a group owner.",
"edit.private-override": "Warning: Private groups is disabled at system level, which overrides this option.",
"edit.disable-join": "Disable join requests",
"edit.disable-leave": "Disallow users from leaving the group",
"edit.hidden": "Hidden",
"edit.hidden-details": "If enabled, this group will not be found in the groups listing, and users will have to be invited manually",
"edit.add-user": "Add User to Group",
"edit.add-user-search": "Search Users",
"edit.members": "Member List",
"control-panel": "Groups Control Panel",
"revert": "Revert",
"edit.icon": "Ikona skupine",
"edit.label-color": "Barva oznake skupine",
"edit.text-color": "Barva besedila skupine",
"edit.show-badge": "Prikaži značko",
"edit.private-details": "Če je omogočeno, je za pridružitev skupinam potrebna odobritev lastnika skupine.",
"edit.private-override": "Opozorilo: Zasebne skupine so onemogočene na sistemski ravni, kar preglasi to možnost.",
"edit.disable-join": "Onemogoči povabila za pridružitev",
"edit.disable-leave": "Ne dovoli uporabnikom, da zapustijo skupino",
"edit.hidden": "Skrito",
"edit.hidden-details": "Če je omogočeno, te skupine ne boste našli na seznamu skupin, uporabnike pa boste morali povabiti ročno",
"edit.add-user": "Dodaj uporabnika v skupino",
"edit.add-user-search": "Iskanje uporabnikov",
"edit.members": "Seznam članov",
"control-panel": "Nadzorna plošča skupine",
"revert": "Povrni",
"edit.no-users-found": "No Users Found",
"edit.confirm-remove-user": "Are you sure you want to remove this user?",
"edit.save-success": "Changes saved!"
"edit.no-users-found": "Uporabnikov ni bilo mogoče najti",
"edit.confirm-remove-user": "Ste prepričani, da želite odstraniti tega uporabnika?",
"edit.save-success": "Spremembe so shranjene!"
}

@ -4,16 +4,16 @@
"group-privileges": "Group Privileges",
"user-privileges": "User Privileges",
"edit-privileges": "Edit Privileges",
"select-clear-all": "Select/Clear All",
"chat": "Chat",
"upload-images": "Upload Images",
"upload-files": "Upload Files",
"signature": "Signature",
"select-clear-all": "Izberi/Počisti vse",
"chat": "Klepet",
"upload-images": "Naloži slike",
"upload-files": "Naloži datoteke",
"signature": "Podpis",
"ban": "Ban",
"invite": "Invite",
"search-content": "Search Content",
"search-users": "Search Users",
"search-tags": "Search Tags",
"invite": "Povabi",
"search-content": "Išči vsebino",
"search-users": "Išči uporabnike",
"search-tags": "Išči oznake",
"view-users": "View Users",
"view-tags": "View Tags",
"view-groups": "View Groups",
@ -23,27 +23,27 @@
"find-category": "Find Category",
"access-category": "Access Category",
"access-topics": "Access Topics",
"create-topics": "Create Topics",
"reply-to-topics": "Reply to Topics",
"create-topics": "Ustvari teme",
"reply-to-topics": "Odgovori na teme",
"schedule-topics": "Schedule Topics",
"tag-topics": "Tag Topics",
"edit-posts": "Edit Posts",
"view-edit-history": "View Edit History",
"delete-posts": "Delete Posts",
"tag-topics": "Označi teme",
"edit-posts": "Uredi objave",
"view-edit-history": "Poglej zgodovino urejanja",
"delete-posts": "Izbriši objave",
"view_deleted": "View Deleted Posts",
"upvote-posts": "Upvote Posts",
"downvote-posts": "Downvote Posts",
"delete-topics": "Delete Topics",
"delete-topics": "Izbriši teme",
"purge": "Purge",
"moderate": "Moderate",
"admin-dashboard": "Dashboard",
"admin-categories": "Categories",
"admin-categories": "Kategorije",
"admin-privileges": "Privileges",
"admin-users": "Users",
"admin-users": "Uporabniki",
"admin-admins-mods": "Admins &amp; Mods",
"admin-groups": "Groups",
"admin-tags": "Tags",
"admin-settings": "Settings",
"admin-groups": "Skupine",
"admin-tags": "Oznake",
"admin-settings": "Nastavitve",
"alert.confirm-moderate": "<strong>Are you sure you wish to grant the moderation privilege to this user group?</strong> This group is public, and any users can join at will.",
"alert.confirm-admins-mods": "<strong>Are you sure you wish to grant the &quot;Admins &amp; Mods&quot; privilege to this user/group?</strong> Users with this privilege are able to promote and demote other users into privileged positions, <em>including super administrator</em>",

@ -1,6 +1,6 @@
{
"queue": "Čakalna vrsta",
"description": "V čakalni vrsti za registracijo ni nobenega uporabnika.<br>Da omogočite to funkcionalnost, pojdite na <a href=\"%1\">Nastavitve &rarr; Uporabnik &rarr; Registracija Uporabnika</a> in nastavitev <strong> Tip registracije</strong>v \"Admin Odobravanje\".",
"description": "V čakalni vrsti registracij ni nobenega uporabnika.<br>Da omogočite to funkcionalnost, pojdite na <a href=\"%1\">Nastavitve &rarr; Uporabnik &rarr; Registracija Uporabnika</a> in nastavitev <strong> Tip registracije</strong>v \"Admin Odobravanje\".",
"list.name": "Ime",
"list.email": "E-pošta",

@ -1,18 +1,18 @@
{
"none": "Your forum does not have any topics with tags yet.",
"bg-color": "Background Colour",
"text-color": "Text Colour",
"none": "Na vašem forumu še ni nobene teme z oznakami.",
"bg-color": "Barva ozadja",
"text-color": "Barva besedila",
"description": "Select tags by clicking or dragging, use <code>CTRL</code> to select multiple tags.",
"create": "Create Tag",
"modify": "Modify Tags",
"rename": "Rename Tags",
"delete": "Delete Selected Tags",
"search": "Search for tags...",
"settings": "Tags Settings",
"name": "Tag Name",
"create": "Ustvari oznako",
"modify": "Spremeni oznake",
"rename": "Preimenuj oznake",
"delete": "Izbriši izbrane oznake",
"search": "Iskanje oznak...",
"settings": "Nastavitve oznak",
"name": "Ime oznake",
"alerts.editing": "Editing tag(s)",
"alerts.confirm-delete": "Do you want to delete the selected tags?",
"alerts.update-success": "Tag Updated!",
"reset-colors": "Reset colors"
"alerts.editing": "Urejanje oznak(e)",
"alerts.confirm-delete": "Ali želite izbrisati izbrane oznake?",
"alerts.update-success": "Oznaka je posodobljena!",
"reset-colors": "Ponastavi barve"
}

@ -1,11 +1,11 @@
{
"upload-file": "Upload File",
"filename": "Filename",
"upload-file": "Naloži datoteko",
"filename": "Ime datoteke",
"usage": "Post Usage",
"orphaned": "Orphaned",
"size/filecount": "Size / Filecount",
"confirm-delete": "Do you really want to delete this file?",
"filecount": "%1 files",
"new-folder": "New Folder",
"name-new-folder": "Enter a name for new the folder"
"size/filecount": "Velikost / Število datotek",
"confirm-delete": "Ste prepričani, da želite izbrisati to datoteko?",
"filecount": "%1 datotek",
"new-folder": "Nova mapa",
"name-new-folder": "Vnesite ime nove mape"
}

@ -1,70 +1,70 @@
{
"users": "Users",
"edit": "Actions",
"users": "Uporabniki",
"edit": "Dejanja",
"make-admin": "Make Admin",
"remove-admin": "Remove Admin",
"validate-email": "Validate Email",
"send-validation-email": "Send Validation Email",
"password-reset-email": "Send Password Reset Email",
"force-password-reset": "Force Password Reset & Log User Out",
"ban": "Ban User(s)",
"temp-ban": "Ban User(s) Temporarily",
"unban": "Unban User(s)",
"reset-lockout": "Reset Lockout",
"validate-email": "Potrdite e-poštni naslov",
"send-validation-email": "Pošljite potrditveno e-sporočilo",
"password-reset-email": "Pošljite e-poštno sporočilo za ponastavitev gesla",
"force-password-reset": "Vsilite ponastavitev gesla in odjavo uporabnika",
"ban": "Prepovejte uporabnika(e)",
"temp-ban": "Začasno prepovejte uporabnika(e)",
"unban": "Razveljavi prepoved uporabnika(ov)",
"reset-lockout": "Ponastavitev zaklepanja",
"reset-flags": "Reset Flags",
"delete": "Delete <strong>User(s)</strong>",
"delete-content": "Delete User(s) <strong>Content</strong>",
"purge": "Delete <strong>User(s)</strong> and <strong>Content</strong>",
"download-csv": "Download CSV",
"manage-groups": "Manage Groups",
"add-group": "Add Group",
"invite": "Invite",
"new": "New User",
"filter-by": "Filter by",
"pills.unvalidated": "Not Validated",
"pills.validated": "Validated",
"pills.banned": "Banned",
"delete": "Izbrišite<strong>uporabnika(e)</strong>",
"delete-content": "Izbrišite <strong>Vsebino</strong> uporabnika(ov)",
"purge": "Izbrišite<strong>uporabnika(e)</strong> in <strong>vsebino</strong>",
"download-csv": "Prenesite CSV",
"manage-groups": "Upravljaj skupine",
"add-group": "Dodaj skupino",
"invite": "Povabi",
"new": "Nov uporabnik",
"filter-by": "Filtriraj po",
"pills.unvalidated": "Nepotrjeno",
"pills.validated": "Potrjeno",
"pills.banned": "Prepovedano",
"50-per-page": "50 per page",
"100-per-page": "100 per page",
"250-per-page": "250 per page",
"500-per-page": "500 per page",
"50-per-page": "50 na stran",
"100-per-page": "100 na stran",
"250-per-page": "250 na stran",
"500-per-page": "500 na stran",
"search.uid": "By User ID",
"search.uid-placeholder": "Enter a user ID to search",
"search.username": "By User Name",
"search.username-placeholder": "Enter a username to search",
"search.email": "By Email",
"search.email-placeholder": "Enter a email to search",
"search.ip": "By IP Address",
"search.ip-placeholder": "Enter an IP Address to search",
"search.not-found": "User not found!",
"search.uid": "Po ID uporabnika",
"search.uid-placeholder": "Za iskanje vnesite ID uporabnika",
"search.username": "Po imenu uporabnika",
"search.username-placeholder": "Za iskanje vnesite uporabniško ime",
"search.email": "Po e-poštnem naslovu",
"search.email-placeholder": "Za iskanje vnesite e-poštni naslov",
"search.ip": "Po IP naslovu",
"search.ip-placeholder": "Za iskanje vnesite IP naslov",
"search.not-found": "Uporabnika ni bilo mogoče najti!",
"inactive.3-months": "3 months",
"inactive.6-months": "6 months",
"inactive.12-months": "12 months",
"users.uid": "uid",
"users.username": "username",
"users.email": "email",
"users.username": "uporabniško ime",
"users.email": "e-poštni naslov",
"users.ip": "IP",
"users.postcount": "postcount",
"users.reputation": "reputation",
"users.reputation": "ugled",
"users.flags": "flags",
"users.joined": "joined",
"users.last-online": "last online",
"users.banned": "banned",
"create.username": "User Name",
"create.email": "Email",
"create.email-placeholder": "Email of this user",
"create.password": "Password",
"create.password-confirm": "Confirm Password",
"create.username": "Ime uporabnika",
"create.email": "E-poštni naslov",
"create.email-placeholder": "E-poštni naslov tega uporabnika",
"create.password": "Geslo",
"create.password-confirm": "Potrdi geslo",
"temp-ban.length": "Ban Length",
"temp-ban.reason": "Reason <span class=\"text-muted\">(Optional)</span>",
"temp-ban.hours": "Hours",
"temp-ban.days": "Days",
"temp-ban.hours": "Ur",
"temp-ban.days": "Dni",
"temp-ban.explanation": "Enter the length of time for the ban. Note that a time of 0 will be a considered a permanent ban.",
"alerts.confirm-ban": "Do you really want to ban this user <strong>permanently</strong>?",
@ -74,36 +74,36 @@
"alerts.unban-success": "User(s) unbanned!",
"alerts.lockout-reset-success": "Lockout(s) reset!",
"alerts.flag-reset-success": "Flags(s) reset!",
"alerts.no-remove-yourself-admin": "You can't remove yourself as Administrator!",
"alerts.make-admin-success": "User is now administrator.",
"alerts.confirm-remove-admin": "Do you really want to remove this administrator?",
"alerts.remove-admin-success": "User is no longer administrator.",
"alerts.no-remove-yourself-admin": "Sebe kot skrbnika ne morete odstraniti!",
"alerts.make-admin-success": "Uporabnik je sedaj skrbnik.",
"alerts.confirm-remove-admin": "Ste prepričani, da želite odstraniti tega skrbnika?",
"alerts.remove-admin-success": "Uporabnik ni več skrbnik.",
"alerts.make-global-mod-success": "User is now global moderator.",
"alerts.confirm-remove-global-mod": "Do you really want to remove this global moderator?",
"alerts.remove-global-mod-success": "User is no longer global moderator.",
"alerts.make-moderator-success": "User is now moderator.",
"alerts.confirm-remove-moderator": "Do you really want to remove this moderator?",
"alerts.remove-moderator-success": "User is no longer moderator.",
"alerts.confirm-validate-email": "Do you want to validate email(s) of these user(s)?",
"alerts.confirm-force-password-reset": "Are you sure you want to force the password reset and log out these user(s)?",
"alerts.validate-email-success": "Emails validated",
"alerts.validate-force-password-reset-success": "User(s) passwords have been reset and their existing sessions have been revoked.",
"alerts.password-reset-confirm": "Do you want to send password reset email(s) to these user(s)?",
"alerts.confirm-delete": "<strong>Warning!</strong><p>Do you really want to delete <strong>user(s)</strong>?</p><p>This action is not reversible! Only the user account will be deleted, their posts and topics will remain.</p>",
"alerts.delete-success": "User(s) Deleted!",
"alerts.confirm-validate-email": "Ali želite potrditi e-poštni(e) naslov(e) tega/teh uporabnika(ov)?",
"alerts.confirm-force-password-reset": "Ali ste prepričani, da želite vsiliti ponastavitev gesla in odjaviti te(ga) uporabnika(e)?",
"alerts.validate-email-success": "E-poštni naslovi so potrjeni",
"alerts.validate-force-password-reset-success": "Gesla uporabnikov so bila ponastavljena in obstoječe seje preklicane.",
"alerts.password-reset-confirm": "Ali želite poslati e-poštno sporočilo za obnovitev gesla temu/tem uporabniku(om)?",
"alerts.confirm-delete": "Opozorilo!</strong><p>Ali res želite izbrisati <strong>uporabnika(e)</strong>?</p><p>Tega dejanja ni mogoče razveljaviti! Izbrisan bo samo uporabniški račun, njegove objave in teme bodo ostale.</p>\n",
"alerts.delete-success": "Uporabnik(i) je/so izbrisan(i)!",
"alerts.confirm-delete-content": "<strong>Warning!</strong><p>Do you really want to delete these user(s) <strong>content</strong>?</p><p>This action is not reversible! The users' accounts will remain, but their posts and topics will be deleted.</p>",
"alerts.delete-content-success": "User(s) Content Deleted!",
"alerts.delete-content-success": "Vsebina uporabnika(ov) je izbrisana!",
"alerts.confirm-purge": "<strong>Warning!</strong><p>Do you really want to delete <strong>user(s) and their content</strong>?</p><p>This action is not reversible! All user data and content will be erased!</p>",
"alerts.create": "Create User",
"alerts.button-create": "Create",
"alerts.button-cancel": "Cancel",
"alerts.error-passwords-different": "Passwords must match!",
"alerts.error-x": "<strong>Error</strong><p>%1</p>",
"alerts.create-success": "User created!",
"alerts.create": "Ustvari uporabnika",
"alerts.button-create": "Ustvari",
"alerts.button-cancel": "Prekliči",
"alerts.error-passwords-different": "Gesli se morata ujemati!",
"alerts.error-x": "<strong>Napaka</strong><p>%1</p>",
"alerts.create-success": "Uporabnik je ustvarjen!",
"alerts.prompt-email": "Emails: ",
"alerts.email-sent-to": "An invitation email has been sent to %1",
"alerts.x-users-found": "%1 user(s) found, (%2 seconds)",
"export-users-started": "Exporting users as csv, this might take a while. You will receive a notification when it is complete.",
"export-users-completed": "Users exported as csv, click here to download."
"alerts.prompt-email": "E-poštni naslovi:",
"alerts.email-sent-to": "E -poštno sporočilo s povabilom je bilo poslano %1",
"alerts.x-users-found": "%1 najdenih uporabnik(ov), (%2 sekund)",
"export-users-started": "Izvoz uporabnikov kot CSV lahko traja nekaj časa. Ko bo končano, boste prejeli obvestilo.",
"export-users-completed": "Uporabniki, izvoženi kot CSV, kliknite tukaj za prenos."
}

@ -1,82 +1,82 @@
{
"section-dashboard": "Dashboards",
"dashboard/overview": "Overview",
"dashboard/logins": "Logins",
"dashboard/users": "Users",
"dashboard/topics": "Topics",
"section-general": "General",
"dashboard/logins": "Prijave",
"dashboard/users": "Uporabniki",
"dashboard/topics": "Teme",
"section-general": "Splošno",
"section-manage": "Manage",
"manage/categories": "Categories",
"section-manage": "Upravljaj",
"manage/categories": "Kategorije",
"manage/privileges": "Privileges",
"manage/tags": "Tags",
"manage/users": "Users",
"manage/tags": "Oznake",
"manage/users": "Uporabniki",
"manage/admins-mods": "Admins & Mods",
"manage/registration": "Registration Queue",
"manage/post-queue": "Post Queue",
"manage/groups": "Groups",
"manage/ip-blacklist": "IP Blacklist",
"manage/registration": "Čakalna vrsta registracij",
"manage/post-queue": "Čakalna vrsta objav",
"manage/groups": "Skupine",
"manage/ip-blacklist": "IP črna lista",
"manage/uploads": "Uploads",
"manage/digest": "Digests",
"section-settings": "Settings",
"settings/general": "General",
"settings/homepage": "Home Page",
"settings/navigation": "Navigation",
"settings/reputation": "Reputation & Flags",
"settings/email": "Email",
"settings/user": "Users",
"settings/group": "Groups",
"settings/guest": "Guests",
"section-settings": "Nastavitve",
"settings/general": "Splošno",
"settings/homepage": "Domača stran",
"settings/navigation": "Krmarjenje",
"settings/reputation": "Ugled in zastavice",
"settings/email": "E-pošta",
"settings/user": "Uporabniki",
"settings/group": "Skupine",
"settings/guest": "Gostje",
"settings/uploads": "Uploads",
"settings/languages": "Languages",
"settings/post": "Posts",
"settings/chat": "Chats",
"settings/pagination": "Pagination",
"settings/tags": "Tags",
"settings/notifications": "Notifications",
"settings/languages": "Jeziki",
"settings/post": "Objave",
"settings/chat": "Klepeti",
"settings/pagination": "Številčenje strani",
"settings/tags": "Oznake",
"settings/notifications": "Obvestila",
"settings/api": "API Access",
"settings/sounds": "Sounds",
"settings/sounds": "Zvoki",
"settings/social": "Social",
"settings/cookies": "Cookies",
"settings/cookies": "Piškotki",
"settings/web-crawler": "Web Crawler",
"settings/sockets": "Sockets",
"settings/advanced": "Advanced",
"settings/sockets": "Vtičnice",
"settings/advanced": "Napredno",
"settings.page-title": "%1 Settings",
"settings.page-title": "%1 nastavitve",
"section-appearance": "Appearance",
"appearance/themes": "Themes",
"section-appearance": "Videz",
"appearance/themes": "Teme",
"appearance/skins": "Skins",
"appearance/customise": "Custom Content (HTML/JS/CSS)",
"section-extend": "Extend",
"extend/plugins": "Plugins",
"extend/plugins": "Vtičniki",
"extend/widgets": "Widgets",
"extend/rewards": "Rewards",
"extend/rewards": "Nagrade",
"section-social-auth": "Social Authentication",
"section-plugins": "Plugins",
"extend/plugins.install": "Install Plugins",
"section-plugins": "Vtičniki",
"extend/plugins.install": "Namesti vtičnike",
"section-advanced": "Advanced",
"advanced/database": "Database",
"advanced/events": "Events",
"section-advanced": "Napredno",
"advanced/database": "Podatkovna baza",
"advanced/events": "Dogodki",
"advanced/hooks": "Hooks",
"advanced/logs": "Logs",
"advanced/errors": "Errors",
"advanced/logs": "Prijave",
"advanced/errors": "Napake",
"advanced/cache": "Cache",
"development/logger": "Logger",
"development/info": "Info",
"rebuild-and-restart-forum": "Rebuild & Restart Forum",
"restart-forum": "Restart Forum",
"logout": "Log out",
"restart-forum": "Ponovno zaženi forum",
"logout": "Odjavi se",
"view-forum": "View Forum",
"search.placeholder": "Press &quot;/&quot; to search for settings",
"search.no-results": "No results...",
"search.no-results": "Ni rezultatov...",
"search.search-forum": "Search the forum for <strong></strong>",
"search.keep-typing": "Type more to see results...",
"search.start-typing": "Start typing to see results...",
@ -84,5 +84,5 @@
"connection-lost": "Connection to %1 has been lost, attempting to reconnect...",
"alerts.version": "Running <strong>NodeBB v%1</strong>",
"alerts.upgrade": "Upgrade to v%1"
"alerts.upgrade": "Nadgradi na v%1"
}

@ -1,9 +1,9 @@
{
"maintenance-mode": "Maintenance Mode",
"maintenance-mode.help": "When the forum is in maintenance mode, all requests will be redirected to a static holding page. Administrators are exempt from this redirection, and are able to access the site normally.",
"maintenance-mode.status": "Maintenance Mode Status Code",
"maintenance-mode.message": "Maintenance Message",
"headers": "Headers",
"maintenance-mode": "Način vzdrževanja",
"maintenance-mode.help": "Ko je forum v načinu vzdrževanja, bodo vse zahteve preusmerjene na statično stran za shranjevanje. Skrbniki so izvzeti iz te preusmeritve in lahko normalno dostopajo do spletnega mesta.",
"maintenance-mode.status": "Koda stanja načina vzdrževanja",
"maintenance-mode.message": "Sporočilo o vzdrževanju",
"headers": "Glave",
"headers.allow-from": "Set ALLOW-FROM to Place NodeBB in an iFrame",
"headers.csp-frame-ancestors": "Set Content-Security-Policy frame-ancestors header to Place NodeBB in an iFrame",
"headers.csp-frame-ancestors-help": "'none', 'self'(default) or list of URIs to allow.",
@ -16,28 +16,28 @@
"headers.acam": "Access-Control-Allow-Methods",
"headers.acah": "Access-Control-Allow-Headers",
"hsts": "Strict Transport Security",
"hsts.enabled": "Enabled HSTS (recommended)",
"hsts.enabled": "Omogočen HSTS (priporočeno)",
"hsts.maxAge": "HSTS Max Age",
"hsts.subdomains": "Include subdomains in HSTS header",
"hsts.preload": "Allow preloading of HSTS header",
"hsts.help": "If enabled, an HSTS header will be set for this site. You can elect to include subdomains and preloading flags in your header. If in doubt, you can leave these unchecked. <a href=\"%1\">More information <i class=\"fa fa-external-link\"></i></a>",
"traffic-management": "Traffic Management",
"traffic.help": "NodeBB uses a module that automatically denies requests in high-traffic situations. You can tune these settings here, although the defaults are a good starting point.",
"traffic.enable": "Enable Traffic Management",
"hsts.subdomains": "V glavo HSTS vključi poddomene",
"hsts.preload": "Dovoli prednalaganje glave HSTS",
"hsts.help": "Če je omogočeno, bo za to spletno mesto nastavljena glava HSTS. Lahko se odločite za vključitev poddomen in zastavic za vnaprejšnje nalaganje v glavo. Če ste v dvomih, jih lahko pustite neoznačene. <a href=\"%1\">Več informacij <i class=\"fa fa-external-link\"></i></a>",
"traffic-management": "Upravljanje prometa",
"traffic.help": "NodeBB uporablja modul, ki v situacijah z velikim prometom samodejno zavrne zahteve. Tu lahko prilagajate te nastavitve, čeprav so privzete nastavitve dobro izhodišče.",
"traffic.enable": "Omogoči upravljanje prometa",
"traffic.event-lag": "Event Loop Lag Threshold (in milliseconds)",
"traffic.event-lag-help": "Lowering this value decreases wait times for page loads, but will also show the \"excessive load\" message to more users. (Restart required)",
"traffic.event-lag-help": "Z znižanjem te vrednosti se skrajšajo čakalne dobe za nalaganje strani, hkrati pa bo več uporabnikom prikazano sporočilo »čezmerna obremenitev«. (Potreben ponovni zagon)",
"traffic.lag-check-interval": "Check Interval (in milliseconds)",
"traffic.lag-check-interval-help": "Lowering this value causes NodeBB to become more sensitive to spikes in load, but may also cause the check to become too sensitive. (Restart required)",
"sockets.settings": "WebSocket Settings",
"sockets.max-attempts": "Max Reconnection Attempts",
"sockets.default-placeholder": "Default: %1",
"sockets.default-placeholder": "Privzeto: %1",
"sockets.delay": "Reconnection Delay",
"analytics.settings": "Analytics Settings",
"analytics.max-cache": "Analytics Cache Max Value",
"analytics.max-cache-help": "On high-traffic installs, the cache could be exhausted continuously if there are more concurrent active users than the Max Cache value. (Restart required)",
"compression.settings": "Compression Settings",
"compression.enable": "Enable Compression",
"compression.help": "This setting enables gzip compression. For a high-traffic website in production, the best way to put compression in place is to implement it at a reverse proxy level. You can enable it here for testing purposes."
"analytics.max-cache-help": "Pri namestitvah z velikim prometom bi se lahko predpomnilnik neprestano izčrpal, če je hkrati aktivnih uporabnikov več kot je največja vrednost predpomnilnika. (Potreben ponovni zagon)",
"compression.settings": "Nastavitve stiskanja",
"compression.enable": "Omogoči stiskanje",
"compression.help": "Ta nastavitev omogoča stiskanje GZIP. Za produkcijsko spletno mesto z velikim prometom je najboljši način za uvedbo stiskanja izvajanje na obratni ravni proxyja. Za namene testiranja ga lahko omogočite tukaj."
}

@ -1,16 +1,16 @@
{
"tokens": "Tokens",
"settings": "Settings",
"lead-text": "From this page you can configure access to the Write API in NodeBB.",
"intro": "By default, the Write API authenticates users based on their session cookie, but NodeBB also supports Bearer authentication via tokens generated via this page.",
"docs": "Click here to access the full API specification",
"tokens": "Žetoni",
"settings": "Nastavitve",
"lead-text": "Na tej strani lahko konfigurirate dostop do API-ja za pisanje v NodeBB.",
"intro": "API za pisanje privzeto preverja uporabnike na podlagi njihovega piškotka seje, vendar NodeBB podpira tudi preverjanje pristnosti nosilca prek žetonov, ustvarjenih na tej strani.",
"docs": "Kliknite tukaj za dostop do celotne specifikacije API-ja",
"require-https": "Require API usage via HTTPS only",
"require-https-caveat": "<strong>Note</strong>: Some installations involving load balancers may proxy their requests to NodeBB using HTTP, in which case this option should remain disabled.",
"require-https": "Zahtevaj uporabo API samo prek protokola HTTPS",
"require-https-caveat": "<strong>Opomba</strong>: Nekatere namestitve, ki vključujejo izravnalnike obremenitve, lahko svoje zahteve posredujejo NodeBB prek protokola HTTP, v tem primeru bi morala ta možnost ostati onemogočena.",
"uid": "User ID",
"uid-help-text": "Specify a User ID to associate with this token. If the user ID is <code>0</code>, it will be considered a <em>master</em> token, which can assume the identity of other users based on the <code>_uid</code> parameter",
"description": "Description",
"no-description": "No description specified.",
"token-on-save": "Token will be generated once form is saved"
"uid": "ID uporabnika",
"uid-help-text": "Določite ID uporabnika, ki ga želite povezati s tem žetonom. Če je ID uporabnika <code>0</code>, bo veljal za <em>glavni</em> žeton, ki lahko prevzame identiteto drugih uporabnikov na podlagi parametra <code>_uid</code>",
"description": "Opis",
"no-description": "Opis ni naveden.",
"token-on-save": "Žeton bo ustvarjen, ko bo obrazec shranjen"
}

@ -1,9 +1,9 @@
{
"chat-settings": "Chat Settings",
"disable": "Disable chat",
"disable-editing": "Disable chat message editing/deletion",
"chat-settings": "Nastavitve klepeta",
"disable": "Onemogoči klepet",
"disable-editing": "Onemogoči urejanje/brisanje sporočila klepeta",
"disable-editing-help": "Administrators and global moderators are exempt from this restriction",
"max-length": "Maximum length of chat messages",
"max-length": "Največja dolžina sporočila klepeta",
"max-room-size": "Maximum number of users in chat rooms",
"delay": "Time between chat messages in milliseconds",
"notification-delay": "Notification delay for chat messages. (0 for no delay)",

@ -1,13 +1,13 @@
{
"eu-consent": "EU Consent",
"consent.enabled": "Enabled",
"eu-consent": "EU soglasje",
"consent.enabled": "Omogočeno",
"consent.message": "Notification message",
"consent.acceptance": "Acceptance message",
"consent.link-text": "Policy Link Text",
"consent.link-url": "Policy Link URL",
"consent.blank-localised-default": "Leave blank to use NodeBB localised defaults",
"settings": "Settings",
"settings": "Nastavitve",
"cookie-domain": "Session cookie domain",
"max-user-sessions": "Max active sessions per user",
"blank-default": "Leave blank for default"
"max-user-sessions": "Največ aktivnih sej na uporabnika",
"blank-default": "Za privzeto pusti prazno"
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -1,27 +1,27 @@
{
"site-settings": "Site Settings",
"title": "Site Title",
"title.short": "Short Title",
"title.short-placeholder": "If no short title is specified, the site title will be used",
"site-settings": "Nastavitve spletnega mesta",
"title": "Naslov spletnega mesta",
"title.short": "Kratki naslov",
"title.short-placeholder": "Če kratek naslov ni naveden, bo uporabljen naslov spletnega mesta",
"title.url": "URL",
"title.url-placeholder": "The URL of the site title",
"title.url-placeholder": "URL naslova spletnega mesta",
"title.url-help": "When the title is clicked, send users to this address. If left blank, user will be sent to the forum index.",
"title.name": "Your Community Name",
"title.show-in-header": "Show Site Title in Header",
"browser-title": "Browser Title",
"browser-title-help": "If no browser title is specified, the site title will be used",
"title-layout": "Title Layout",
"title.name": "Ime vaše skupnosti",
"title.show-in-header": "V glavi pokaži naslov strani",
"browser-title": "Naslov brskalnika",
"browser-title-help": "Če naslov brskalnika ni naveden, bo uporabljen naslov spletnega mesta",
"title-layout": "Postavitev naslova",
"title-layout-help": "Define how the browser title will be structured ie. &#123;pageTitle&#125; | &#123;browserTitle&#125;",
"description.placeholder": "A short description about your community",
"description": "Site Description",
"keywords": "Site Keywords",
"keywords-placeholder": "Keywords describing your community, comma-separated",
"logo": "Site Logo",
"logo.image": "Image",
"logo.image-placeholder": "Path to a logo to display on forum header",
"description.placeholder": "Kratek opis vaše skupnosti",
"description": "Opis spletne strani",
"keywords": "Ključne besede spletnega mesta",
"keywords-placeholder": "Ključne besede, ki opisujejo vašo skupnost, ločene z vejicami",
"logo": "Logotip spletnega mesta",
"logo.image": "Slika",
"logo.image-placeholder": "Pot do logotipa za prikaz v glavi foruma",
"logo.upload": "Upload",
"logo.url": "URL",
"logo.url-placeholder": "The URL of the site logo",
"logo.url-placeholder": "URL logotipa spletnega mesta",
"logo.url-help": "When the logo is clicked, send users to this address. If left blank, user will be sent to the forum index.",
"logo.alt-text": "Alt Text",
"log.alt-text-placeholder": "Alternative text for accessibility",
@ -33,18 +33,18 @@
"touch-icon.help": "Recommended size and format: 512x512, PNG format only. If no touch icon is specified, NodeBB will fall back to using the favicon.",
"maskable-icon": "Maskable (Homescreen) Icon",
"maskable-icon.help": "Recommended size and format: 512x512, PNG format only. If no maskable icon is specified, NodeBB will fall back to the Touch Icon.",
"outgoing-links": "Outgoing Links",
"outgoing-links": "Odhodne povezave",
"outgoing-links.warning-page": "Use Outgoing Links Warning Page",
"search": "Search",
"search-default-in": "Search In",
"search-default-in-quick": "Quick Search In",
"search-default-sort-by": "Sort by",
"search": "Išči",
"search-default-in": "Išči v",
"search-default-in-quick": "Hitro išči v",
"search-default-sort-by": "Razvrsti po",
"outgoing-links.whitelist": "Domains to whitelist for bypassing the warning page",
"site-colors": "Site Color Metadata",
"theme-color": "Theme Color",
"background-color": "Background Color",
"background-color-help": "Color used for splash screen background when website is installed as a PWA",
"undo-timeout": "Undo Timeout",
"undo-timeout-help": "Some operations such as moving topics will allow for the moderator to undo their action within a certain timeframe. Set to 0 to disable undo completely.",
"site-colors": "Metapodatki o barvi spletnega mesta",
"theme-color": "Barva teme",
"background-color": "Barva ozadja",
"background-color-help": "Barva, ki se uporablja za ozadje začetnega zaslona, ko je spletno mesto nameščeno kot PWA",
"undo-timeout": "Razveljavi časovno omejitev",
"undo-timeout-help": "Nekatere operacije, kot so premikanje tem, bodo moderatorju omogočile, da v določenem časovnem okviru razveljavi svoje dejanje. Nastavite na 0, da popolnoma onemogočite razveljavitev.",
"topic-tools": "Topic Tools"
}

@ -1,6 +1,6 @@
{
"general": "General",
"private-groups": "Private Groups",
"general": "Splošno",
"private-groups": "Zasebne skupine",
"private-groups.help": "If enabled, joining of groups requires the approval of the group owner <em>(Default: enabled)</em>",
"private-groups.warning": "<strong>Beware!</strong> If this option is disabled and you have private groups, they automatically become public.",
"allow-multiple-badges": "Allow Multiple Badges",

@ -1,5 +1,5 @@
{
"settings": "Settings",
"settings": "Nastavitve",
"handles.enabled": "Allow guest handles",
"handles.enabled-help": "This option exposes a new field that allows guests to pick a name to associate with each post they make. If disabled, they will simply be called \"Guest\"",
"topic-views.enabled": "Allow guests to increase topic view counts",

@ -1,8 +1,8 @@
{
"home-page": "Home Page",
"description": "Choose what page is shown when users navigate to the root URL of your forum.",
"home-page-route": "Home Page Route",
"custom-route": "Custom Route",
"allow-user-home-pages": "Allow User Home Pages",
"home-page-title": "Title of the home page (default \"Home\")"
"home-page": "Domača stran",
"description": "Izberite, katera stran se prikaže, ko se uporabniki pomaknejo do korenskega URL-ja vašega foruma.",
"home-page-route": "Pot do domače strani",
"custom-route": "Pot po meri",
"allow-user-home-pages": "Dovoli domače strani uporabnikov",
"home-page-title": "Naslov domače strani (privzeto »Domača stran«)"
}

@ -1,6 +1,6 @@
{
"language-settings": "Language Settings",
"description": "The default language determines the language settings for all users who are visiting your forum. <br />Individual users can override the default language on their account settings page.",
"default-language": "Default Language",
"auto-detect": "Auto Detect Language Setting for Guests"
"language-settings": "Nastavitve jezika",
"description": "Privzeti jezik določa jezikovne nastavitve za vse uporabnike, ki obiščejo vaš forum. <br /> Posamezni uporabniki lahko na strani z nastavitvami računa preglasijo privzeti jezik.",
"default-language": "Privzeti jezik",
"auto-detect": "Samodejna zaznava nastavitev jezika za goste"
}

@ -1,23 +1,23 @@
{
"icon": "Icon:",
"icon": "Ikona:",
"change-icon": "change",
"route": "Route:",
"route": "Pot:",
"tooltip": "Tooltip:",
"text": "Text:",
"text": "Besedilo:",
"text-class": "Text Class: <small>optional</small>",
"class": "Class: <small>optional</small>",
"id": "ID: <small>optional</small>",
"id": "ID: <small>izbirno</small>",
"properties": "Properties:",
"groups": "Groups:",
"open-new-window": "Open in a new window",
"properties": "Lastnosti:",
"groups": "Skupine",
"open-new-window": "Odpri v novem oknu",
"btn.delete": "Delete",
"btn.disable": "Disable",
"btn.enable": "Enable",
"btn.delete": "Izbriši",
"btn.disable": "Onemogoči",
"btn.enable": "Omogoči",
"available-menu-items": "Available Menu Items",
"custom-route": "Custom Route",
"core": "core",
"plugin": "plugin"
"available-menu-items": "Razpoložljivi elementi menija",
"custom-route": "Pot po meri",
"core": "jedro",
"plugin": "vtičnik"
}

@ -1,6 +1,6 @@
{
"notifications": "Notifications",
"welcome-notification": "Welcome Notification",
"welcome-notification-link": "Welcome Notification Link",
"welcome-notification-uid": "Welcome Notification User (UID)"
"notifications": "Obvestila",
"welcome-notification": "Obvestilo o dobrodošlici",
"welcome-notification-link": "Povezava do obvestila o dobrodošlici",
"welcome-notification-uid": "Obvestilo o dobrodošlici za uporabnika (UID)"
}

@ -1,12 +1,12 @@
{
"pagination": "Pagination Settings",
"enable": "Paginate topics and posts instead of using infinite scroll.",
"posts": "Post Pagination",
"topics": "Topic Pagination",
"posts-per-page": "Posts per Page",
"max-posts-per-page": "Maximum posts per page",
"categories": "Category Pagination",
"topics-per-page": "Topics per Page",
"max-topics-per-page": "Maximum topics per page",
"categories-per-page": "Categories per page"
"pagination": "Nastavitve številčenja",
"enable": "Namesto neskončnega drsenja uporabite številčenje tem in objav.",
"posts": "Številčenje objav",
"topics": "Številčenje tem",
"posts-per-page": "Objav na stran",
"max-posts-per-page": "Največ objav na stran",
"categories": "Številčenje kategorij",
"topics-per-page": "Tem na stran",
"max-topics-per-page": "Največ tem na stran",
"categories-per-page": "Kategorij na stran"
}

@ -1,62 +1,62 @@
{
"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",
"restrictions": "Posting Restrictions",
"restrictions-new": "New User Restrictions",
"restrictions.post-queue": "Enable post queue",
"restrictions.post-queue-rep-threshold": "Reputation required to bypass post queue",
"restrictions.groups-exempt-from-post-queue": "Select groups that should be exempt from the post queue",
"restrictions-new.post-queue": "Enable new user restrictions",
"restrictions.post-queue-help": "Enabling post queue will put the posts of new users in a queue for approval",
"restrictions-new.post-queue-help": "Enabling new user restrictions will set restrictions on posts created by new users",
"restrictions.seconds-between": "Number of seconds between posts",
"restrictions.seconds-between-new": "Seconds between posts for new users",
"sorting": "Razvrščanje objav",
"sorting.post-default": "Privzeto razvrščanje objav",
"sorting.oldest-to-newest": "Najstarejše do najnovejše",
"sorting.newest-to-oldest": "Najnovejše do najstarejše",
"sorting.most-votes": "Največ glasov",
"sorting.most-posts": "Največ objav",
"sorting.topic-default": "Privzeto razvrščanje tem",
"length": "Dolžina objave",
"post-queue": "Čakalna vrsta objav",
"restrictions": "Omejitve objavljanja",
"restrictions-new": "Omejitve novega uporabnika",
"restrictions.post-queue": "Omogoči čakalno vrsto objav",
"restrictions.post-queue-rep-threshold": "Da se izogne čakalni vrsti objav je potreben ugled",
"restrictions.groups-exempt-from-post-queue": "Izberite skupine, ki bi morale biti izvzete iz čakalne vrste objav",
"restrictions-new.post-queue": "Omogoči omejitve novega uporabnika",
"restrictions.post-queue-help": "Če omogočite čakalno vrsto objav, bodo objave novih uporabnikov postavljene v čakalno vrsto za odobritev",
"restrictions-new.post-queue-help": "Omogočanje omejitev za nove uporabnike bo postavilo omejitve za objave novih uporabnikov",
"restrictions.seconds-between": "Število sekund med objavami",
"restrictions.seconds-between-new": "Sekunde med objavami za novega uporabnika",
"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.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)",
"restrictions.seconds-before-new": "Sekunde, preden lahko nov uporabnik objavi svojo prvo objavo",
"restrictions.seconds-edit-after": "Število sekund, ko je objavo še mogoče urejati (nastavite na 0, da onemogočite)",
"restrictions.seconds-delete-after": "Število sekund, ko je objavo še mogoče izbrisati (nastavite na 0, da onemogočite)",
"restrictions.replies-no-delete": "Število odgovorov, ko uporabnikom ni dovoljeno izbrisati lastnih tem (nastavite na 0, da onemogočite)",
"restrictions.min-title-length": "Najmanjša dolžina naslova",
"restrictions.max-title-length": "Največja dolžina naslova",
"restrictions.min-post-length": "Najmanjša dolžina objave",
"restrictions.max-post-length": "Največja dolžina objave",
"restrictions.days-until-stale": "Število dni, dokler se tema ne šteje za zastarelo",
"restrictions.stale-help": "Če se tema šteje za \"zastarelo\", bo uporabnikom, ki poskušajo odgovoriti na to temo, prikazano opozorilo.",
"timestamp": "Časovni žig",
"timestamp.cut-off": "Mejni datum (v dneh)",
"timestamp.cut-off-help": "Dates &amp; 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>",
"timestamp.topic-views-interval": "Increment topic views interval (in minutes)",
"timestamp.topic-views-interval-help": "Topic views will only increment once every X minutes as defined by this setting.",
"timestamp.topic-views-interval": "Povečanje intervala ogledov teme (v minutah)",
"timestamp.topic-views-interval-help": "Ogledi tem se bodo povečali le enkrat na vsakih X minut, kot je določeno s to nastavitvijo.",
"teaser": "Teaser Post",
"teaser.last-post": "Last &ndash; Show the latest post, including the original post, if no replies",
"teaser.last-reply": "Last &ndash; Show the latest reply, or a \"No replies\" placeholder if no replies",
"teaser.first": "First",
"unread": "Unread Settings",
"teaser.last-post": "Zadnja &ndash; Prikaži najnovejšo objavo, vključno z izvirno, če ni odgovorov",
"teaser.last-reply": "Zadnja &ndash; Prikaži najnovejši odgovor ali \"Ni odgovorov\", če ni odgovorov",
"teaser.first": "Prvi",
"unread": "Neprebrane nastavitve",
"unread.cutoff": "Unread cutoff days",
"unread.min-track-last": "Minimum posts in topic before tracking last read",
"recent": "Recent Settings",
"unread.min-track-last": "Najmanjše število objav v temi pred sledenjem zadnjem branju",
"recent": "Nedavne nastavitve",
"recent.max-topics": "Maximum topics on /recent",
"recent.categoryFilter.disable": "Disable filtering of topics in ignored categories on the /recent page",
"signature": "Signature Settings",
"signature.disable": "Disable signatures",
"signature.no-links": "Disable links in signatures",
"signature.no-images": "Disable images in signatures",
"signature.max-length": "Maximum Signature Length",
"signature": "Nastavitve podpisa",
"signature.disable": "Onemogoči podpise",
"signature.no-links": "Onemogoči povezave v podpisih",
"signature.no-images": "Onemogoči slike v podpisih",
"signature.max-length": "Največja dolžina podpisa",
"composer": "Composer Settings",
"composer-help": "The following settings govern the functionality and/or appearance of the post composer shown\n\t\t\t\tto users when they create new topics, or reply to existing topics.",
"composer.show-help": "Show \"Help\" tab",
"composer.enable-plugin-help": "Allow plugins to add content to the help tab",
"composer.custom-help": "Custom Help Text",
"ip-tracking": "IP Tracking",
"ip-tracking.each-post": "Track IP Address for each post",
"enable-post-history": "Enable Post History"
"composer.show-help": "Prikaži zavihek \"Pomoč\"",
"composer.enable-plugin-help": "Dovoli vtičnikom dodajanje vsebine na zavihek za pomoč",
"composer.custom-help": "Besedilo pomoči po meri",
"ip-tracking": "IP sledenje",
"ip-tracking.each-post": "Sledi IP naslov za vsako objavo",
"enable-post-history": "Omogoči zgodovino objav"
}

@ -1,22 +1,22 @@
{
"reputation": "Reputation Settings",
"disable": "Disable Reputation System",
"disable-down-voting": "Disable Down Voting",
"votes-are-public": "All Votes Are Public",
"reputation": "Nastavitve ugleda",
"disable": "Onemogoči sistem ugleda",
"disable-down-voting": "Onemogoči glasovanje proti",
"votes-are-public": "Vsi glasovi so javni",
"thresholds": "Activity Thresholds",
"min-rep-downvote": "Minimum reputation to downvote posts",
"downvotes-per-day": "Downvotes per day (set to 0 for unlimited downvotes)",
"downvotes-per-user-per-day": "Downvotes per user per day (set to 0 for unlimited downvotes)",
"min-rep-flag": "Minimum reputation to flag posts",
"min-rep-website": "Minimum reputation to add \"Website\" to user profile",
"min-rep-aboutme": "Minimum reputation to add \"About me\" to user profile",
"min-rep-signature": "Minimum reputation to add \"Signature\" to user profile",
"min-rep-profile-picture": "Minimum reputation to add \"Profile Picture\" to user profile",
"min-rep-cover-picture": "Minimum reputation to add \"Cover Picture\" to user profile",
"min-rep-downvote": "Najmanjši ugled za objavo glasov proti",
"downvotes-per-day": "Glasovi proti na dan (nastavljeno na 0 za neomejeno število glasov proti)",
"downvotes-per-user-per-day": "Glasovi proti na uporabnika na dan (nastavljeno na 0 za neomejeno število glasov proti)",
"min-rep-flag": "Najmanjši ugled za označevanje objav z zastavico",
"min-rep-website": "Najmanjši ugled za dodajanje \"Spletna stran\" v uporabniški profil",
"min-rep-aboutme": "Najmanjši ugled za dodajanje \"O meni\" v uporabniški profil",
"min-rep-signature": "Najmanjši ugled za dodajanje \"Podpis\" v uporabniški profil",
"min-rep-profile-picture": "Najmanjši ugled za dodajanje \"Profilna slika\" v uporabniški profil",
"min-rep-cover-picture": "Najmanjši ugled za dodajanje \"Naslovna slika\" v uporabniški profil",
"flags": "Flag Settings",
"flags.limit-per-target": "Maximum number of times something can be flagged",
"flags.limit-per-target-placeholder": "Default: 0",
"flags.limit-per-target-help": "When a post or user is flagged multiple times, each additional flag is considered a &quot;report&quot; and added to the original flag. Set this option to a number other than zero to limit the number of reports an item can receive.",
"flags.limit-per-target": "Največkrat, ko je mogoče nekaj označiti z zastavico",
"flags.limit-per-target-placeholder": "Privzeto: 0",
"flags.limit-per-target-help": "Ko je objava ali uporabnik večkrat označen z zastavico, se vsaka dodatna zastavica šteje za & quot;poročilo&quot; in dodana prvotni zastavici. To možnost nastavite na število, različno od nič, da omejite število poročil, ki jih element lahko prejme.",
"flags.auto-resolve-on-ban": "Automatically resolve all of a user's tickets when they are banned"
}

@ -1,5 +1,5 @@
{
"post-sharing": "Post Sharing",
"info-plugins-additional": "Plugins can add additional networks for sharing posts.",
"save-success": "Successfully saved Post Sharing Networks!"
"post-sharing": "Deljenje objav",
"info-plugins-additional": "Vtičniki lahko dodajo dodatna omrežja za deljenje objav.",
"save-success": "Uspešno shranjena omrežja za deljenje objav!"
}

@ -1,6 +1,6 @@
{
"reconnection": "Reconnection Settings",
"max-attempts": "Max Reconnection Attempts",
"default-placeholder": "Default: %1",
"delay": "Reconnection Delay"
"reconnection": "Nastavitve vzpostavitve ponovne povezave",
"max-attempts": "Največ poskusov vzpostavitve ponovne povezave",
"default-placeholder": "Privzeto: %1",
"delay": "Zamuda pri vzpostavitvi ponovne povezave"
}

@ -1,9 +1,9 @@
{
"notifications": "Notifications",
"chat-messages": "Chat Messages",
"play-sound": "Play",
"incoming-message": "Incoming Message",
"outgoing-message": "Outgoing Message",
"upload-new-sound": "Upload New Sound",
"saved": "Settings Saved"
"notifications": "Obvestila",
"chat-messages": "Sporočila klepeta",
"play-sound": "Predvajaj",
"incoming-message": "Dohodno sporočilo",
"outgoing-message": "Odhodno sporočilo",
"upload-new-sound": "Naloži nov zvok",
"saved": "Nastavitve so shranjene"
}

@ -1,12 +1,12 @@
{
"tag": "Tag Settings",
"link-to-manage": "Manage Tags",
"tag": "Nastavitve oznak",
"link-to-manage": "Upravljaj oznake",
"system-tags": "System Tags",
"system-tags-help": "Only privileged users will be able to use these tags.",
"min-per-topic": "Minimum Tags per Topic",
"max-per-topic": "Maximum Tags per Topic",
"min-length": "Minimum Tag Length",
"max-length": "Maximum Tag Length",
"related-topics": "Related Topics",
"max-related-topics": "Maximum related topics to display (if supported by theme)"
"system-tags-help": "Ze oznake bodo lahko uporabljali le privilegirani uporabniki.",
"min-per-topic": "Najmanj oznak na temo",
"max-per-topic": "Največ oznak na temo",
"min-length": "Najmanjša dolžina oznake",
"max-length": "Največja dolžina oznake",
"related-topics": "Sorodne teme",
"max-related-topics": "Največ sorodnih tem za prikaz (če jih tema podpira)"
}

@ -1,7 +1,7 @@
{
"posts": "Posts",
"allow-files": "Allow users to upload regular files",
"private": "Make uploaded files private",
"posts": "Objave",
"allow-files": "Dovoli uporabnikom nalaganje navadnih datotek",
"private": "Naložene datoteke označi kot zasebne",
"strip-exif-data": "Strip EXIF Data",
"private-extensions": "File extensions to make private",
"private-uploads-extensions-help": "Enter comma-separated list of file extensions to make private here (e.g. <code>pdf,xls,doc</code>). An empty list means all files are private.",
@ -19,7 +19,7 @@
"reject-image-height-help": "Images taller than this value will be rejected.",
"allow-topic-thumbnails": "Allow users to upload topic thumbnails",
"topic-thumb-size": "Topic Thumb Size",
"allowed-file-extensions": "Allowed File Extensions",
"allowed-file-extensions": "Dovoljene pripone datoteke",
"allowed-file-extensions-help": "Enter comma-separated list of file extensions here (e.g. <code>pdf,xls,doc</code>). An empty list means all extensions are allowed.",
"upload-limit-threshold": "Rate limit user uploads to:",
"upload-limit-threshold-per-minute": "Per %1 Minute",
@ -28,7 +28,7 @@
"allow-profile-image-uploads": "Allow users to upload profile images",
"convert-profile-image-png": "Convert profile image uploads to PNG",
"default-avatar": "Custom Default Avatar",
"upload": "Upload",
"upload": "Naloži",
"profile-image-dimension": "Profile Image Dimension",
"profile-image-dimension-help": "(in pixels, default: 128 pixels)",
"max-profile-image-size": "Maximum Profile Image File Size",

@ -1,62 +1,62 @@
{
"authentication": "Authentication",
"require-email-confirmation": "Require Email Confirmation",
"email-confirm-interval": "User may not resend a confirmation email until",
"authentication": "Preverjanje pristnosti",
"require-email-confirmation": "Zahtevaj potrditev po e-pošti",
"email-confirm-interval": "Uporabnik morda ne bo mogel znova poslati potrditvenega e-poštnega sporočila, dokler",
"email-confirm-email2": "minutes have elapsed",
"allow-login-with": "Allow login with",
"allow-login-with.username-email": "Username or Email",
"allow-login-with.username": "Username Only",
"allow-login-with.email": "Email Only",
"account-settings": "Account Settings",
"allow-login-with": "Dovoli prijavo z",
"allow-login-with.username-email": "Uporabniško ime ali e-poštni naslov",
"allow-login-with.username": "Samo uporabniško ime",
"allow-login-with.email": "Samo e-poštni naslov",
"account-settings": "Nastavitve računa",
"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://ec.europa.eu/info/priorities/justice-and-fundamental-rights/data-protection/2018-reform-eu-data-protection-rules/eu-data-protection-rules_en\">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.",
"disable-username-changes": "Disable username changes",
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"show-fullname-as-displayname": "Show user's full name as their display name if available",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",
"admin-relogin-duration": "Admin relogin duration (minutes)",
"disable-username-changes": "Onemogoči spreminjanje uporabniškega imena",
"disable-email-changes": "Onemogoči spreminjanje e-poštnega naslova",
"disable-password-changes": "Onemogoči spreminjanje gesla",
"allow-account-deletion": "Dovoli brisanje računa",
"hide-fullname": "Skrij polno ime pred uporabniki",
"hide-email": "Skrij e-poštni naslov pred uporabniki",
"show-fullname-as-displayname": "Prikaži uporabnikovo polno ime kot njegovo prikazno ime, če je na voljo",
"themes": "Teme",
"disable-user-skins": "Prepreči uporabnikom izbiro preobleke po meri",
"account-protection": "Zaščita računa",
"admin-relogin-duration": "Trajanje ponovne prijave skrbnika (v minutah)",
"admin-relogin-duration-help": "After a set amount of time accessing the admin section will require re-login, set to 0 to disable",
"login-attempts": "Login attempts per hour",
"login-attempts": "Število poskusov prijave na uro",
"login-attempts-help": "If login attempts to a user&apos;s account exceeds this threshold, that account will be locked for a pre-configured amount of time",
"lockout-duration": "Account Lockout Duration (minutes)",
"login-days": "Days to remember user login sessions",
"password-expiry-days": "Force password reset after a set number of days",
"session-time": "Session Time",
"session-time-days": "Days",
"session-time-seconds": "Seconds",
"lockout-duration": "Trajanje zaklepanja računa (v minutah)",
"login-days": "Dnevi za zapomnitev sej za prijavo uporabnikov",
"password-expiry-days": "Vsilite ponastavitev gesla po nastavljenem številu dni",
"session-time": "Čas seje",
"session-time-days": "Dni",
"session-time-seconds": "Sekund",
"session-time-help": "These values are used to govern how long a user stays logged in when they check &quot;Remember Me&quot; 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>.",
"online-cutoff": "Minutes after user is considered inactive",
"online-cutoff": "Minut po tem, ko je uporabnik neaktiven",
"online-cutoff-help": "If user performs no actions for this duration, they are considered inactive and they do not receive realtime updates.",
"registration": "User Registration",
"registration-type": "Registration Type",
"registration-approval-type": "Registration Approval Type",
"registration-type.normal": "Normal",
"registration": "Registracija uporabnika",
"registration-type": "Vrsta registracije",
"registration-approval-type": "Vrsta odobritve registracije",
"registration-type.normal": "Običajno",
"registration-type.admin-approval": "Admin Approval",
"registration-type.admin-approval-ip": "Admin Approval for IPs",
"registration-type.invite-only": "Invite Only",
"registration-type.invite-only": "Samo povabilo",
"registration-type.admin-invite-only": "Admin Invite Only",
"registration-type.disabled": "No registration",
"registration-type.help": "Normal - Users can register from the /register page.<br/>\nInvite Only - Users can invite others from the <a href=\"%1/users\" target=\"_blank\">users</a> page.<br/>\nAdmin Invite Only - Only administrators can invite others from <a href=\"%1/users\" target=\"_blank\">users</a> and <a href=\"%1/admin/manage/users\">admin/manage/users</a> pages.<br/>\nNo registration - No user registration.<br/>",
"registration-approval-type.help": "Normal - Users are registered immediately.<br/>\nAdmin Approval - User registrations are placed in an <a href=\"%1/admin/manage/registration\">approval queue</a> for administrators.<br/>\nAdmin Approval for IPs - Normal for new users, Admin Approval for IP addresses that already have an account.<br/>",
"registration-queue-auto-approve-time": "Automatic Approval Time",
"registration-queue-auto-approve-time-help": "Hours before user is approved automatically. 0 to disable.",
"registration-queue-auto-approve-time-help": "Ure do samodejne potrditve uporabnika. 0 da onemogočite.",
"registration-queue-show-average-time": "Show users average time it takes to approve a new user",
"registration.max-invites": "Maximum Invitations per User",
"max-invites": "Maximum Invitations per User",
"registration.max-invites": "Največje število povabil na uporabnika",
"max-invites": "Največje število povabil na uporabnika",
"max-invites-help": "0 for no restriction. Admins get infinite invitations<br>Only applicable for \"Invite Only\"",
"invite-expiration": "Invite expiration",
"invite-expiration-help": "# of days invitations expire in.",
"min-username-length": "Minimum Username Length",
"max-username-length": "Maximum Username Length",
"min-password-length": "Minimum Password Length",
"min-password-strength": "Minimum Password Strength",
"max-about-me-length": "Maximum About Me Length",
"invite-expiration-help": "Število dni, v katerih poteče povabilo.",
"min-username-length": "Najmanjša dolžina uporabniškega imena",
"max-username-length": "Največja dolžina uporabniškega imena",
"min-password-length": "Najmanjša dolžina gesla",
"min-password-strength": "Najmanjša moč gesla",
"max-about-me-length": "Največja dolžina O meni",
"terms-of-use": "Forum Terms of Use <small>(Leave blank to disable)</small>",
"user-search": "User Search",
"user-search-results-per-page": "Number of results to display",
@ -69,16 +69,16 @@
"update-url-with-post-index": "Update url with post index while browsing topics",
"digest-freq": "Subscribe to Digest",
"digest-freq.off": "Off",
"digest-freq.daily": "Daily",
"digest-freq.weekly": "Weekly",
"digest-freq.monthly": "Monthly",
"digest-freq.daily": "Dnevno",
"digest-freq.weekly": "Tedensko",
"digest-freq.monthly": "Mesečno",
"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",
"follow-created-topics": "Spremljanj teme, ki si jih ustvaril",
"follow-replied-topics": "Spremljanj teme, na katere si odgovoril",
"default-notification-settings": "Privzete nastavitve obveščanja",
"categoryWatchState": "Default category watch state",
"categoryWatchState.watching": "Watching",
"categoryWatchState.notwatching": "Not Watching",
"categoryWatchState.ignoring": "Ignoring"
"categoryWatchState.watching": "Spremljano",
"categoryWatchState.notwatching": "Ni spremljano",
"categoryWatchState.ignoring": "Prezrto"
}

@ -1,7 +1,7 @@
{
"lead": "Configure your IP blacklist here.",
"lead": "Tu nastavite svoj črni seznam IP.",
"description": "Occasionally, a user account ban is not enough of a deterrant. Other times, restricting access to the forum to a specific IP or a range of IPs is the best way to protect a forum. In these scenarios, you can add troublesome IP addresses or entire CIDR blocks to this blacklist, and they will be prevented from logging in to or registering a new account.",
"active-rules": "Active Rules",
"active-rules": "Aktivna pravila",
"validate": "Validate Blacklist",
"apply": "Apply Blacklist",
"hints": "Syntax Hints",

@ -1,18 +1,18 @@
{
"post-queue": "Post Queue",
"post-queue": "Čakalna vrsta objav",
"description": "There are no posts in the post queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; Post &rarr; Post Queue</a> and enable <strong>Post Queue</strong>.",
"user": "User",
"category": "Category",
"title": "Title",
"content": "Content",
"user": "Uporabnik",
"category": "Kategorija",
"title": "Naslov",
"content": "Vsebina",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
"reply-to": "Odgovor na %1",
"content-editable": "Za urejanje kliknite na vsebino",
"category-editable": "Za urejanje kliknite na kategorijo",
"title-editable": "Za urejanje kliknite na naslov",
"reply": "Odgovori",
"topic": "Tema",
"accept": "Sprejmi",
"reject": "Zavrni"
}

@ -1,27 +1,27 @@
{
"banned": "Izločen",
"offline": "Odjavljeni",
"deleted": "Deleted",
"deleted": "Izbrisano",
"username": "Uporabniško ime",
"joindate": "Datum pridružitve",
"postcount": "Število objav",
"email": "E-pošta",
"confirm_email": "Potrdi e-poštni naslov",
"account_info": "Podatki računa",
"admin_actions_label": "Administrative Actions",
"admin_actions_label": "Skrbniška dejanja",
"ban_account": "Izločen račun",
"ban_account_confirm": "Ali želiš izločiti uporabnika?",
"unban_account": "Ponovno vključi račun",
"delete_account": "Izbriši račun",
"delete_account_as_admin": "Delete <strong>Account</strong>",
"delete_content": "Delete Account <strong>Content</strong>",
"delete_all": "Delete <strong>Account</strong> and <strong>Content</strong>",
"delete_account_confirm": "Are you sure you want to anonymize your posts and delete your account?<br /><strong>This action is irreversible and you will not be able to recover any of your data</strong><br /><br />Enter your password to confirm that you wish to destroy this account.",
"delete_this_account_confirm": "Are you sure you want to delete this account while leaving its contents behind?<br /><strong>This action is irreversible, posts will be anonymized, and you will not be able to restore post associations with the deleted account</strong><br /><br />",
"delete_account_content_confirm": "Are you sure you want to delete this account's content (posts/topics/uploads)? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"delete_all_confirm": "Are you sure you want to delete this account and all of its content (posts/topics/uploads)? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"delete_account_as_admin": "Izbriši <strong>račun</strong>",
"delete_content": "Izbriši <strong>vsebino</strong> računa",
"delete_all": "Izbriši <strong>račun</strong> in <strong>vsebino</strong>",
"delete_account_confirm": "Ste prepričani, da želite anonimizirati vašo objavo in izbrisati vaš račun?<br /><strong>To dejanje je nepovratno in podatkov ne boste mogli obnoviti.</strong><br /><br />Vnesite svoje geslo za potrditev, da želite uničiti ta račun.",
"delete_this_account_confirm": "Ali ste prepričani, da želite izbrisati ta račun, pri tem pa pustiti vsebino za seboj?<br /> <strong>To dejanje je nepovratno, objave bodo anonimizirane in povezav objav z izbrisanim računom ne boste mogli obnoviti.</strong><br /><br />",
"delete_account_content_confirm": "Ali ste prepričani, da želite izbrisati vsebino tega računa (objave/teme/nalaganja)? <br /><strong>To dejanje je nepovratno in podatkov ne boste mogli obnoviti<br /><br />",
"delete_all_confirm": "Ali ste prepričani, da želite izbrisati ta račun in vso njegovo vsebino (objave/teme/nalaganja)? <br /><strong>To dejanje je nepovratno in podatkov ne boste mogli obnoviti</strong><br /><br />",
"account-deleted": "Račun je izbrisan",
"account-content-deleted": "Account content deleted",
"account-content-deleted": "Vsebina računa je izbrisana",
"fullname": "Ime in priimek",
"website": "Spletna stran",
"location": "Lokacija",
@ -33,23 +33,23 @@
"reputation": "Naziv",
"bookmarks": "Zaznamki",
"watched_categories": "Spremljane kategorije",
"change_all": "Change All",
"change_all": "Spremeni vse",
"watched": "Spremljano",
"ignored": "Ignored",
"default-category-watch-state": "Default category watch state",
"ignored": "Prezrto",
"default-category-watch-state": "Privzeto stanje spremljanja kategorij",
"followers": "Spremljevalci",
"following": "Spremljano",
"blocks": "Blocks",
"block_toggle": "Toggle Block",
"block_user": "Block User",
"unblock_user": "Unblock User",
"block_user": "Blokiraj uporabnika",
"unblock_user": "Odblokiraj uporabnika",
"aboutme": "O meni",
"signature": "Podpis",
"birthday": "Rojstni datum",
"chat": "Klepet",
"chat_with": "Continue chat with %1",
"new_chat_with": "Start new chat with %1",
"flag-profile": "Flag Profile",
"chat_with": "Nadaljuj klepet z %1",
"new_chat_with": "Prični nov klepet z %1",
"flag-profile": "Označi profil z zastavico",
"follow": "Spremljaj",
"unfollow": "Ne spremljaj",
"more": "Več",
@ -57,7 +57,7 @@
"change_picture": "Spremeni sliko",
"change_username": "Spremeni uporabniško ime",
"change_email": "Spremeni e-poštni naslov",
"email_same_as_password": "Please enter your current password to continue &ndash; you've entered your new email again",
"email_same_as_password": "Za nadaljevanje vnesite svoje trenutno geslo & ndash; ponovno ste vnesli svoj novi e-poštni naslov",
"edit": "Uredi",
"edit-profile": "Uredi profil",
"default_picture": "Privzeta ikona",
@ -76,15 +76,15 @@
"username_taken_workaround": "Predlagano uporabniško ime je že zasedeno, zato smo ga rahlo spremenili. Sedaj vas poznamo kot <strong>%1</strong>",
"password_same_as_username": "Vaše geslo je enako kot vaše uporabniško ime, prosim izberite drugačno geslo.",
"password_same_as_email": "Vaše geslo je enako kot vaše e-poštni naslov, prosim izberite drugačno geslo.",
"weak_password": "Weak password.",
"weak_password": "Šibko geslo.",
"upload_picture": "Naloži fotografijo",
"upload_a_picture": "Naloži fotografijo",
"remove_uploaded_picture": "Odstrani preneseno sliko ",
"upload_cover_picture": "Prenesi fotografijo naslovnice",
"remove_cover_picture_confirm": "Are you sure you want to remove the cover picture?",
"crop_picture": "Crop picture",
"upload_cropped_picture": "Crop and upload",
"avatar-background-colour": "Avatar background colour",
"remove_cover_picture_confirm": "Ste prepričani, da želite odstraniti naslovno sliko?",
"crop_picture": "Obreži sliko",
"upload_cropped_picture": "Obreži in naloži",
"avatar-background-colour": "Slika ozadja avatarja",
"settings": "Nastavitve",
"show_email": "Pokaži moj e-poštni naslov.",
"show_fullname": "Pokaži moj ime in priimek.",
@ -98,49 +98,49 @@
"has_no_follower": "Uporabniku nihče ne sledi :(",
"follows_no_one": "Uporabnik nikomur ne sledi :(",
"has_no_posts": "Uporabnik še ni nič objavil.",
"has_no_best_posts": "This user does not have any upvoted posts yet.",
"has_no_best_posts": "Ta uporabnik še nima nobenih objav z glasovi za.",
"has_no_topics": "Uporabnik še ni objavil nobene teme.",
"has_no_watched_topics": "Uporabnik še ne spremlja nobene teme.",
"has_no_ignored_topics": "This user hasn't ignored any topics yet.",
"has_no_ignored_topics": "Ta uporabnik še nima nobenih prezrtih tem.",
"has_no_upvoted_posts": "Uporabnik še ni glasoval za nobeno objavo.",
"has_no_downvoted_posts": "Uporabnik še ni glasoval proti nobeni objavi.",
"has_no_voted_posts": "Uporabnik nima glasovanih objav",
"has_no_blocks": "You have blocked no users.",
"has_no_blocks": "Nimate blokiranih uporabnikov.",
"email_hidden": "Skrit e-poštni naslov",
"hidden": "skrit",
"paginate_description": "Uporabi oštevilčenje strani namesto neskončnega drsenja",
"topics_per_page": "Število tem na stran",
"posts_per_page": "Število objav na stran",
"max_items_per_page": "Maximum %1",
"acp_language": "Admin Page Language",
"notifications": "Notifications",
"upvote-notif-freq": "Upvote Notification Frequency",
"upvote-notif-freq.all": "All Upvotes",
"upvote-notif-freq.first": "First Per Post",
"upvote-notif-freq.everyTen": "Every Ten Upvotes",
"max_items_per_page": "Največ %1",
"acp_language": "Jezik skrbniških strani",
"notifications": "Obvestila",
"upvote-notif-freq": "Pogostost obveščanja o glasovih za",
"upvote-notif-freq.all": "Vsi glasovi za",
"upvote-notif-freq.first": "Prvi na objavo",
"upvote-notif-freq.everyTen": "Vsakih 10 glasov za",
"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": "Onemogočeno",
"browsing": "Preglej nastavitve",
"open_links_in_new_tab": "Zunanje povezave odpri v novem zavihku",
"enable_topic_searching": "Omogoči iskanje znotraj teme",
"topic_search_help": "Če omogočite, bo iskanje prepisalo brskalnikove prevzete nastavitve in vam omogočilo iskanje skozi celotno temo.",
"update_url_with_post_index": "Update url with post index while browsing topics",
"scroll_to_my_post": "After posting a reply, show the new post",
"scroll_to_my_post": "Po objavi odgovora prikaži novo objavo",
"follow_topics_you_reply_to": "Spremljanj teme, na katere si odgovoril",
"follow_topics_you_create": "Spremljanj teme, ki si jih ustvaril",
"grouptitle": "Naslov skupine",
"group-order-help": "Select a group and use the arrows to order titles",
"group-order-help": "Izberi skupino in uporabi puščice za razvrstitev naslovov",
"no-group-title": "Skupina nima imena",
"select-skin": "Izberi preobleko",
"select-homepage": "Izberi domačo stran",
"homepage": "Domača stran",
"homepage_description": "Select a page to use as the forum homepage or 'None' to use the default homepage.",
"custom_route": "Custom Homepage Route",
"homepage_description": "Izberite stran, ki jo želite uporabiti kot domačo stran foruma, ali 'Brez', če želite uporabiti privzeto domačo stran.",
"custom_route": "Po do domače strani po meri",
"custom_route_help": "Enter a route name here, without any preceding slash (e.g. \"recent\" or \"category/2/general-discussion\")",
"sso.title": "Storitev enotne prijave ",
"sso.associated": "Povezan z",
"sso.not-associated": "Click here to associate with",
"sso.not-associated": "Kliknite tu da povežete z",
"sso.dissociate": "Dissociate",
"sso.dissociate-confirm-title": "Confirm Dissociation",
"sso.dissociate-confirm": "Are you sure you wish to dissociate your account from %1?",
@ -151,16 +151,16 @@
"info.banned-until": "Banned until %1",
"info.banned-expiry": "Expiry",
"info.banned-permanently": "Banned permanently",
"info.banned-reason-label": "Reason",
"info.banned-no-reason": "No reason given.",
"info.username-history": "Username History",
"info.email-history": "Email History",
"info.banned-reason-label": "Razlog",
"info.banned-no-reason": "Razlog ni podan.",
"info.username-history": "Zgodovina uporabniškega imena",
"info.email-history": "Zgodovina e-poštnega naslova",
"info.moderation-note": "Moderation Note",
"info.moderation-note.success": "Moderation note saved",
"info.moderation-note.add": "Add note",
"info.moderation-note.add": "Dodaj opombo",
"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 &amp; Consent",
"consent.lead": "This community forum collects and processes your personal information.",
"consent.lead": "Ta forum skupnosti zbira in obdeluje vaše osebne podatke.",
"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 &amp; 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,17 +170,17 @@
"consent.give": "Give consent",
"consent.right_of_access": "You have the Right of Access",
"consent.right_of_access_description": "You have the right to access any data collected by this website upon request. You can retrieve a copy of this data by clicking the appropriate button below.",
"consent.right_to_rectification": "You have the Right to Rectification",
"consent.right_to_rectification": "Imate pravico do popravka.",
"consent.right_to_rectification_description": "You have the right to change or update any inaccurate data provided to us. Your profile can be updated by editing your profile, and post content can always be edited. If this is not the case, please contact this site&apos;s administrative team.",
"consent.right_to_erasure": "You have the Right to Erasure",
"consent.right_to_erasure": "Imate pravico do izbrisa.",
"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": "Imate pravico do prenosa podatkov",
"consent.right_to_data_portability_description": "You may request from us a machine-readable export of any collected data about you and your account. You can do so by clicking the appropriate button below.",
"consent.export_profile": "Export Profile (.json)",
"consent.export_profile": "Izvozi profil (.json)",
"consent.export-profile-success": "Exporting profile, you will get a notification when it is complete.",
"consent.export_uploads": "Export Uploaded Content (.zip)",
"consent.export_uploads": "Izvozi naloženo vsebino (.zip)",
"consent.export-uploads-success": "Exporting uploads, you will get a notification when it is complete.",
"consent.export_posts": "Export Posts (.csv)",
"consent.export_posts": "Izvozi objave (.csv)",
"consent.export-posts-success": "Exporting posts, you will get a notification when it is complete.",
"emailUpdate.intro": "Please enter your email address below. This forum uses your email address for scheduled digest and notifications, as well as for account recovery in the event of a lost password.",
"emailUpdate.optional": "<strong>This field is optional</strong>. You are not obligated to provide your email address, but without a validated email, you will not be able to recover your account.",

@ -37,6 +37,8 @@
"subscriptions.hour": "Digest Hour",
"subscriptions.hour-help": "Molim unesite broj koji označava satnicu kada da pošalje zakazani sažeti email (nrp. <code>0</code> za ponoć, <code>17</code> za 5:00 pm). Uzmite u obzir da će se slanje događati po satnici samog servara, i da vrlo verovatno se ne poklapa sa satnicom vašeg sistema. <br /> Trenutno vreme servera je: <span id=\"serverTime\"></span><br /> Sledeći dnevni sažeti email zakazan je za slanje u <span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"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>",
"notifications.remove-images": "Görselleri e-posta bildirimlerinden kaldır",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Година дайджесту",
"subscriptions.hour-help": "Вкажіть, будь ласка, годину о котрій кожного дня буде надсилатися дайджест (наприклад <code>0</code> — це північ, а <code>17</code> — п'ята година вечора). Зверніть увагу, що година визначається згідно налаштувань сервера і може не співпадати з часом вашого комп'ютера. <br /> Приблизний час сервера: <span id=\"serverTime\"></span><br /> Наступний дайджест заплановано до відправки <span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "Giờ Thông Báo",
"subscriptions.hour-help": "Vui lòng nhập một số đại diện cho giờ để gửi thông báo email đã lên lịch (VD: <code>0</code> cho nửa đêm, <code>17</code> cho 5h chiều). Hãy nhớ rằng đây là giờ theo chính máy chủ và có thể không khớp chính xác với đồng hồ hệ thống của bạn.<br /> Thời gian máy chủ gần đúng là: <span id=\"serverTime\"></span><br /> Thông báo hàng ngày kế tiếp được lên lịch để gửi <span id=\"nextDigestTime\"></span>",
"notifications.remove-images": "Xóa hình ảnh khỏi thông báo email",
"require-email-address": "Bắt buộc người dùng mới phải điền địa chỉ email",
"require-email-address-warning": "Mặc định, người dùng có thể chọn không nhập địa chỉ email. Bật tùy chọn này nghĩa là họ buộc phải nhập địa chỉ email để đăng ký. <strong> Việc này không chắc người dùng sẽ nhập địa chỉ email thực, hoặc không phải địa chỉ mà họ sở hữu.</strong>",
"include-unverified-emails": "Gửi email đến những người nhận chưa xác nhận rõ ràng email của họ",
"include-unverified-warning": "Theo mặc định, người dùng có email được liên kết với tài khoản của họ đã được xác minh, nhưng có những trường hợp không phải như vậy (ví dụ: đăng nhập SSO, người dùng phổ thông, v.v.). <strong>Bạn tự chịu rủi ro khi bật cài đặt này</strong> &ndash; gửi email đến các địa chỉ chưa được xác minh có thể vi phạm luật chống thư rác trong khu vực."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "摘要小时",
"subscriptions.hour-help": "请输入一个代表小时的数字来发送计划的电子邮件摘要 (例如,对于午夜,<code>0</code>对于下午5:00<code>17</code>)。 请记住,这是根据服务器本身的时间,可能与您的系统时钟不完全匹配。<br />服务器的大致时间为:<span id =\"serverTime\"></ span><br /> 下一个每日摘要被计划在<span id =\"nextDigestTime\"></span>发送",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -37,6 +37,8 @@
"subscriptions.hour": "摘要小時",
"subscriptions.hour-help": "請輸入一個代表小時的數字來發送排程的電子郵件摘要 (例如,對於午夜,<code>0</code>對於下午5:00<code>17</code>)。 請記住,這是根據伺服器本身的時間,可能與您的系統時鐘不完全符合。<br />伺服器的大致時間為:<span id =\"serverTime\"></ span><br /> 下一個每日摘要被排程在<span id =\"nextDigestTime\"></span>發送",
"notifications.remove-images": "Remove images from email notifications",
"require-email-address": "Require new users to specify an email address",
"require-email-address-warning": "By default, users can opt-out of entering an email address. Enabling this option means they have to enter an email address in order to proceed with registration. <strong>It does not ensure user will enter a real email address, nor even an address they own.</strong>",
"include-unverified-emails": "Send emails to recipients who have not explicitly confirmed their emails",
"include-unverified-warning": "By default, users with emails associated with their account have already been verified, but there are situations where this is not the case (e.g. SSO logins, grandfathered users, etc). <strong>Enable this setting at your own risk</strong> &ndash; sending emails to unverified addresses may be a violation of regional anti-spam laws."
}

@ -98,10 +98,12 @@
> li {
float: left;
margin-right: 30px;
padding-bottom: 10px;
border-bottom: 4px solid transparent;
transition: border-color 150ms linear;
&.active {
border-bottom: 4px solid @brand-primary;
padding-bottom: 10px;
border-color: @brand-primary;
}
> a {

@ -183,7 +183,8 @@ define('admin/manage/privileges', [
api.get(`/categories/${cid}/privileges`, {}).then((privileges) => {
ajaxify.data.privileges = { ...ajaxify.data.privileges, ...privileges };
const tpl = parseInt(cid, 10) ? 'admin/partials/privileges/category' : 'admin/partials/privileges/global';
app.parseAndTranslate(tpl, { privileges }).then((html) => {
const isAdminPriv = ajaxify.currentPage.endsWith('admin/manage/privileges/admin');
app.parseAndTranslate(tpl, { privileges, isAdminPriv }).then((html) => {
// Get currently selected filters
const btnIndices = $('.privilege-filters button.btn-warning').map((idx, el) => $(el).index()).get();
$('.privilege-table-container').html(html);

@ -21,7 +21,7 @@ define('forum/account/info', ['forum/account/header', 'components', 'forum/accou
app.alertSuccess('[[user:info.moderation-note.success]]');
var timestamp = Date.now();
var data = [{
note: note,
note: utils.escapeHTML(note),
user: app.user,
timestamp: timestamp,
timestampISO: utils.toISOString(timestamp),

@ -275,11 +275,7 @@ define('forum/category/tools', [
if (!ajaxify.data.topics || !ajaxify.data.template.category) {
return;
}
var numPinned = ajaxify.data.topics.reduce(function (memo, topic) {
memo = topic.pinned ? memo += 1 : memo;
return memo;
}, 0);
var numPinned = ajaxify.data.topics.filter(topic => topic.pinned).length;
if ((!app.user.isAdmin && !app.user.isMod) || numPinned < 2) {
return;
}
@ -291,15 +287,12 @@ define('forum/category/tools', [
topicListEl.sortable({
handle: '[component="topic/pinned"]',
items: '[component="category/topic"].pinned',
update: function () {
var data = [];
var pinnedTopics = topicListEl.find('[component="category/topic"].pinned');
pinnedTopics.each(function (index, element) {
data.push({ tid: $(element).attr('data-tid'), order: pinnedTopics.length - index - 1 });
});
socket.emit('topics.orderPinnedTopics', data, function (err) {
update: function (ev, ui) {
var baseIndex = parseInt(topicListEl.find('[component="category/topic"].pinned').first().attr('data-index'), 10);
socket.emit('topics.orderPinnedTopics', {
tid: ui.item.attr('data-tid'),
order: baseIndex + ui.item.index() - 1,
}, function (err) {
if (err) {
return app.alertError(err.message);
}

@ -1,7 +1,7 @@
'use strict';
define('forum/login', ['hooks', 'jquery-form'], function (hooks) {
define('forum/login', ['hooks', 'translator', 'jquery-form'], function (hooks, translator) {
var Login = {
_capsState: false,
};
@ -44,17 +44,22 @@ define('forum/login', ['hooks', 'jquery-form'], function (hooks) {
window.location.href = pathname + '?' + qs;
},
error: function (data) {
var message = data.responseText;
var errInfo = data.responseJSON;
if (data.status === 403 && data.responseText === 'Forbidden') {
window.location.href = config.relative_path + '/login?error=csrf-invalid';
} else {
errorEl.find('p').translateText(data.responseText);
errorEl.show();
submitEl.removeClass('disabled');
// Select the entire password if that field has focus
if ($('#password:focus').length) {
$('#password').select();
}
} else if (errInfo && errInfo.hasOwnProperty('banned_until')) {
message = errInfo.banned_until ?
translator.compile('error:user-banned-reason-until', (new Date(errInfo.banned_until).toLocaleString()), errInfo.reason) :
'[[error:user-banned-reason, ' + errInfo.reason + ']]';
}
errorEl.find('p').translateText(message);
errorEl.show();
submitEl.removeClass('disabled');
// Select the entire password if that field has focus
if ($('#password:focus').length) {
$('#password').select();
}
},
});

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

Loading…
Cancel
Save