Merge commit '9855429445d1856a28b3f845e4bad788f5860914' into v1.18.x
commit
eff03e4b57
@ -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,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"
|
||||
}
|
@ -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><head></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 & 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 & 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 @@
|
||||
{
|
||||
"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,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!"
|
||||
}
|
@ -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,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,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"
|
||||
}
|
@ -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,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 "report" and added to the original flag. Set this option to a number other than zero to limit the number of reports an item can receive.",
|
||||
"flags.limit-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" 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,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 → Post → 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"
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue