Merge remote-tracking branch 'refs/remotes/origin/master' into develop

# Conflicts:
#	public/src/admin/extend/plugins.js
v1.18.x
Baris Usakli 8 years ago
commit bc6b1a8f56

@ -42,7 +42,10 @@ web.install = function (port) {
extended: true,
}));
async.parallel([compileLess, compileJS], function () {
async.parallel([compileLess, compileJS], function (err) {
if (err) {
winston.error(err);
}
setupRoutes();
launchExpress(port);
});
@ -119,8 +122,12 @@ function launch(req, res) {
process.stdout.write(' "./nodebb restart" to restart NodeBB\n');
async.parallel([
async.apply(fs.unlink(path.join(__dirname, '../public/installer.css'))),
async.apply(fs.unlink(path.join(__dirname, '../public/installer.min.js'))),
function (next) {
fs.unlink(path.join(__dirname, '../public/installer.css'), next);
},
function (next) {
fs.unlink(path.join(__dirname, '../public/installer.min.js'), next);
},
], function (err) {
if (err) {
winston.warn('Unable to remove installer files');
@ -148,13 +155,32 @@ function compileLess(callback) {
}
function compileJS(callback) {
var scriptPath = path.join(__dirname, '..');
var result = uglify.minify(scripts.map(function (script) {
return path.join(scriptPath, script);
}));
var code = '';
async.eachSeries(scripts, function (srcPath, next) {
fs.readFile(path.join(__dirname, '..', srcPath), function (err, buffer) {
if (err) {
return next(err);
}
fs.writeFile(path.join(__dirname, '../public/installer.min.js'), result.code, callback);
code += buffer.toString();
next();
});
}, function (err) {
if (err) {
return callback(err);
}
try {
var minified = uglify.minify(code, {
compress: false,
});
if (!minified.code) {
return callback(new Error('[[error:failed-to-minify]]'));
}
fs.writeFile(path.join(__dirname, '../public/installer.min.js'), minified.code, callback);
} catch (e) {
callback(e);
}
});
}
module.exports = web;

@ -168,6 +168,9 @@ Loader.restart = function () {
nconf.set('url', conf.url);
nconf.stores.env.readOnly = true;
if (process.env.url !== conf.url) {
process.env.url = conf.url;
}
Loader.start();
});
};

@ -65,9 +65,9 @@
"nodebb-plugin-spam-be-gone": "0.5.0",
"nodebb-rewards-essentials": "0.0.9",
"nodebb-theme-lavender": "4.0.5",
"nodebb-theme-persona": "5.0.16",
"nodebb-theme-persona": "5.0.21",
"nodebb-theme-slick": "1.1.0",
"nodebb-theme-vanilla": "6.0.13",
"nodebb-theme-vanilla": "6.0.16",
"nodebb-widget-essentials": "3.0.1",
"nodemailer": "2.6.4",
"nodemailer-sendmail-transport": "1.0.0",
@ -90,6 +90,7 @@
"socket.io-client": "2.0.1",
"socket.io-redis": "5.0.1",
"socketio-wildcard": "2.0.0",
"spdx-license-list": "^3.0.1",
"string": "^3.0.0",
"templates.js": "0.3.11",
"toobusy-js": "^0.5.1",
@ -137,4 +138,4 @@
"url": "https://github.com/barisusakli"
}
]
}
}

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "المواضيع الشائعة هذا الشهر",
"popular-alltime": "المواضيع الشائعة منذ القدم",
"recent": "المواضيع الحديثة",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "اﻷعضاء المتصلون",

@ -13,7 +13,9 @@
"disable-email-changes": "Забраняване на промяната на е-пощата",
"disable-password-changes": "Забраняване на промяната на паролата",
"allow-account-deletion": "Позволяване на изтриването на профила",
"user-info-private": "Потребителската информация да бъде частна",
"user-info-private": "Скриване на списъка от потребители и данните от гостите.",
"hide-fullname": "Скриване на пълното име от потребителите",
"hide-email": "Скриване на е-пощата от потребителите",
"themes": "Теми",
"disable-user-skins": "Потребителите да не могат да избират собствен облик",
"account-protection": "Защита на акаунта",

@ -6,6 +6,7 @@
"popular-month": "Популярните теми този месец",
"popular-alltime": "Популярните теми за всички времена",
"recent": "Скорошни теми",
"moderator-tools": "Модераторски инструменти",
"flagged-content": "Докладвано съдържание",
"ip-blacklist": "Черен списък за IP адреси",
"users/online": "Потребители на линия",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Popular topics this month",
"popular-alltime": "All time popular topics",
"recent": "সাম্প্রতিক টপিক",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "Online Users",

@ -1,18 +1,18 @@
{
"you-are-on": "Info - You are on <strong>%1:%2</strong>",
"nodes-responded": "%1 nodes responded within %2ms!",
"you-are-on": "Informace - jste na <strong>%1%2</strong>",
"nodes-responded": "%1 vazeb odpovědělo během %2ms.",
"host": "host",
"pid": "pid",
"nodejs": "nodejs",
"online": "online",
"online": "připojen",
"git": "git",
"memory": "memory",
"load": "load",
"uptime": "uptime",
"memory": "paměť",
"load": "načíst",
"uptime": "čas spuštění",
"registered": "Registered",
"sockets": "Sockets",
"guests": "Guests",
"registered": "Registrován",
"sockets": "Sockety",
"guests": "Hosté",
"info": "Info"
"info": "Informace"
}

@ -1,12 +1,12 @@
{
"logger-settings": "Logger Settings",
"description": "By enabling the check boxes, you will receive logs to your terminal. If you specify a path, logs will then be saved to a file instead. HTTP logging is useful for collecting statistics about who, when, and what people access on your forum. In addition to logging HTTP requests, we can also log socket.io events. Socket.io logging, in combination with redis-cli monitor, can be very helpful for learning NodeBB's internals.",
"explanation": "Simply check/uncheck the logging settings to enable or disable logging on the fly. No restart needed.",
"enable-http": "Enable HTTP logging",
"enable-socket": "Enable socket.io event logging",
"file-path": "Path to log file",
"file-path-placeholder": "/path/to/log/file.log ::: leave blank to log to your terminal",
"logger-settings": "Nastavení protokolování",
"description": "Povolením zaškrtávacích polí, budete dostávat protokoly na váš terminál. Nastavíte-li cestu, protokoly budou místo toho uloženy do souboru. Protokolování HTTP je vhodné pro vytvoření statistiky o tom, kdo, kdy a jací lidé přistupují k vašemu fóru. Dodatečně k těmto protokolům můžeme zapisovat i události z socket.io. Protokolování socket.io v kombinaci s monitorem redis-cli je vhodné k porozumění vnitřním strukturám NodeBB.",
"explanation": "Jednoduše zaškrtněte/odškrtněte nastavení protokolu, změny se projeví okamžitě bez restartování.",
"enable-http": "Povolit protokolování HTTP",
"enable-socket": "Povolit protokolování socket.io",
"file-path": "Cesta k protokolovému souboru",
"file-path-placeholder": "/path/to/log/file.log ::: zanechte prázdné pro protokolování na vašem terminále",
"control-panel": "Logger Control Panel",
"update-settings": "Update Logger Settings"
"control-panel": "Ovládací panel protokolování",
"update-settings": "Aktualizovat nastavení protokolů"
}

@ -1,47 +1,47 @@
{
"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": "Nainstalováno",
"active": "Aktivní",
"inactive": "Neaktivní",
"out-of-date": "Zastaralé",
"none-found": "Nebyly nalezeny žádná rozšíření",
"none-active": "Žádné aktivní rozšíření",
"find-plugins": "Najít rozšíření",
"plugin-search": "Plugin Search",
"plugin-search": "Hledat rozšíření",
"plugin-search-placeholder": "Hledat rozšíření…",
"reorder-plugins": "Re-order Plugins",
"order-active": "Order Active Plugins",
"dev-interested": "Interested in writing plugins for NodeBB?",
"docs-info": "Full documentation regarding plugin authoring can be found in the <a target=\"_blank\" href=\"https://docs.nodebb.org/development/plugins/\">NodeBB Docs Portal</a>.",
"reorder-plugins": "Roztřídit rozšíření",
"order-active": "Pořadí aktivních rozšíření",
"dev-interested": "Zajímá vás psaní rozšíření pro NodeBB?",
"docs-info": "Plná dokumentace ohledně autorizace rozšíření je k nalezení na <a target=\"_blank\" href=\"https://docs.nodebb.org/development/plugins/\">Portále dokumentů NodeBB</a>.",
"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",
"order.description": "Některá rozšíření fungují správně až jsou-li inicializovány před/po ostatních rozšířeních.",
"order.explanation": "Rozšíření jsou načteny dle pořadí zde určeném, odshora dolů",
"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.unknown-explanation": "The state of this plugin could not be determined, possibly due to a misconfiguration error.",
"plugin-item.themes": "Motivy",
"plugin-item.deactivate": "Deaktivovat",
"plugin-item.activate": "Aktivovat",
"plugin-item.install": "Nainstalovat",
"plugin-item.uninstall": "Odinstalovat",
"plugin-item.settings": "Nastavení",
"plugin-item.installed": "Nainstalováno",
"plugin-item.latest": "Poslední",
"plugin-item.upgrade": "Aktualizace",
"plugin-item.more-info": "Pro více informací:",
"plugin-item.unknown": "Neznámí",
"plugin-item.unknown-explanation": "Stav tohoto rozšíření nemohl být zjištěn, možná díky chybě v konfiguraci.",
"alert.enabled": "Plugin Enabled",
"alert.disabled": "Plugin Disabled",
"alert.upgraded": "Plugin Upgraded",
"alert.installed": "Plugin Installed",
"alert.uninstalled": "Plugin Uninstalled",
"alert.activate-success": "Please restart your NodeBB to fully activate this plugin",
"alert.deactivate-success": "Plugin successfully deactivated",
"alert.upgrade-success": "Please reload 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.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>",
"alert.possibly-incompatible": "<div class=\"alert alert-warning\"><p><strong>No Compatibility Information Found</strong></p><p>This plugin did not specify a specific version for installation given your NodeBB version. Full compatibility cannot be guaranteed, and may cause your NodeBB to no longer start properly.</p></div><p>In the event that NodeBB cannot boot properly:</p><pre><code>$ ./nodebb reset plugin=\"%1\"</code></pre><p>Continue installation of latest version of this plugin?</p>"
"alert.enabled": "Rozšíření povoleno",
"alert.disabled": "Rozšíření zakázáno",
"alert.upgraded": "Rozšíření bylo aktualizováno",
"alert.installed": "Rozšíření bylo nainstalováno",
"alert.uninstalled": "Rozšíření bylo odinstalováno",
"alert.activate-success": "Pro plnou aktivaci tohoto rozšíření, restartujte NodeBB",
"alert.deactivate-success": "Rozšíření bylo úspěšně deaktivováno",
"alert.upgrade-success": "Pro plnou aktualizace tohoto rozšíření, znovu načtěte vaše NodeBB",
"alert.install-success": "Rozšíření bylo úspěšně nainstalováno, můžete ho aktivovat.",
"alert.uninstall-success": "Rozšíření bylo úspěšně deaktivováno a odinstalováno.",
"alert.suggest-error": "<p>NodeBB se nemohl připojit ke správce balíčku, pokračovat v instalaci poslední verze?</p><div class=\"alert alert-danger\"><strong>Server odpověděl (%1)</strong>: %2</div>",
"alert.package-manager-unreachable": "<p>NodeBB se nemohl připojit ke správci balíčku, aktualizace není doporučena.</p>",
"alert.incompatible": "<p>Vaše verze NodeBB (v%1) umožňuje jen aktualizovat toto rozšíření na v%2. Aktualizujte prosím NodeBB, chcete-li nainstalovat nejnovější verzi tohoto rozšíření.</p>",
"alert.possibly-incompatible": "<div class=\"alert alert-warning\"><p><strong>Nebyla nalezena žádná informace o kompatibilitě</strong></p><p>Toto rozšíření nemá nastavenou požadovanou verzi NodeBB. Plná kompatibilita nemůže být garantována a může způsobit, že se vám již NodeBB nespustí.</p></div><p>Nespustí-li se správně NodeBB:</p><pre><code>$ ./nodebb reset plugin=\"%1\"</code></pre><p>Pokračovat v instalaci této aktuální verze rozšíření?</p>"
}

@ -1,17 +1,17 @@
{
"rewards": "Rewards",
"condition-if-users": "If User's",
"condition-is": "Is:",
"condition-then": "Then:",
"max-claims": "Amount of times reward is claimable",
"zero-infinite": "Enter 0 for infinite",
"delete": "Delete",
"enable": "Enable",
"disable": "Disable",
"control-panel": "Rewards Control",
"new-reward": "New Reward",
"rewards": "Odměny",
"condition-if-users": "Pokud uživatel",
"condition-is": "je:",
"condition-then": "Pak:",
"max-claims": "Počet dosažitelnosti odměny",
"zero-infinite": "Pro neomezeně zadejte 0",
"delete": "Odstranit",
"enable": "Povolit",
"disable": "Zakázat",
"control-panel": "Ovládací panel odměn",
"new-reward": "Nová odměna",
"alert.delete-success": "Successfully deleted reward",
"alert.no-inputs-found": "Illegal reward - no inputs found!",
"alert.save-success": "Successfully saved rewards"
"alert.delete-success": "Odměna byla úspěšně smazána",
"alert.no-inputs-found": "Nepovolená odměna - nebyl nalezen žádný záznam.",
"alert.save-success": "Odměny byly úspěšně uloženy"
}

@ -1,19 +1,19 @@
{
"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.",
"none-installed": "No widgets found! Activate the essential widgets plugin in the <a href=\"%1\">plugins</a> control panel.",
"containers.available": "Available Containers",
"containers.explanation": "Drag and drop on top of any active widget",
"containers.none": "None",
"available": "Dostupné miniaplikace",
"explanation": "Vyberte si miniaplikaci z vysouvací nabídky a přetáhněte ji do oblasti šablony miniaplikace nalevo.",
"none-installed": "Nebyly nalezeny žádné miniaplikace. Aktivujte rozšíření základních miniaplikací v ovládacím panelu <a href=\"%1\">Rozšíření</a>.",
"containers.available": "Dostupné moduly",
"containers.explanation": "Přetáhněte na jakoukoliv aktivní miniaplikaci",
"containers.none": "Nic",
"container.well": "Well",
"container.jumbotron": "Jumbotron",
"container.panel": "Panel",
"container.panel-header": "Panel Header",
"container.panel-body": "Panel Body",
"container.alert": "Alert",
"container.panel-header": "Hlavička panelu",
"container.panel-body": "Tělo panelu",
"container.alert": "Upozornění",
"alert.confirm-delete": "Are you sure you wish to delete this widget?",
"alert.updated": "Widgets Updated",
"alert.update-success": "Successfully updated widgets"
"alert.confirm-delete": "Jste si jist/a, že chcete smazat tuto miniaplikaci?",
"alert.updated": "Miniaplikace byly aktualizovány",
"alert.update-success": "Miniaplikace byly úspěšně aktualizovány"
}

@ -1,7 +1,7 @@
{
"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": "Domovská stránka",
"description": "Vyberte, kterou stránku chcete zobrazit, jakmile uživatel přejde na výchozí URL vašeho fóra.",
"home-page-route": "Cesta k domovské stránce",
"custom-route": "Upravit cestu",
"allow-user-home-pages": "Povolit uživatelům domovské stránky"
}

@ -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": "Nastavení jazyka",
"description": "Výchozí jazyk určuje nastavení jazyka pro všechny uživatele navštěvující vaše fórum. <br />Každý uživatel si může pak nastavit výchozí jazyk na stránce nastavení účtu.",
"default-language": "Výchozí jazyk",
"auto-detect": "Automaticky detekovat nastavení jazyka pro hosty"
}

@ -1,27 +1,27 @@
{
"icon": "Icon:",
"change-icon": "change",
"route": "Route:",
"tooltip": "Tooltip:",
"icon": "Ikona:",
"change-icon": "změnit",
"route": "Cesta:",
"tooltip": "Tip:",
"text": "Text:",
"text-class": "Text Class: <small>optional</small>",
"id": "ID: <small>optional</small>",
"text-class": "Textová třída: <small>doporučené</small>",
"id": "ID: <small>doporučené</small>",
"properties": "Properties:",
"only-admins": "Only display to Admins",
"only-global-mods-and-admins": "Only display to Global Moderators and Admins",
"only-logged-in": "Only display to logged in users",
"open-new-window": "Open in a new window",
"properties": "Vlastnosti:",
"only-admins": "Zobrazuje se jen správci",
"only-global-mods-and-admins": "Zobrazuje se jen hlavním moderátorům a správcům",
"only-logged-in": "Zobrazuje se jen přihlášeným uživatelům",
"open-new-window": "Otevřít v novém okně",
"installed-plugins-required": "Installed Plugins Required:",
"search-plugin": "Search plugin",
"installed-plugins-required": "Vyžadovaná nainstalovaná rozšíření:",
"search-plugin": "Hledat rozšíření",
"btn.delete": "Delete",
"btn.disable": "Disable",
"btn.enable": "Enable",
"btn.delete": "Odstranit",
"btn.disable": "Zakázat",
"btn.enable": "Povolit",
"available-menu-items": "Available Menu Items",
"custom-route": "Custom Route",
"core": "core",
"plugin": "plugin"
"available-menu-items": "Dostupné položky nabídky",
"custom-route": "Upravit cestu",
"core": "jádro",
"plugin": "rozšíření"
}

@ -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": "Sdílení příspěvku",
"info-plugins-additional": "Rozšíření mohou přidat další dodatečné sítě pro sdílení příspěvků.",
"save-success": "Úspěšně uložené sítě sdílející příspěvky."
}

@ -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": "Upozornění",
"chat-messages": "Zprávy konverzace",
"play-sound": "Přehrát",
"incoming-message": "Příchozí zpráva",
"outgoing-message": "Odchozí zpráva",
"upload-new-sound": "Nahrát nový zvuk",
"saved": "Nastavení bylo uloženo"
}

@ -1,35 +1,35 @@
{
"name": "Group Name",
"description": "Group Description",
"member-count": "Member Count",
"system": "System Group",
"edit": "Edit",
"search-placeholder": "Search",
"create": "Create Group",
"description-placeholder": "A short description about your group",
"create-button": "Create",
"name": "Název skupiny",
"description": "Popis skupiny",
"member-count": "Počet členů",
"system": "Systémová skupina",
"edit": "Upravit",
"search-placeholder": "Hledat",
"create": "Vytvořit skupinu",
"description-placeholder": "Krátký popis skupiny",
"create-button": "Vytvořit",
"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.create-failure": "<strong>Ale, ale</strong><p>Objevil se problém s vytvořením skupiny. Zkuste to později.</p>",
"alerts.confirm-delete": "Jste si jist, že chcete odstranit tuto skupinu?",
"edit.name": "Name",
"edit.description": "Description",
"edit.user-title": "Title of Members",
"edit.icon": "Group Icon",
"edit.label-color": "Group Label 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-requests": "Disable join requests",
"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.name": "Jméno",
"edit.description": "Popis",
"edit.user-title": "Název členů",
"edit.icon": "Ikona skupin",
"edit.label-color": "Barva popisu skupiny",
"edit.show-badge": "Zobrazit odznak",
"edit.private-details": "Je-li povoleno, připojení ke skupině vyžaduje schválení od vlastníka skupiny.",
"edit.private-override": "Upozornění: soukromé skupiny jsou zakázány na systémové úrovni, což tuto možnost zneplatňuje.",
"edit.disable-requests": "Zakázat požadavky pro připojení",
"edit.hidden": "Skrýt",
"edit.hidden-details": "Je-li povoleno, tato skupina nebude zobrazena na seznamu skupin a uživatelé musí být manuálně zvány",
"edit.add-user": "Přidat uživatele do skupiny",
"edit.add-user-search": "Hledat uživatele",
"edit.members": "Seznam členů",
"control-panel": "Ovládací panel skupin",
"revert": "Zpět",
"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": "Nenalezen žádný uživatel",
"edit.confirm-remove-user": "Jste si jist/a, že chcete vyřadit tohoto uživatele?",
"edit.save-success": "Změny byly uloženy."
}

@ -1,15 +1,15 @@
{
"lead": "Configure your IP blacklist here.",
"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",
"validate": "Validate Blacklist",
"apply": "Apply Blacklist",
"hints": "Syntax Hints",
"hint-1": "Define a single IP addresses per line. You can add IP blocks as long as they follow the CIDR format (e.g. <code>192.168.100.0/22</code>).",
"hint-2": "You can add in comments by starting lines with the <code>#</code> symbol.",
"lead": "Zde nastavte černou listinu IP",
"description": "Občas zablokování účtu uživatele nestačí. Někdy je nejlepším způsobem ochrany fóra omezení přístupu pro určitou IP adresu nebo celý rozsah IP. V takovém případě můžete přidat problémové IP adresy nebo celé bloky CIDR do této černé listiny a tím jim bude zabráněno přihlásit se či zaregistrovat nový účet.",
"active-rules": "Aktivní pravidla",
"validate": "Potvrdit černou listinu",
"apply": "Použít černou listinu",
"hints": "Syntaxe rad",
"hint-1": "Určete jednotlivou IP adresu na řádek. Můžete přidat IP bloky splňují-li formát CIDR (tj. <code>192.168.100.0/22</code>).",
"hint-2": "Můžete přidat i komentáře, bude-li řádek začínat symbolem <code>#</code>.",
"validate.x-valid": "<strong>%1</strong> out of <strong>%2</strong> rule(s) valid.",
"validate.x-invalid": "The following <strong>%1</strong> rules are invalid:",
"validate.x-valid": "<strong>%1</strong> z <strong>%2</strong> pravidel je platných.",
"validate.x-invalid": "Následujících <strong>%1</strong> pravidel není platných:",
"alerts.applied-success": "Blacklist Applied"
"alerts.applied-success": "Černá listina byla použita"
}

@ -1,20 +1,20 @@
{
"queue": "Queue",
"description": "There are no users in the registration queue. <br> To enable this feature, go to <a href=\"%1\">Settings &rarr; User &rarr; User Registration</a> and set <strong>Registration Type</strong> to \"Admin Approval\".",
"queue": "Fronta",
"description": "V registrační frontě nejsou žádní uživatelé. <br>Pro povolit tuto funkci, přejděte do nabídky <a href=\"%1\">Nastavení &rarr; Uživatel &rarr; Registrace uživatele</a> a nastavte <strong> Typ registrace</strong> na \"Schválení správcem\".",
"list.name": "Name",
"list.email": "Email",
"list.name": "Jméno",
"list.email": "E-mail",
"list.ip": "IP",
"list.time": "Time",
"list.username-spam": "Frequency: %1 Appears: %2 Confidence: %3",
"list.email-spam": "Frequency: %1 Appears: %2",
"list.ip-spam": "Frequency: %1 Appears: %2",
"list.time": "Čas",
"list.username-spam": "Frekvence: %1 zdá se: %2 důvěryhodnost: %3",
"list.email-spam": "Frekvence: %1 zdá se: %2",
"list.ip-spam": "Frekvence: %1 zdá se: %2",
"invitations": "Invitations",
"invitations.description": "Below is a complete list of invitations sent. Use ctrl-f to search through the list by email or username. <br><br>The username will be displayed to the right of the emails for users who have redeemed their invitations.",
"invitations.inviter-username": "Inviter Username",
"invitations.invitee-email": "Invitee Email",
"invitations.invitee-username": "Invitee Username (if registered)",
"invitations": "Pozvání",
"invitations.description": "Níže je kompletní seznam odeslaných pozvání. Pro hledání v seznamu pomocí e-mailu nebo jména uživatele, použijte klávesu ctrl+f.<br><br>U uživatelů, kteří využili pozvání, bude uživatelské jméno zobrazeno napravo od e-mailů.",
"invitations.inviter-username": "Uživatelské jméno pozvaného",
"invitations.invitee-email": "E-mail pozvaného",
"invitations.invitee-username": "Uživatelské jméno pozvaného (je-li registrován)",
"invitations.confirm-delete": "Are you sure you wish to delete this invitation?"
"invitations.confirm-delete": "Jste si jist/a, že chcete odstraniti toto pozvání?"
}

@ -13,7 +13,9 @@
"disable-email-changes": "Zakázat změnu e-mailu",
"disable-password-changes": "Zakázat změnu hesla",
"allow-account-deletion": "Povolit smazání účtu",
"user-info-private": "Informace o uživateli jsou soukromé",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Témata",
"disable-user-skins": "Zabránit uživateli ve výběru vlastního vzhledu",
"account-protection": "Ochrana účtu",

@ -3,18 +3,18 @@
"subcategories": "Podkategorie",
"new_topic_button": "Nové téma",
"guest-login-post": "Přihlásit se pro přispívání",
"no_topics": "<strong>V této kategorii zatím nejsou žádné příspěvky.</strong><br />Můžeš být první!",
"no_topics": "<strong>V této kategorii zatím nejsou žádné příspěvky.</strong><br />Můžeš být první.",
"browsing": "prohlíží",
"no_replies": "Nikdo ještě neodpověděl",
"no_new_posts": "Žádné nové příspěvky",
"share_this_category": "Share this category",
"share_this_category": "Sdílet tuto kategorii",
"watch": "Sledovat",
"ignore": "Ignorovat",
"watching": "Sledováno",
"ignoring": "Ignoring",
"watching.description": "Show topics in unread",
"ignoring.description": "Do not show topics in unread",
"ignoring": "Ignorováno",
"watching.description": "Zobrazit témata jako nepřečtená",
"ignoring.description": "Nezobrazovat témata v nepřečtených",
"watch.message": "Nyní sledujete všechny aktualizace z této kategorie a všech podkategorií",
"ignore.message": "You are now ignoring updates from this category and all subcategories",
"ignore.message": "Nyní ignorujete aktualizace z této kategorie a všech podkategoriích",
"watched-categories": "Sledované kategorie"
}

@ -32,9 +32,9 @@
"notif.post.unsub.info": "Toto upozornění na příspěvek vám bylo odesláno na základě vašeho nastavení odběru.",
"test.text1": "Tento testovací e-mail slouží k ověření, že je e-mailer správně nastaven pro práci s NodeBB.",
"unsub.cta": "Chcete-li změnit tyto nastavení, klikněte zde.",
"banned.subject": "Byl jste zabanován od %1",
"banned.text1": "Uživatel %1 byl zabanován od %2",
"banned.text2": "Ban bude trvat do %1",
"banned.text3": "Toto je důvod, proč jste byl zabanován:",
"banned.subject": "Byl jste zablokován od %1",
"banned.text1": "Uživatel %1 byl zablokován od %2",
"banned.text2": "Blokace bude trvat do %1",
"banned.text3": "Toto je důvod, proč jste byl zablokován:",
"closing": "Díky."
}

@ -1,134 +1,134 @@
{
"invalid-data": "Neplatná data",
"invalid-json": "Invalid JSON",
"not-logged-in": "Zdá se, že nejste přihlášen(a)",
"account-locked": "Váš účet byl dočasně uzamčen",
"search-requires-login": "Searching requires an account - please login or register.",
"invalid-json": "Neplatný JSON",
"not-logged-in": "Zdá se, že nejste přihlášen/a",
"account-locked": "Váš účet byl dočasně uzamknut",
"search-requires-login": "Pro hledání je vyžadován účet - přihlaste se nebo zaregistrujte.",
"invalid-cid": "Neplatné ID kategorie",
"invalid-tid": "Neplatné ID tématu",
"invalid-pid": "Neplatné ID příspěvku",
"invalid-uid": "Neplatné ID uživatele",
"invalid-username": "Neplatné uživatelské jméno",
"invalid-email": "Neplatný e-mail",
"invalid-title": "Neplatný titulek!",
"invalid-title": "Neplatný titulek.",
"invalid-user-data": "Neplatná uživatelská data",
"invalid-password": "Neplatné heslo",
"invalid-login-credentials": "Invalid login credentials",
"invalid-username-or-password": "Stanovte, prosím, oboje, jak uživatelské jméno, tak heslo",
"invalid-login-credentials": "Neplatné přihlašovací údaje",
"invalid-username-or-password": "Zadejte prosím uživatelské jméno a i heslo",
"invalid-search-term": "Neplatný výraz pro vyhledávání",
"csrf-invalid": "We were unable to log you in, likely due to an expired session. Please try again",
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
"csrf-invalid": "Není možné vás přihlásit, díky vypršení relace. Zkuste to prosím znovu.",
"invalid-pagination-value": "Neplatná hodnota stránkování, musí být alespoň %1 a nejvýše %2",
"username-taken": "Uživatelské jméno je již použito",
"email-taken": "E-mail je již používán",
"email-taken": "Tento e-mail je již použit",
"email-not-confirmed": "Vaše e-mailová adresa zatím nebyla potvrzena. Klepněte zde pro její potvrzení.",
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed, please click here to confirm your email.",
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
"email-confirm-failed": "We could not confirm your email, please try again later.",
"confirm-email-already-sent": "Potvrzovací e-mail byl již odeslán. Vyčkejte %1 minut pokud chcete odeslat další.",
"sendmail-not-found": "The sendmail executable could not be found, please ensure it is installed and executable by the user running NodeBB.",
"username-too-short": "Uživatelské jméno je příliš krátké",
"username-too-long": "Uživatelské jméno je příliš dlouhé",
"password-too-long": "Heslo je příliš dlouhé",
"user-banned": "Uživatel byl zakázán",
"user-banned-reason": "Sorry, this account has been banned (Reason: %1)",
"user-banned-reason-until": "Sorry, this account has been banned until %1 (Reason: %2)",
"user-too-new": "Sorry, you are required to wait %1 second(s) before making your first post",
"blacklisted-ip": "Sorry, your IP address has been banned from this community. If you feel this is in error, please contact an administrator.",
"ban-expiry-missing": "Please provide an end date for this ban",
"email-not-confirmed-chat": "Nebude schopen konverzovat, dokud nebude váš e-mail potvrzen. Pro jeho potvrzení klikněte zde.",
"email-not-confirmed-email-sent": "Vaše e-mailová schránka nebyla ještě potvrzena. Ověřte prosím vaši příchozí poštu.",
"no-email-to-confirm": "Toto fórum vyžaduje ověření e-mailové adresy. Pro zadání e-mailu, klikněte zde.",
"email-confirm-failed": "Nemohli jsme ověřit vaši e-mailovou adresu, zkuste to později.",
"confirm-email-already-sent": "Potvrzovací e-mail byl již odeslán. Vyčkejte %1 minut/y, chcete-li odeslat další.",
"sendmail-not-found": "Modul pro odeslání e-mailů nebyl nalezen. Zkontrolujte prosím, zda je nainstalován a spuštěn uživatelem, který spustil NodeBB.",
"username-too-short": "Uživatelské jméno je moc krátké",
"username-too-long": "Uživatelské jméno je moc dlouhé",
"password-too-long": "Heslo je moc dlouhé",
"user-banned": "Uživatel byl zablokován",
"user-banned-reason": "Omlouváme se, ale tento účet byl zablokován (důvod: %1)",
"user-banned-reason-until": "Omlouváme se, ale tento účet je zablokován do %1 (důvod: %2)",
"user-too-new": "Omlouváme se, ale před vytvoření vašeho prvního příspěvku musíte vyčkat %1 sekund/u/y",
"blacklisted-ip": "Omlouváme se, ale vaše adresa IP byla u této komunity zablokována. Máte-li pocit, že je to chyba, kontaktujte správce.",
"ban-expiry-missing": "Zadejte prosím datum konce této blokace",
"no-category": "Kategorie neexistuje",
"no-topic": "Téma neexistuje",
"no-post": "Příspěvek neexistuje",
"no-group": "Skupina neexistuje",
"no-user": "Uživatel neexistuje",
"no-teaser": "Teaser does not exist",
"no-privileges": "Na tuto akci nemáte dostatečná práva",
"no-teaser": "Chyták neexistuje",
"no-privileges": "Na tuto akci nemáte dostatečné oprávnění.",
"category-disabled": "Kategorie zakázána",
"topic-locked": "Téma uzamčeno",
"post-edit-duration-expired": "You are only allowed to edit posts for %1 second(s) after posting",
"post-edit-duration-expired-minutes": "You are only allowed to edit posts for %1 minute(s) after posting",
"post-edit-duration-expired-minutes-seconds": "You are only allowed to edit posts for %1 minute(s) %2 second(s) after posting",
"post-edit-duration-expired-hours": "You are only allowed to edit posts for %1 hour(s) after posting",
"post-edit-duration-expired-hours-minutes": "You are only allowed to edit posts for %1 hour(s) %2 minute(s) after posting",
"post-edit-duration-expired-days": "You are only allowed to edit posts for %1 day(s) after posting",
"post-edit-duration-expired-days-hours": "You are only allowed to edit posts for %1 day(s) %2 hour(s) after posting",
"post-delete-duration-expired": "You are only allowed to delete posts for %1 second(s) after posting",
"post-delete-duration-expired-minutes": "You are only allowed to delete posts for %1 minute(s) after posting",
"post-delete-duration-expired-minutes-seconds": "You are only allowed to delete posts for %1 minute(s) %2 second(s) after posting",
"post-delete-duration-expired-hours": "You are only allowed to delete posts for %1 hour(s) after posting",
"post-delete-duration-expired-hours-minutes": "You are only allowed to delete posts for %1 hour(s) %2 minute(s) after posting",
"post-delete-duration-expired-days": "You are only allowed to delete posts for %1 day(s) after posting",
"post-delete-duration-expired-days-hours": "You are only allowed to delete posts for %1 day(s) %2 hour(s) after posting",
"cant-delete-topic-has-reply": "You can't delete your topic after it has a reply",
"topic-locked": "Téma uzamknuto",
"post-edit-duration-expired": "Je vám umožněno upravit příspěvky jen po %1 sekund/y od jeho vytvoření",
"post-edit-duration-expired-minutes": "Je vám umožněno upravit příspěvky jen po %1 minut/y od jeho vytvoření",
"post-edit-duration-expired-minutes-seconds": "Je vám umožněno upravit příspěvky jen po %1 minut/y a %2 sekund/y od jeho vytvoření",
"post-edit-duration-expired-hours": "Je vám umožněno upravit příspěvky jen po %1 hodin/u/y od jeho vytvoření",
"post-edit-duration-expired-hours-minutes": "Je vám umožněno upravit příspěvky jen po %1 hodin/u/y %2 minut/y od jeho vytvoření",
"post-edit-duration-expired-days": "Je vám umožněno upravit příspěvky jen po %1 den/y/ů od jeho vytvoření",
"post-edit-duration-expired-days-hours": "Je vám umožněno upravit příspěvky jen po %1 den/y/ů %2 hodin/y od jeho vytvoření",
"post-delete-duration-expired": "Je vám umožněno odstranit příspěvky jen po %1 sekund/y od jeho vytvoření",
"post-delete-duration-expired-minutes": "Je vám umožněno odstranit příspěvky jen po %1 minut/y od jeho vytvoření",
"post-delete-duration-expired-minutes-seconds": "Je vám umožněno odstranit příspěvky jen po %1 minut/y %2 sekund/y od jeho vytvoření",
"post-delete-duration-expired-hours": "Je vám umožněno odstranit příspěvky jen po %1 hodin/y od jeho vytvoření",
"post-delete-duration-expired-hours-minutes": "Je vám umožněno odstranit příspěvky jen po 1% hodin/y %2 minut/y od jeho vytvoření",
"post-delete-duration-expired-days": "Je vám umožněno odstranit příspěvky jen po 1% den/y/ů od jeho vytvoření",
"post-delete-duration-expired-days-hours": "Je vám umožněno odstranit příspěvky jen po 1% den/y/ů %2 hodin/y od jeho vytvoření",
"cant-delete-topic-has-reply": "Nemůžete odstranit vaše téma, po tom co obsahuje odpověď",
"cant-delete-topic-has-replies": "Téma nelze odstranit poté, co obsahuje %1 odpovědí",
"content-too-short": "Please enter a longer post. Posts should contain at least %1 character(s).",
"content-too-long": "Please enter a shorter post. Posts can't be longer than %1 character(s).",
"title-too-short": "Please enter a longer title. Titles should contain at least %1 character(s).",
"title-too-long": "Please enter a shorter title. Titles can't be longer than %1 character(s).",
"category-not-selected": "Category not selected.",
"too-many-posts": "You can only post once every %1 second(s) - please wait before posting again",
"too-many-posts-newbie": "As a new user, you can only post once every %1 second(s) until you have earned %2 reputation - please wait before posting again",
"tag-too-short": "Please enter a longer tag. Tags should contain at least %1 character(s)",
"tag-too-long": "Please enter a shorter tag. Tags can't be longer than %1 character(s)",
"not-enough-tags": "Not enough tags. Topics must have at least %1 tag(s)",
"too-many-tags": "Too many tags. Topics can't have more than %1 tag(s)",
"still-uploading": "Vyčkejte, prosím, nežli se vše kompletně nahraje.",
"file-too-big": "Maximum allowed file size is %1 kB - please upload a smaller file",
"guest-upload-disabled": "Guest uploading has been disabled",
"already-bookmarked": "You have already bookmarked this post",
"already-unbookmarked": "You have already unbookmarked this post",
"cant-ban-other-admins": "Nemůžete zakazovat ostatní administrátory!",
"cant-remove-last-admin": "You are the only administrator. Add another user as an administrator before removing yourself as admin",
"cant-delete-admin": "Remove administrator privileges from this account before attempting to delete it.",
"invalid-image-type": "Invalid image type. Allowed types are: %1",
"invalid-image-extension": "Invalid image extension",
"invalid-file-type": "Invalid file type. Allowed types are: %1",
"group-name-too-short": "Název skupiny je příliš krátký",
"group-name-too-long": "Group name too long",
"group-already-exists": "Skupina už exstuje",
"content-too-short": "Zadejte prosím delší příspěvek. Každý příspěvek musí obsahovat alespoň %1 znaků.",
"content-too-long": "Zadejte kratší příspěvek. Příspěvky nesmí být delší než %1 znaků.",
"title-too-short": "Zadejte delší název. Titul by měl obsahovat nejméně %1 znaků.",
"title-too-long": "Zadejte kratší název. Titul by neměl být delší než %1 znaků.",
"category-not-selected": "Nebyla vybrána kategorie.",
"too-many-posts": "Můžete přispívat jednou za %1 sekund - vyčkejte tedy, než vytvoříte další příspěvek",
"too-many-posts-newbie": "Jako nový uživatel, můžete přispívat jednou za %1 sekund, dokud nezískáte pověst %2 - vyčkejte tedy, než vytvoříte další příspěvek",
"tag-too-short": "Zadejte delší značku. Značky by měli mít alespoň %1 znaků",
"tag-too-long": "Zadejte kratší značku. Značky nesmí být delší než %1 znaků",
"not-enough-tags": "Málo značek. Téma musí obsahovat alespoň %1 značek",
"too-many-tags": "Příliš mnoho značek. Téma nesmí mít více než %1 značek",
"still-uploading": "Vyčkejte, než se vše kompletně nahraje.",
"file-too-big": "Maximální povolená velikost je %1 kB - nahrajte menší soubor",
"guest-upload-disabled": "Nahrávání od hostů nebylo povoleno",
"already-bookmarked": "Již jste tento příspěvek zazáložkoval",
"already-unbookmarked": "Již jste u tohoto příspěvku odebral záložku",
"cant-ban-other-admins": "Nemůžete zablokovat jiné správce.",
"cant-remove-last-admin": "Jste jediným správcem. Před vlastním odebráním oprávnění správce nejdříve přidejte jiného uživatele jako správce",
"cant-delete-admin": "Před odstraněním účtu mu nejprve odeberte oprávnění správce.",
"invalid-image-type": "Neplatný typ obrázku. Povolené typy jsou: %1",
"invalid-image-extension": "Neplatná přípona obrázku",
"invalid-file-type": "Neplatný typ souboru. Povolené typy jsou: %1",
"group-name-too-short": "Název skupiny je moc krátký",
"group-name-too-long": "Název skupiny je moc dlouhý",
"group-already-exists": "Skupina už existuje",
"group-name-change-not-allowed": "Změna názvu skupiny není povolena",
"group-already-member": "Already part of this group",
"group-not-member": "Not a member of this group",
"group-needs-owner": "This group requires at least one owner",
"group-already-invited": "This user has already been invited",
"group-already-requested": "Your membership request has already been submitted",
"post-already-deleted": "Tento příspěvek byl již vymazán",
"group-already-member": "Již je součástí této skupiny",
"group-not-member": "Není součástí této skupiny",
"group-needs-owner": "Tato skupina vyžaduje nejméně jednoho vlastníka",
"group-already-invited": "Tento uživatel již byl pozván",
"group-already-requested": "Váš požadavek o členství již byl odeslán",
"post-already-deleted": "Tento příspěvek byl již odstraněn",
"post-already-restored": "Tento příspěvek byl již obnoven",
"topic-already-deleted": "Toto téma bylo již vymazáno",
"topic-already-deleted": "Toto téma bylo již odstraněno",
"topic-already-restored": "Toto téma bylo již obnoveno",
"cant-purge-main-post": "You can't purge the main post, please delete the topic instead",
"topic-thumbnails-are-disabled": "Topic thumbnails are disabled.",
"cant-purge-main-post": "Nemůžete vymazat hlavní příspěvek, místo toho odstraňte téma",
"topic-thumbnails-are-disabled": "Miniatury témat jsou zakázány.",
"invalid-file": "Neplatný soubor",
"uploads-are-disabled": "Nahrávání je zakázáno",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Nemůžete chatovat sami se sebou!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
"chat-disabled": "Chat system disabled",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat messages can not be longer than %1 characters.",
"cant-edit-chat-message": "You are not allowed to edit this message",
"cant-remove-last-user": "You can't remove the last user",
"cant-delete-chat-message": "You are not allowed to delete this message",
"already-voting-for-this-post": "You have already voted for this post.",
"signature-too-long": "Omlouváme se, ale podpis nesmí být delší než %1 znaků.",
"about-me-too-long": "Omlouváme se, ale \"O mně\" nesmí být delší než %1 znaků.",
"cant-chat-with-yourself": "Nemůžete konverzovat sami se sebou.",
"chat-restricted": "Tento uživatel má omezené konverzační zprávy. Nejdříve vás musí začít sledovat, než začnete spolu konverzovat",
"chat-disabled": "Konverzační systém zakázán",
"too-many-messages": "Odeslal/a jste příliš mnoho zpráv, vyčkejte chvíli.",
"invalid-chat-message": "Neplatná konverzační zpráva",
"chat-message-too-long": "Konverzační zprávy nemohou být delší než %1 znaků.",
"cant-edit-chat-message": "Tuto zprávu nemůžete upravit",
"cant-remove-last-user": "Posledního uživatele nemůžete vyjmout",
"cant-delete-chat-message": "Tuto zprávu nemůžete odstranit",
"already-voting-for-this-post": "Již jste v tomto příspěvku hlasoval.",
"reputation-system-disabled": "Systém reputací je zakázán.",
"downvoting-disabled": "Downvoting is disabled",
"not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post",
"not-enough-reputation-to-flag": "You do not have enough reputation to flag this post",
"already-flagged": "You have already flagged this post",
"reload-failed": "NodeBB encountered a problem while reloading: \"%1\". NodeBB will continue to serve the existing client-side assets, although you should undo what you did just prior to reloading.",
"downvoting-disabled": "Systém nesouhlasu je zakázán",
"not-enough-reputation-to-downvote": "Nemáte dostatečnou reputaci pro vyjádření nesouhlasu u tohoto příspěvku",
"not-enough-reputation-to-flag": "Pro označení tohoto příspěvku nemáte dostatečnou reputaci",
"already-flagged": "Tento příspěvek jste již označil",
"reload-failed": "Vyskytla se chyba v NodeBB při znovu načtení: \"%1\". NodeBB bude pokračovat v běhu na straně klienta, nicméně byste měl/a přenastavit zpět to, co jste udělal/a před opětovným načtením.",
"registration-error": "Chyba při registraci",
"parse-error": "Something went wrong while parsing server response",
"wrong-login-type-email": "Použijte prosím Váš e-mail pro přihlášení",
"wrong-login-type-username": "Použijte prosím Váše přihlašovací jméno pro přihlášení",
"parse-error": "Při analýze odpovědi serveru nastala chyba",
"wrong-login-type-email": "Pro přihlášení použijte vaši e-mailovou adresu",
"wrong-login-type-username": "Pro přihlášení použijte vaše uživatelské jméno",
"invite-maximum-met": "Již jste pozval/a maximálně možný počet lidí (%1 z %2).",
"no-session-found": "No login session found!",
"not-in-room": "User not in room",
"no-users-in-room": "No users in this room",
"cant-kick-self": "Nemůžete vyhodit sami sebe ze kupiny",
"no-users-selected": "No user(s) selected",
"invalid-home-page-route": "Invalid home page route",
"invalid-session": "Session Mismatch",
"invalid-session-text": "It looks like your login session is no longer active, or no longer matches with the server. Please refresh this page."
"no-session-found": "Nebyla nalezena relace s přihlášením.",
"not-in-room": "Uživatel není přítomen v místnosti",
"no-users-in-room": "Žádní uživatelé v této místnosti",
"cant-kick-self": "Nemůžete vyhodit sami sebe ze skupiny",
"no-users-selected": "Žádný uživatel/é nebyl/y vybrán/i",
"invalid-home-page-route": "Neplatná cesta k domovské stránkce",
"invalid-session": "Nesoulad v relacích",
"invalid-session-text": "Zdá se, že vše relace s přihlášením již není aktivní nebo již neodpovídá s relací na serveru. Obnovte prosím tuto stránku."
}

@ -1,60 +1,60 @@
{
"state": "State",
"reporter": "Reporter",
"reported-at": "Reported At",
"description": "Description",
"no-flags": "Hooray! No flags found.",
"assignee": "Assignee",
"update": "Update",
"updated": "Updated",
"target-purged": "The content this flag referred to has been purged and is no longer available.",
"state": "Stav",
"reporter": "Nahlásil",
"reported-at": "Nahlásil v",
"description": "Popis",
"no-flags": "Hurá, žádné označení.",
"assignee": "Nabyvatel",
"update": "Aktualizovat",
"updated": "Aktualizováno",
"target-purged": "Obsah, na který se toto označení vztahuje, byl vymazán a již není k dispozici.",
"quick-filters": "Quick Filters",
"filter-active": "There are one or more filters active in this list of flags",
"filter-reset": "Remove Filters",
"filters": "Filter Options",
"filter-reporterId": "Reporter UID",
"filter-targetUid": "Flagged UID",
"filter-type": "Flag Type",
"filter-type-all": "All Content",
"filter-type-post": "Post",
"filter-state": "State",
"filter-assignee": "Assignee UID",
"filter-cid": "Category",
"filter-quick-mine": "Assigned to me",
"filter-cid-all": "All categories",
"apply-filters": "Apply Filters",
"quick-filters": "Rychlé filtry",
"filter-active": "V tomto seznamu označení je jeden nebo více aktivních filtrů",
"filter-reset": "Vyjmout filtry",
"filters": "Možnosti filtru",
"filter-reporterId": "UID ohlašovatele",
"filter-targetUid": "UID označení",
"filter-type": "Typ označe",
"filter-type-all": "Všechen obsah",
"filter-type-post": "Příspěvek",
"filter-state": "Stav",
"filter-assignee": "UID nabyvatele",
"filter-cid": "Kategorie",
"filter-quick-mine": "Přiřazeno mě",
"filter-cid-all": "Všechny kategorie",
"apply-filters": "Použít filtry",
"quick-links": "Quick Links",
"flagged-user": "Flagged User",
"view-profile": "View Profile",
"start-new-chat": "Start New Chat",
"go-to-target": "View Flag Target",
"quick-links": "Rychlé odkazy",
"flagged-user": "Označený uživatel",
"view-profile": "Zobrazit profil",
"start-new-chat": "Začít novou konverzaci",
"go-to-target": "Zobrazit cílové označení",
"user-view": "View Profile",
"user-edit": "Edit Profile",
"user-view": "Zobrazit profil",
"user-edit": "Upravit profil",
"notes": "Flag Notes",
"add-note": "Add Note",
"no-notes": "No shared notes.",
"notes": "Poznámky označení",
"add-note": "Přidat poznámku",
"no-notes": "Žádné sdílené poznámky.",
"history": "Flag History",
"back": "Back to Flags List",
"no-history": "No flag history.",
"history": "Historie označení",
"back": "Zpět k seznamu označení",
"no-history": "Žádná historie označení.",
"state-all": "All states",
"state-open": "New/Open",
"state-wip": "Work in Progress",
"state-resolved": "Resolved",
"state-rejected": "Rejected",
"no-assignee": "Not Assigned",
"note-added": "Note Added",
"state-all": "Všechny stavy",
"state-open": "Nové/Otevřít",
"state-wip": "Pracujeme na tom",
"state-resolved": "Vyřešeno",
"state-rejected": "Zamítnuto",
"no-assignee": "Nepřiřazeno",
"note-added": "Poznámka přidána",
"modal-title": "Report Inappropriate Content",
"modal-body": "Please specify your reason for flagging %1 %2 for review. Alternatively, use one of the quick report buttons if applicable.",
"modal-title": "Nahlásit nevhodný obsah",
"modal-body": "Zadejte váš důvod k označení %1 %2 pro kontrolu. Nebo použijte tlačítko je-li dostupné.",
"modal-reason-spam": "Spam",
"modal-reason-offensive": "Offensive",
"modal-reason-custom": "Důvod nahlášení tohoto obsahu…",
"modal-submit": "Submit Report",
"modal-submit-success": "Content has been flagged for moderation."
"modal-reason-offensive": "Urážlivé",
"modal-reason-custom": "Důvod ohlášení tohoto obsahu…",
"modal-submit": "Předat hlášení",
"modal-submit-success": "Obsah byl označen pro moderaci."
}

@ -1,6 +1,6 @@
{
"groups": "Skupiny",
"view_group": "Prohlédnout skupinu",
"view_group": "Zobrazit skupinu",
"owner": "Vlastník skupiny",
"new_group": "Vytvořit novou skupinu",
"no_groups_found": "Žádné skupiny k prohlížení",
@ -27,8 +27,8 @@
"details.disableJoinRequests": "Zakázat žádosti o připojení",
"details.grant": "Přidat/Zrušit vlastnictví",
"details.kick": "Vyhodit",
"details.kick_confirm": "Are you sure you want to remove this member from the group?",
"details.owner_options": "Administrátor skupiny",
"details.kick_confirm": "Jste si jist/a, že chcete vyjmout tohoto uživatele ze skupiny?",
"details.owner_options": "Správa skupiny",
"details.group_name": "Název skupiny",
"details.member_count": "Počet členů",
"details.creation_date": "Datum vytvoření",
@ -38,11 +38,11 @@
"details.change_colour": "Změnit barvu",
"details.badge_text": "Text odznaku",
"details.userTitleEnabled": "Zobrazit odznak",
"details.private_help": "Pokud je povoleno, připojování do skupin vyžaduje schválení od vlastníka skupiny",
"details.private_help": "Je-li povoleno, připojování do skupin vyžaduje schválení od vlastníka skupiny",
"details.hidden": "Skrytý",
"details.hidden_help": "Pokud je povoleno, tato skupina nebude zobrazena v seznamu skupin, uživatelé budou muset být pozváni manuálně",
"details.hidden_help": "Je-li povoleno, tato skupina nebude zobrazena v seznamu skupin, uživatelé budou muset být pozváni ručně",
"details.delete_group": "Odstranit skupinu",
"details.private_system_help": "Soukromé skupiny jsou zakázáné na systémové úrovni, tato možnost nic nedělá",
"details.private_system_help": "Soukromé skupiny jsou zakázány na systémové úrovni, tato možnost nebude mít žádný vliv",
"event.updated": "Podrobnosti skupiny byly aktualizovány",
"event.deleted": "Skupina \"%1\" byla odstraněna",
"membership.accept-invitation": "Přijmout pozvání",
@ -52,7 +52,7 @@
"membership.reject": "Odmítnout",
"new-group.group_name": "Název skupiny:",
"upload-group-cover": "Nahrát titulní obrázek skupiny",
"bulk-invite-instructions": "Enter a list of comma separated usernames to invite to this group",
"bulk-invite": "Bulk Invite",
"remove_group_cover_confirm": "Are you sure you want to remove the cover picture?"
"bulk-invite-instructions": "Pro pozvání do skupiny, zadejte jména uživatelů oddělených čárkou",
"bulk-invite": "Hromadná pozvánka",
"remove_group_cover_confirm": "Jste si jist/a, že chcete smazat obrázek?"
}

@ -7,40 +7,40 @@
"outgoing_link": "Odkaz mimo fórum",
"outgoing_link_message": "Opouštíte %1",
"continue_to": "Pokračovat na %1",
"return_to": "Vrátit na %1",
"return_to": "Vrátit se na %1",
"new_notification": "Nové upozornění",
"you_have_unread_notifications": "Máte nepřečtená upozornění.",
"all": "Vše",
"topics": "Témata",
"replies": "Odpovědi",
"chat": "Chaty",
"chat": "Konverzace",
"follows": "Sledování",
"upvote": "Souhlasy",
"new-flags": "Nové štítky",
"my-flags": "Šítky přiřazené mě",
"bans": "Bany",
"new-flags": "Nové označení",
"my-flags": "Označení přiřazené mě",
"bans": "Blokace",
"new_message_from": "Nová zpráva od <strong>%1</strong>",
"upvoted_your_post_in": "<strong>%1</strong> has upvoted your post in <strong>%2</strong>.",
"upvoted_your_post_in_dual": "<strong>%1</strong> and <strong>%2</strong> have upvoted your post in <strong>%3</strong>.",
"upvoted_your_post_in_multiple": "<strong>%1</strong> and %2 others have upvoted your post in <strong>%3</strong>.",
"moved_your_post": "<strong>%1</strong> has moved your post to <strong>%2</strong>",
"moved_your_topic": "<strong>%1</strong> has moved <strong>%2</strong>",
"user_flagged_post_in": "<strong>%1</strong> flagged a post in <strong>%2</strong>",
"user_flagged_post_in_dual": "<strong>%1</strong> and <strong>%2</strong> flagged a post in <strong>%3</strong>",
"user_flagged_post_in_multiple": "<strong>%1</strong> and %2 others flagged a post in <strong>%3</strong>",
"user_flagged_user": "<strong>%1</strong> flagged a user profile (%2)",
"user_flagged_user_dual": "<strong>%1</strong> and <strong>%2</strong> flagged a user profile (%3)",
"user_flagged_user_multiple": "<strong>%1</strong> and %2 others flagged a user profile (%3)",
"user_posted_to": "<strong>%1</strong> has posted a reply to: <strong>%2</strong>",
"user_posted_to_dual": "<strong>%1</strong> a <strong>%2</strong> odpověděli v tématu <strong>%3</strong>",
"user_posted_to_multiple": "<strong>%1</strong> a %2 další odpověděli v tématu <strong>%3</strong>",
"user_posted_topic": "<strong>%1</strong> has posted a new topic: <strong>%2</strong>",
"user_started_following_you": "<strong>%1</strong> started following you.",
"user_started_following_you_dual": "<strong>%1</strong> and <strong>%2</strong> started following you.",
"user_started_following_you_multiple": "<strong>%1</strong> and %2 others started following you.",
"new_register": "<strong>%1</strong> sent a registration request.",
"new_register_multiple": "There are <strong>%1</strong> registration requests awaiting review.",
"flag_assigned_to_you": "<strong>Flag %1</strong> has been assigned to you",
"upvoted_your_post_in": "<strong>%1</strong> souhlasil s vaším příspěvkem v <strong>%2</strong>.",
"upvoted_your_post_in_dual": "<strong>%1</strong> a <strong>%2</strong> souhlasili s vaším příspěvkem v <strong>%3</strong>.",
"upvoted_your_post_in_multiple": "<strong>%1</strong> a %2 další/ch souhlasilo s vaším příspěvkem v <strong>%3</strong>.",
"moved_your_post": "<strong>%1</strong> přesunul váš příspěvek do <strong>%2</strong>",
"moved_your_topic": "<strong>%1</strong> přesunul <strong>%2</strong>",
"user_flagged_post_in": "<strong>%1</strong> označil příspěvek v <strong>%2</strong>",
"user_flagged_post_in_dual": "<strong>%1</strong> a <strong>%2</strong> označil příspěvek v <strong>%3</strong>",
"user_flagged_post_in_multiple": "<strong>%1</strong> a %2 další/ch označili příspěvěk v <strong>%3</strong>",
"user_flagged_user": "<strong>%1</strong> označil uživatelský profil (%2)",
"user_flagged_user_dual": "<strong>%1</strong> a <strong>%2</strong> označili uživatelský profil (%3)",
"user_flagged_user_multiple": "<strong>%1</strong> a %2 další/ch označili uživatelský profil (%3)",
"user_posted_to": "<strong>%1</strong> odpověděl na: <strong>%2</strong>",
"user_posted_to_dual": "<strong>%1</strong> a <strong>%2</strong> odpověděli na: <strong>%3</strong>",
"user_posted_to_multiple": "<strong>%1</strong> a %2 další/ch odpověděli na <strong>%3</strong>",
"user_posted_topic": "<strong>%1</strong> založil nové téma: <strong>%2</strong>",
"user_started_following_you": "<strong>%1</strong> vás začal sledovat.",
"user_started_following_you_dual": "<strong>%1</strong> a <strong>%2</strong> vás začali sledovat.",
"user_started_following_you_multiple": "<strong>%1</strong> a %2 další/ch vás začali sledovat.",
"new_register": "<strong>%1</strong> odeslal registrační požadavek.",
"new_register_multiple": "Je zde <strong>%1</strong> registračních požadavků čeká na vyřízení.",
"flag_assigned_to_you": "<strong>Označení %1</strong> vám bylo přiřazeno",
"email-confirmed": "E-mail potvrzen",
"email-confirmed-message": "Děkujeme za ověření vaší e-mailové adresy. Váš účet je nyní aktivní.",
"email-confirm-error-message": "Nastal problém s ověřením vaší e-mailové adresy. Kód je pravděpodobně neplatný nebo jeho platnost vypršela.",

@ -5,18 +5,19 @@
"popular-week": "Oblíbená témata pro tento týden",
"popular-month": "Oblíbená témata pro tento měsíc",
"popular-alltime": "Oblíbená témata za celou dobu",
"recent": "Současná témata",
"recent": "Aktuální témata",
"moderator-tools": "Nástroje moderátora",
"flagged-content": "Nahlášený obsah",
"ip-blacklist": "Černá listina IP adres",
"users/online": "Uživatelé online",
"users/online": "Připojení uživatelé",
"users/latest": "Nejnovější uživatelé",
"users/sort-posts": "Uživatelé s nejvíce příspěvky",
"users/sort-reputation": "Uživatelé s nejlepší reputací",
"users/sort-reputation": "Uživatelé s nejvyšší reputací",
"users/banned": "Zablokovaní uživatelé",
"users/most-flags": "Most flagged users",
"users/search": "Hledání uživatele",
"users/most-flags": "Nejoznačovanější uživatelé",
"users/search": "Hledat uživatele",
"notifications": "Upozornění",
"tags": "Tagy",
"tags": "Značky",
"tag": "Téma označeno pod \"%1\"",
"register": "Zaregistrovat účet",
"registration-complete": "Registrace dokončena",
@ -25,28 +26,28 @@
"categories": "Kategorie",
"groups": "Skupiny",
"group": "%1 skupina",
"chats": "Chaty",
"chat": "Chatovat s %1",
"flags": "Flags",
"flag-details": "Flag %1 Details",
"account/edit": "Editing \"%1\"",
"account/edit/password": "Editing password of \"%1\"",
"account/edit/username": "Editing username of \"%1\"",
"account/edit/email": "Editing email of \"%1\"",
"account/info": "Account Info",
"account/following": "People %1 follows",
"chats": "Konverzace",
"chat": "Konverzace s %1",
"flags": "Označení",
"flag-details": "Detaily označení %1",
"account/edit": "Úprava \"%1\"",
"account/edit/password": "Úprava hesla \"%1\"",
"account/edit/username": "Úprava jména uživatele \"%1\"",
"account/edit/email": "Úprava e-mailu \"%1\"",
"account/info": "Informace o účtu",
"account/following": "Sleduje %1 lidí",
"account/followers": "Lidé kteří sledují %1",
"account/posts": "Příspěvky od %1",
"account/topics": "Příspěvky vytvořeny uživatelem %1",
"account/groups": "%1's skupiny",
"account/bookmarks": "%1's Bookmarked Posts",
"account/bookmarks": "%1's zazáložkované příspěvky",
"account/settings": "Uživatelské nastavení",
"account/watched": "Témata sledovaná uživatelem %1",
"account/upvoted": "Posts upvoted by %1",
"account/downvoted": "Posts downvoted by %1",
"account/upvoted": "Souhlasí s příspěvkem %1",
"account/downvoted": "Nesouhlasí s příspěvkem %1",
"account/best": "Nejlepší příspěvky od %1",
"confirm": "E-mail potvrzen",
"maintenance.text": "%1 is currently undergoing maintenance. Please come back another time.",
"maintenance.messageIntro": "Additionally, the administrator has left this message:",
"throttled.text": "%1 je v současnou chvíli nedostupný pro velkou zátěž. Prosíme zkuste to za chvíli."
"maintenance.text": "%1 momentálně prochází údržbou. Vraťte se později.",
"maintenance.messageIntro": "Správce zanechal tuto zprávu:",
"throttled.text": "%1 je v současnou chvíli nedostupný pro velkou zátěž. Zkuste to později."
}

@ -7,7 +7,7 @@
"alltime": "Pořád",
"no_recent_topics": "Nebyly nalezeny žádné nové téma.",
"no_popular_topics": "Žádná oblíbená téma.",
"there-is-a-new-topic": "K dispozici je nová téma.",
"there-is-a-new-topic": "K dispozici je nové téma.",
"there-is-a-new-topic-and-a-new-post": "K dispozici je nové téma a nový příspěvěk.",
"there-is-a-new-topic-and-new-posts": "K dispozici je nové téma a %1 nových příspěvků.",
"there-are-new-topics": "K dispozici je %1 nových témat.",
@ -15,5 +15,5 @@
"there-are-new-topics-and-new-posts": "K dispozici je %1 nových témat a %2 nových příspěvků.",
"there-is-a-new-post": "K dispozici je nový příspěvek.",
"there-are-new-posts": "K dispozici je %1 nových příspěvků.",
"click-here-to-reload": "Kliknutím sem znovu načtete."
"click-here-to-reload": "Kliknutím sem znovu načtete stránku."
}

@ -2,7 +2,7 @@
"register": "Registrace",
"cancel_registration": "Zrušit registraci",
"help.email": "Ve výchozím nastavení bude váš e-mail skrytý.",
"help.username_restrictions": "Jedinečné uživatelské jméno dlouhé %1 až %2 znaků. Ostatní uživatelé Vás mohou zmínit jako @<span id='yourUsername'>uživatelské-jméno</span>.",
"help.username_restrictions": "Jedinečné uživatelské jméno dlouhé %1 až %2 znaků. Ostatní uživatelé Vás mohou zmínit jako @<span id='yourUsername'>uživatelské jméno</span>.",
"help.minimum_password_length": "Délka vašeho hesla musí být alespoň %1 znaků.",
"email_address": "E-mailová adresa",
"email_address_placeholder": "Zadejte e-mailovou adresu",
@ -16,8 +16,8 @@
"alternative_registration": "Jiný způsob registrace",
"terms_of_use": "Podmínky",
"agree_to_terms_of_use": "Souhlasím s Podmínkami",
"terms_of_use_error": "You must agree to the Terms of Use",
"terms_of_use_error": "Musíte souhlasit s podmínkami.",
"registration-added-to-queue": "Vaše registrace byla přidána do fronty. Obdržíte e-mail až ji správce schválí.",
"interstitial.intro": "We require some additional information before we can create your account.",
"interstitial.errors-found": "We could not complete your registration:"
"interstitial.intro": "Před vytvořením účtu vyžadujeme některé dodatečné informace.",
"interstitial.errors-found": "Nebylo možné dokončit vaší registraci:"
}

@ -2,7 +2,7 @@
"reset_password": "Obnovit heslo",
"update_password": "Upravit heslo",
"password_changed.title": "Heslo změněno",
"password_changed.message": "<p>Heslo bylo úspěšně změněno, <a href=\"/login\">přihlaste se znovu</a> prosím.",
"password_changed.message": "<p>Heslo bylo úspěšně změněno, <a href=\"/login\">přihlaste se znovu</a>.",
"wrong_reset_code.title": "Špatný kód",
"wrong_reset_code.message": "Byl zadán špatný kód. Zadejte ho prosím znovu, nebo <a href=\"/reset\">si nechte poslat nový</a>.",
"new_password": "Nové heslo",
@ -10,7 +10,7 @@
"enter_email": "Zadejte svou <strong>e-mailovou adresu</strong> a my vám pošleme informace, jak můžete obnovit svůj účet.",
"enter_email_address": "Zadejte e-mailovou adresu",
"password_reset_sent": "Obnova hesla odeslána",
"invalid_email": "Neplatný e-mail / E-mail neexistuje!",
"invalid_email": "Neplatný e-mail / E-mail neexistuje.",
"password_too_short": "Zadané heslo je příliš krátké, zvolte si prosím jiné.",
"passwords_do_not_match": "Vámi zadaná hesla se neshodují.",
"password_expired": "Platnost Vašeho hesla vypršela, zvolte si prosím nové."

@ -1,18 +1,18 @@
{
"results_matching": "%1 result(s) matching \"%2\", (%3 seconds)",
"no-matches": "No matches found",
"results_matching": "%1 shodných výsledků dle \"%2\", (%3 sekund/y)",
"no-matches": "Nic nebylo nalezeno",
"advanced-search": "Pokročilé hledání",
"in": "v",
"titles": "Titles",
"titles-posts": "Titles and Posts",
"titles": "Název",
"titles-posts": "Název a příspěvky",
"posted-by": "Napsal",
"in-categories": "V kategoriích",
"search-child-categories": "Search child categories",
"search-child-categories": "Hledat podružné kategorie",
"has-tags": "Obsahuje značky",
"reply-count": "Reply Count",
"reply-count": "Počet odpovědí",
"at-least": "Nejméně",
"at-most": "Nejvíce",
"relevance": "Relevance",
"relevance": "Relevantnost",
"post-time": "Čas příspěvku",
"newer-than": "Novější než",
"older-than": "Starší než",
@ -29,14 +29,14 @@
"topic-title": "Název tématu",
"number-of-replies": "Počet odpovědí",
"number-of-views": "Počet zobrazení",
"topic-start-date": "Topic start date",
"topic-start-date": "Počáteční datum tématu",
"username": "Uživatelské jméno",
"category": "Kategorie",
"descending": "In descending order",
"ascending": "In ascending order",
"descending": "Sestupně",
"ascending": "Vzestupně",
"save-preferences": "Uložit nastavení",
"clear-preferences": "Vymazat nastavení",
"search-preferences-saved": "Search preferences saved",
"search-preferences-cleared": "Search preferences cleared",
"show-results-as": "Show results as"
"clear-preferences": "Smazat nastavení",
"search-preferences-saved": "Hledat dle uložených nastavení",
"search-preferences-cleared": "Hledat dle smazaných nastavení",
"show-results-as": "Zobrazit výsledek jako"
}

@ -1,6 +1,6 @@
{
"success": "Úspěch",
"success": "Úspěšné",
"topic-post": "Úspěšně umístěno.",
"authentication-successful": "Úspěšné přihlášení",
"settings-saved": "Nastavení byla uložena!"
"settings-saved": "Nastavení byla uložena."
}

@ -1,7 +1,7 @@
{
"no_tag_topics": "Není zde žádné téma s tímto tagem.",
"tags": "Tagy",
"enter_tags_here": "Zde vložte tagy, každý o délce %1 až %2 znaků.",
"enter_tags_here_short": "Zadejte tagy…",
"no_tags": "Zatím tu není žádný tag."
"no_tag_topics": "Není zde žádné téma s tímto označením.",
"tags": "Označení",
"enter_tags_here": "Zde vložte označení, každé o délce %1 až %2 znaků.",
"enter_tags_here_short": "Zadejte označení…",
"no_tags": "Zatím tu není žádné označení."
}

@ -2,14 +2,14 @@
"topic": "Téma",
"topic_id": "ID tématu",
"topic_id_placeholder": "Vložte ID tématu",
"no_topics_found": "Nebyla nalezena žádná témata!",
"no_posts_found": "Nebyly nalezeny žádné příspěvky!",
"post_is_deleted": "Tento příspěvek je vymazán!",
"topic_is_deleted": "Toto téma je smazané!",
"no_topics_found": "Nebyla nalezena žádná témata.",
"no_posts_found": "Nebyly nalezeny žádné příspěvky.",
"post_is_deleted": "Tento příspěvek je vymazán.",
"topic_is_deleted": "Toto téma je odstraněno.",
"profile": "Profil",
"posted_by": "Přidal %1",
"posted_by_guest": "Přidal Host",
"chat": "Chat",
"chat": "Konverzace",
"notify_me": "Dostávat upozornění na nové odpovědi",
"quote": "Citovat",
"reply": "Odpovědět",
@ -30,28 +30,28 @@
"locked": "Uzamčeno",
"pinned": "Připnuto",
"moved": "Přesunuto",
"bookmark_instructions": "Click here to return to the last read post in this thread.",
"flag_title": "Flag this post for moderation",
"deleted_message": "This topic has been deleted. Only users with topic management privileges can see it.",
"following_topic.message": "You will now be receiving notifications when somebody posts to this topic.",
"not_following_topic.message": "You will see this topic in the unread topics list, but you will not receive notifications when somebody posts to this topic.",
"ignoring_topic.message": "You will no longer see this topic in the unread topics list. You will be notified when you are mentioned or your post is up voted.",
"login_to_subscribe": "Please register or log in in order to subscribe to this topic.",
"bookmark_instructions": "Pro návrat k poslednímu čtenému příspěvku v tématu, klikněte zde.",
"flag_title": "Označit tento příspěvek k moderování",
"deleted_message": "Toto téma bylo odstraněno. Jen uživatelé s oprávněním správy témat ho mohou vidět.",
"following_topic.message": "Nyní budete dostávat upozornění, jakmile někdo přidá příspěvek do tohoto tématu.",
"not_following_topic.message": "Uvidíte toto téma v seznamu nepřečtených témat, ale neobdržíte upozornění. pokud sem někdo přidá příspěvek.",
"ignoring_topic.message": "Již nadále neuvidíte toto téma v seznamu nepřečtených témat. Budete upozorněn, jakmile se někdo o vás zmíní nebo bude vyjádřen souhlas s příspěvkem.",
"login_to_subscribe": "Pro sledování tohoto tématu se prosím přihlaste nebo zaregistrujte.",
"markAsUnreadForAll.success": "Téma označeno jako nepřečtené pro všechny.",
"mark_unread": "Označ za nepřečtené",
"mark_unread": "Označ jako nepřečtené",
"mark_unread.success": "Téma označeno jako nepřečtené",
"watch": "Sledovat",
"unwatch": "Přesta sledovat",
"unwatch": "Přestat sledovat",
"watch.title": "Být upozorněn u nových odpovědí v tomto tématu",
"unwatch.title": "Přestat sledovat toto téma",
"share_this_post": "Sdílet toto téma",
"watching": "Sledováno",
"not-watching": "Nesledováno",
"ignoring": "Ignorování",
"watching.description": "Notify me of new replies.<br/>Show topic in unread.",
"not-watching.description": "Do not notify me of new replies.<br/>Show topic in unread if category is not ignored.",
"ignoring.description": "Do not notify me of new replies.<br/>Do not show topic in unread.",
"thread_tools.title": "Správa tématu",
"watching.description": "Upozornit mě na nové odpovědi. <br/>Zobrazit téma v nepřečtených.",
"not-watching.description": "Neupozorňovat na nové odpovědi. <br/>Zobrazit téma v nepřečtených, není-li tato kategorie ignorována",
"ignoring.description": "Neupozorňovat na nové odpovědi.<br/>Nezobrazovat téma v nepřečtených.",
"thread_tools.title": "Nástroje tématu",
"thread_tools.markAsUnreadForAll": "Označit jako nepřečtené pro všechny",
"thread_tools.pin": "Připnout téma",
"thread_tools.unpin": "Odepnout téma",
@ -63,9 +63,9 @@
"thread_tools.fork": "Větvit téma",
"thread_tools.delete": "Odstranit téma",
"thread_tools.delete-posts": "Odstranit přispěvky",
"thread_tools.delete_confirm": "Opravdu chcete smazat toto téma.",
"thread_tools.delete_confirm": "Jste si jist/a, že chcete toto téma smazat.",
"thread_tools.restore": "Obnovit téma",
"thread_tools.restore_confirm": "Jste si jist/a, že chcete obnovit toto téma?",
"thread_tools.restore_confirm": "Jste si jist/a, že chcete toto téma obnovit?",
"thread_tools.purge": "Vyčistit téma",
"thread_tools.purge_confirm": "Jste si jist/a, že chcete vyčistit toto téma?",
"topic_move_success": "Toto téma bylo úspěšně přesunuto do %1",
@ -82,12 +82,12 @@
"move_topic": "Přesunout téma",
"move_topics": "Přesunout témata",
"move_post": "Přesunout příspěvek",
"post_moved": "Příspěvek přesunut!",
"post_moved": "Příspěvek přesunut.",
"fork_topic": "Rozdělit příspěvek",
"fork_topic_instruction": "Vyber příspěvky, které chceš oddělit",
"fork_no_pids": "Žádné příspěvky nebyly vybrány!",
"fork_topic_instruction": "Vyberte příspěvky, které chcete oddělit",
"fork_no_pids": "Nebyly vybrány žádné příspěvky.",
"fork_pid_count": "Vybráno %1 příspěvek/ů",
"fork_success": "Successfully forked topic! Click here to go to the forked topic.",
"fork_success": "Téma úspěšně rozděleno. Pro přejití na rozdělené téma, zde klikněte.",
"delete_posts_instruction": "Klikněte na příspěvek, který chcete odstranit/vyčistit",
"composer.title_placeholder": "Zadejte název tématu…",
"composer.handle_placeholder": "Jméno",
@ -96,12 +96,12 @@
"composer.replying_to": "Odpovídání na %1",
"composer.new_topic": "Nové téma",
"composer.uploading": "nahrávání…",
"composer.thumb_url_label": "Vložit URL náhled tématu",
"composer.thumb_url_label": "Vložit URL náhledu tématu",
"composer.thumb_title": "Přidat k tématu náhled",
"composer.thumb_url_placeholder": "http://example.com/thumb.png",
"composer.thumb_file_label": "Nebo nahrajte soubor",
"composer.thumb_remove": "Vymazat pole",
"composer.drag_and_drop_images": "Přesuňte sem myší obrázek",
"composer.drag_and_drop_images": "Přetáhněte sem obrázek",
"more_users_and_guests": "%1 další/ch uživatel/é/ů a %2 host/i/ů",
"more_users": "%1 další/ch uživatel/ů",
"more_guests": "%1 další/ch host/ů",
@ -111,9 +111,9 @@
"newest_to_oldest": "Od nejnovějších po nejstarší",
"most_votes": "Nejvíce hlasů",
"most_posts": "Nejvíce příspěvků",
"stale.title": "Přesto vytvořit nové téma",
"stale.warning": "Reagujete na starší téma. Nechcete raději vytvořit téma nové a na původní v něm odkázat?",
"stale.title": "Raději vytvořit nové téma?",
"stale.warning": "Reagujete na starší téma. Nechcete raději vytvořit nové téma a na původní v něm odkázat?",
"stale.create": "Vytvořit nové téma",
"stale.reply_anyway": "Přesto reagovat na toto téma",
"link_back": "Re: [%1](%2)"
"link_back": "Odpověď: [%1](%2)"
}

@ -6,7 +6,7 @@
"selected": "Vybrané",
"all": "Vše",
"all_categories": "Všechny kategorie",
"topics_marked_as_read.success": "Téma bylo označeno jako přečtené!",
"topics_marked_as_read.success": "Téma bylo označeno jako přečtené.",
"all-topics": "Všechna témata",
"new-topics": "Nová témata",
"watched-topics": "Sledovaná témata"

@ -1,6 +1,6 @@
{
"uploading-file": "Nahrávání souboru…",
"select-file-to-upload": "Vyberte soubor pro nahrání!",
"upload-success": "Soubor byl úspěšně nahrán!",
"maximum-file-size": "Maximum %1 kb"
"select-file-to-upload": "Vyberte soubor pro nahrání.",
"upload-success": "Soubor byl úspěšně nahrán.",
"maximum-file-size": "Maximálně %1 kb"
}

@ -1,8 +1,8 @@
{
"banned": "Banned",
"offline": "Offline",
"banned": "Zablokován",
"offline": "Nepřipojen",
"username": "Uživatelské jméno",
"joindate": "Datum ragistrace",
"joindate": "Datum registrace",
"postcount": "Počet příspěvků",
"email": "E-mail",
"confirm_email": "Potvrdit e-mail",
@ -10,16 +10,16 @@
"ban_account": "Zablokovat účet",
"ban_account_confirm": "Opravdu chcete zablokovat tohoto uživatele?",
"unban_account": "Odblokovat účet",
"delete_account": "Vymazat účet",
"delete_account_confirm": "Opravdu chcete smazat váš účet? <br /><strong>Tato akce je nevratná a nebude možné obnovit žádné vaše data.</strong><br /><br /> Pro potvrzení smazání účtu napište vaše uživatelské jméno.",
"delete_this_account_confirm": "Skutečně chcete zrušit tento účet? <br /><strong>Tato akce je nevratná a již nebude žádná možnost obnovení vašich dat</strong><br /><br />",
"account-deleted": "Účet smazán",
"delete_account": "Odstranit účet",
"delete_account_confirm": "Opravdu chcete odstranit váš účet? <br /><strong>Tato akce je nevratná a nebude možné obnovit žádné vaše data.</strong><br /><br /> Pro potvrzení odstranění účtu napište vaše uživatelské jméno.",
"delete_this_account_confirm": "Opravdu chcete odstranit tento účet? <br /><strong>Tato akce je nevratná a již nebude žádná možnost obnovení vašich dat</strong><br /><br />",
"account-deleted": "Účet odstraněn",
"fullname": "Jméno a příjmení",
"website": "Webové stránky",
"location": "Poloha",
"age": "Věk",
"joined": "Registrován",
"lastonline": "Naposledy online",
"lastonline": "Naposledy připojen",
"profile": "Profil",
"profile_views": "Zobrazení profilu",
"reputation": "Reputace",
@ -30,34 +30,34 @@
"aboutme": "O mně",
"signature": "Podpis",
"birthday": "Datum narození",
"chat": "Chat",
"chat_with": "Pokračovat v chatu s %1",
"new_chat_with": "Začít nový chat s %1",
"flag-profile": "Flag Profile",
"chat": "Konverzace",
"chat_with": "Pokračovat v konverzaci s %1",
"new_chat_with": "Začít novou konverzaci s %1",
"flag-profile": "Označit profil",
"follow": "Sledovat",
"unfollow": "Nesledovat",
"more": "Více",
"profile_update_success": "Profil byl úspěšně aktualizován!",
"profile_update_success": "Profil byl úspěšně aktualizován.",
"change_picture": "Změnit obrázek",
"change_username": "Změnit uživatelské jméno",
"change_email": "Změnit e-mail",
"edit": "Upravit",
"edit-profile": "Editovat profil",
"edit-profile": "Upravit profil",
"default_picture": "Výchozí ikonka",
"uploaded_picture": "Nahraný obrázek",
"upload_new_picture": "Nahrát nový obrázek",
"upload_new_picture_from_url": "Nahrát nový obrázek z URL",
"current_password": "Současné heslo",
"current_password": "Aktuální heslo",
"change_password": "Změnit heslo",
"change_password_error": "Neplatné heslo",
"change_password_error_wrong_current": "Současné heslo není správné!",
"change_password_error_length": "Heslo je příliš krátké!",
"change_password_error_match": "Hesla se neshodují!",
"change_password_error_privileges": "Nemáte práva změnit toto heslo.",
"change_password_success": "Heslo je aktualizované!",
"confirm_password": "Potvrzení hesla",
"change_password_error": "Neplatné heslo.",
"change_password_error_wrong_current": "Aktuální heslo není správně.",
"change_password_error_length": "Heslo je moc krátké.",
"change_password_error_match": "Hesla se neshodují.",
"change_password_error_privileges": "Nemáte oprávnění změnit heslo.",
"change_password_success": "Heslo bylo aktualizováno.",
"confirm_password": "Potvrdit heslo",
"password": "Heslo",
"username_taken_workaround": "Zvolené uživatelské jméno je již zabrané, takže jsme ho trochu upravili. Nyní jste znám jako <strong>%1</strong>",
"username_taken_workaround": "Zvolené uživatelské jméno již někdo používá, takže jsme ho trochu upravili. Nyní jste znám jako <strong>%1</strong>",
"password_same_as_username": "Vaše heslo je stejné jako vaše přihlašovací jméno. Zvolte si prosím jiné heslo.",
"password_same_as_email": "Vaše heslo je stejné jako váš e-mail. Zvolte si prosím jiné heslo.",
"weak_password": "Slabé heslo.",
@ -65,15 +65,15 @@
"upload_a_picture": "Nahrát obrázek",
"remove_uploaded_picture": "Odstranit nahraný obrázek",
"upload_cover_picture": "Náhrát titulní obrázek",
"remove_cover_picture_confirm": "Jste si jist, že vyjmout obrázek coveru?",
"remove_cover_picture_confirm": "Jste si jist/a, že chcete smazat obrázek?",
"crop_picture": "Oříznout obrázek",
"upload_cropped_picture": "Oříznout a nahrát",
"settings": "Nastavení",
"show_email": "Zobrazovat můj e-mail v profilu",
"show_email": "Zobrazovat můj e-mail",
"show_fullname": "Zobrazovat celé jméno",
"restrict_chats": "Povolit chatovací zprávy pouze od uživatelů, které sleduji.",
"restrict_chats": "Povolit konverzační zprávy pouze od uživatelů, které sleduji.",
"digest_label": "Odebírat přehled",
"digest_description": "Subscribe to email updates for this forum (new notifications and topics) according to a set schedule",
"digest_description": "Přihlásit se k odběru e-mailových aktualizací pro toto fórum (nová oznámení a témata), dle stanoveného plánu",
"digest_off": "Vypnuto",
"digest_daily": "Denně",
"digest_weekly": "Týdně",
@ -84,17 +84,17 @@
"has_no_follower": "Tohoto uživatele nikdo nesleduje :(",
"follows_no_one": "Tento uživatel nikoho nesleduje :(",
"has_no_posts": "Tento uživatel ještě nic nenapsal.",
"has_no_topics": "Tento uživatel ještě nenapsal žádné téma.",
"has_no_topics": "Tento uživatel ještě nezaložil žádné téma.",
"has_no_watched_topics": "Tento uživatel zatím nesleduje žádná témata.",
"has_no_upvoted_posts": "This user hasn't upvoted any posts yet.",
"has_no_downvoted_posts": "This user hasn't downvoted any posts yet.",
"has_no_upvoted_posts": "Tento uživatel zatím nevyjádřil souhlas u žádného příspěvku.",
"has_no_downvoted_posts": "Tento uživatel zatím nevyjádřil nesouhlas u žádného příspěvku.",
"has_no_voted_posts": "Tento uživatel nemá žádné hlasovací příspěvky",
"email_hidden": "E-mail skryt",
"email_hidden": "E-mail je skryt",
"hidden": "skrytý",
"paginate_description": "Stránkovat témata a příspěvky místo použití nekonečného posunování",
"topics_per_page": "Témat na stránce",
"posts_per_page": "Příspěvků na stránce",
"notification_sounds": "Přehrát zvuk když dostanete notifikaci",
"notification_sounds": "Přehrát zvuk, obdržíte-li oznámení",
"notifications_and_sounds": "Upozornění a zvuky",
"incoming-message-sound": "Zvuk příchozí zprávy",
"outgoing-message-sound": "Zvuk odchozí zprávy",
@ -103,29 +103,29 @@
"browsing": "Nastavení prohlížení",
"open_links_in_new_tab": "Otevřít odchozí odkaz v nové záložce",
"enable_topic_searching": "Povolit vyhledávání v tématu",
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behaviour and allow you to search through the entire topic, instead of what is only shown on screen",
"topic_search_help": "Je-li povoleno, hledání v tématu přepíše výchozí chování vyhledávání v prohlížeči a umožní vám prohledávat celé téma, namísto pouze toho, co je zobrazeno na obrazovce",
"delay_image_loading": "Zpoždění načtení obrázku",
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
"image_load_delay_help": "Je-li povoleno, obrázky v tématech se nebudou načítat, dokud nebude proveden posun do zobrazení",
"scroll_to_my_post": "Po odeslání odpovědi, zobrazit nový příspěvek",
"follow_topics_you_reply_to": "Sledovat témata, do kterých přispějete",
"follow_topics_you_create": "Sledovat témata, která vytvoříte",
"grouptitle": "Nadpis skupiny",
"no-group-title": "Žádný nadpis skupiny",
"select-skin": "Vybrat skin",
"select-skin": "Vybrat vzhled",
"select-homepage": "Vybrat domovskou stránku",
"homepage": "Domovská stránka",
"homepage_description": "Vyberte stránku, která má být domovskou stránkou fóra nebo vyberte 'Nic' a bude použita výchozí domovská stránka.",
"custom_route": "Custom Homepage Route",
"custom_route_help": "Enter a route name here, without any preceding slash (e.g. \"recent\", or \"popular\")",
"sso.title": "Single Sign-on Services",
"sso.associated": "Associated with",
"sso.not-associated": "Click here to associate with",
"info.latest-flags": "Latest Flags",
"info.no-flags": "No Flagged Posts Found",
"info.ban-history": "Poslední historie banování",
"info.no-ban-history": "Tento uživatel nebyl nikdy zabanován",
"info.banned-until": "Zabanován do %1",
"info.banned-permanently": "Permanentně zabanován",
"custom_route": "Cesta k uživatelské domovské stránce",
"custom_route_help": "Zde zadejte název cesty - bez předcházejícího lomítka (např.: \"Poslední\" nebo \"oblíbené\")",
"sso.title": "Služby jednotného přihlášení",
"sso.associated": "Přiřazeno k",
"sso.not-associated": "Zde klikněte pro přiřazení k",
"info.latest-flags": "Poslední označené",
"info.no-flags": "Nebyly nalezeny žádné označené příspěvky",
"info.ban-history": "Poslední historie blokovaných",
"info.no-ban-history": "Tento uživatel nebyl nikdy zablokován",
"info.banned-until": "Zablokován do %1",
"info.banned-permanently": "Trvale zablokován",
"info.banned-reason-label": "Důvod",
"info.banned-no-reason": "Bez důvodu",
"info.username-history": "Historie uživatelského jména",

@ -2,13 +2,13 @@
"latest_users": "Nejnovější uživatelé",
"top_posters": "Nejaktivnější",
"most_reputation": "Nejváženější",
"most_flags": "Most Flags",
"search": "Vyhledávat",
"most_flags": "Nejoznačovanější",
"search": "Hledat",
"enter_username": "Zadej uživatelské jméno k hledání",
"load_more": "Načíst další",
"users-found-search-took": "Nalezeno %1 uživatel(ů) za %2 vteřiny.",
"filter-by": "Filtrovat dle",
"online-only": "Pouze online",
"online-only": "Pouze připojené",
"invite": "Pozvat",
"invitation-email-sent": "E-mailová pozvánka byla odeslána na adresu %1",
"user_list": "Seznam uživatelů",
@ -16,6 +16,6 @@
"popular_topics": "Oblíbená témata",
"unread_topics": "Nepřečtená témata",
"categories": "Kategorie",
"tags": "Tagy",
"tags": "Značky",
"no-users-found": "Nebyly nalezeny žádní uživatelé!"
}

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Populære tråde denne måned",
"popular-alltime": "Top populære tråde",
"recent": "Seneste tråde",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "Online brugere",

@ -13,7 +13,9 @@
"disable-email-changes": "Deaktiviere Änderungen der E-Mail Adresse",
"disable-password-changes": "Deaktiviere Änderungen des Passwortes",
"allow-account-deletion": "Erlaube löschen des Kontos",
"user-info-private": "Stelle Benutzerinformationen auf Privat",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Verhindere das Benutzer eigene Skins verwenden",
"account-protection": "Kontosicherheit",

@ -6,6 +6,7 @@
"popular-month": "Beliebte Themen dieses Monats",
"popular-alltime": "Beliebteste Themen",
"recent": "Neueste Themen",
"moderator-tools": "Moderator Tools",
"flagged-content": "Gemeldeter Inhalt",
"ip-blacklist": "IP Blacklist",
"users/online": "Benutzer online",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Popular topics this month",
"popular-alltime": "All time popular topics",
"recent": "Πρόσφατα Θέματα",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "Συνδεδεμένοι Χρήστες",

@ -43,5 +43,9 @@
"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>",
"alert.possibly-incompatible": "<div class=\"alert alert-warning\"><p><strong>No Compatibility Information Found</strong></p><p>This plugin did not specify a specific version for installation given your NodeBB version. Full compatibility cannot be guaranteed, and may cause your NodeBB to no longer start properly.</p></div><p>In the event that NodeBB cannot boot properly:</p><pre><code>$ ./nodebb reset plugin=\"%1\"</code></pre><p>Continue installation of latest version of this plugin?</p>"
"alert.possibly-incompatible": "<div class=\"alert alert-warning\"><p><strong>No Compatibility Information Found</strong></p><p>This plugin did not specify a specific version for installation given your NodeBB version. Full compatibility cannot be guaranteed, and may cause your NodeBB to no longer start properly.</p></div><p>In the event that NodeBB cannot boot properly:</p><pre><code>$ ./nodebb reset plugin=\"%1\"</code></pre><p>Continue installation of latest version of this plugin?</p>",
"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?"
}

@ -6,6 +6,7 @@
"popular-month": "Popular topics this month",
"popular-alltime": "All time popular topics",
"recent": "Recent Topics",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Popular topics this month",
"popular-alltime": "All time popular topics",
"recent": "Recent Topics",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "Online Users",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Popular topics this month",
"popular-alltime": "All time popular topics",
"recent": "Recent Topics",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "Online Users",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Temas populares del mes",
"popular-alltime": "Temas populares de siempre",
"recent": "Temas recientes",
"moderator-tools": "Moderator Tools",
"flagged-content": "Contenido reportado",
"ip-blacklist": "Lista negra de IPS",
"users/online": "Conectados",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Populaarsed teemad sel kuul",
"popular-alltime": "Populaarseimad teemad üldse",
"recent": "Hiljutised teemad",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "Sisseloginud kasutajad",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "موضوعات پربازدید این ماه",
"popular-alltime": "پربازدیدترین موضوعات",
"recent": "موضوع‌های تازه",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "لیست سیاه آی‌پی",
"users/online": "کاربران آنلاین",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Suositut aiheet tässä kuussa",
"popular-alltime": "Suositut aiheet koko ajalta",
"recent": "Viimeisimmät aiheet",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "Paikalla olevat käyttäjät",

@ -12,7 +12,7 @@
"reorder-plugins": "Re-ordonner les plugins",
"order-active": "Trier les plugins actifs",
"dev-interested": "Êtes-vous intéressés par l'écriture de plugins pour NodeBB ?",
"docs-info": "Full documentation regarding plugin authoring can be found in the <a target=\"_blank\" href=\"https://docs.nodebb.org/development/plugins/\">NodeBB Docs Portal</a>.",
"docs-info": "La documentation complète concernant lécriture de plugin peut être trouvée sur le<a target=\"_blank\" href=\"https://docs.nodebb.org/development/plugins/\">Portail Documentation NodeBB</a>.",
"order.description": "Certains plugins fonctionnent mieux lorsqu'ils sont initialisés avant/après d'autres plugins.",
"order.explanation": "Les plugins se chargent dans l'ordre spécifié, ici de haut en bas.",

@ -23,8 +23,8 @@
"running-version": "<strong>NodeBB v<span id=\"version\">%1</span></strong> est actuellement installé.",
"keep-updated": "Assurez-vous que votre version de NodeBB est à jour pour les derniers patchs de sécurité et correctifs de bugs.",
"up-to-date": "<p>Votre version <strong>est à jour</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/\">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/\">upgrading your NodeBB</a>.</p>",
"upgrade-available": "<p>Une nouvelle version (v%1) a été publiée. Merci denvisager de <a href=\"https://docs.nodebb.org/configuring/upgrade/\">mettre à jour NodeBB</a>.</p>",
"prerelease-upgrade-available": "<p>Ceci est une version pre-release obsolète de NodeBB. Une nouvelle version (v%1) a été publiée. Merci denvisager de <a href=\"https://docs.nodebb.org/configuring/upgrade/\">mettre à jour NodeBB</a>.</p>",
"prerelease-warning": "<p>Ceci est une version <strong>préliminaire</strong> de NodeBB. Des bugs inattendus peuvent se produire. <i class=\"fa fa-exclamation-triangle\"></i></p>",
"running-in-development": "<span>Le forum est en mode développement. Il peut être sujet à certaines vulnérabilités, veuillez contacter votre administrateur système.</span>",

@ -5,7 +5,7 @@
"max-image-width": "Redimensionner les images à un largeur spécifique (en pixels)",
"max-image-width-help": "(En pixels, par défaut : 760 pixels, définir à 0 si désactivé)",
"max-file-size": "Taille maximum d'un fichier (en Ko)",
"max-file-size-help": "(in kibibytes, default: 2048 KiB)",
"max-file-size-help": "(en kibioctets, défaut : 2048 Kio)",
"allow-topic-thumbnails": "Autoriser les utilisateurs à télécharger des miniatures de sujet",
"topic-thumb-size": "Miniature du sujet",
"allowed-file-extensions": "Extensions de fichier autorisés",
@ -18,9 +18,9 @@
"profile-image-dimension": "Dimensions de l'avatar",
"profile-image-dimension-help": "(En pixel, par défaut : 128 pixels)",
"max-profile-image-size": "Taille maximum des avatars",
"max-profile-image-size-help": "(in kibibytes, default: 256 KiB)",
"max-profile-image-size-help": "(en kibioctets, défaut : 256 Kio)",
"max-cover-image-size": "Taille maximum des images de couverture",
"max-cover-image-size-help": "(in kibibytes, default: 2,048 KiB)",
"max-cover-image-size-help": "(en kibioctets, défaut : 2048 Kio)",
"keep-all-user-images": "Garder les anciennes versions d'avatars et d'images de couverture sur le serveur",
"profile-covers": "Image de couverture",
"default-covers": "Image de couverture par défaut",

@ -13,7 +13,9 @@
"disable-email-changes": "Désactiver le changement d'adresse e-mail",
"disable-password-changes": "Désactiver le changement de mot de passe",
"allow-account-deletion": "Autoriser la suppression des comptes",
"user-info-private": "Rendre privées les informations des utilisateurs",
"user-info-private": "Masquer la liste et les données utilisateurs aux invités",
"hide-fullname": "Masquer le nom complet aux utilisateurs",
"hide-email": "Masquer les emails aux utilisateurs",
"themes": "Thèmes",
"disable-user-skins": "Empêcher les utilisateurs de choisir un skin personnalisé",
"account-protection": "Protection du compte",

@ -6,6 +6,7 @@
"popular-month": "Sujets populaires ce mois-ci",
"popular-alltime": "Sujets populaires depuis toujours",
"recent": "Sujets récents",
"moderator-tools": "Outils de modération",
"flagged-content": "Contenu signalé",
"ip-blacklist": "Liste noire d'adresses IP",
"users/online": "Utilisateurs en ligne",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Temas populares do mes",
"popular-alltime": "Temas populares de tódolos tempos",
"recent": "Temas recentes",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "Lista negra de IPs",
"users/online": "Usuarios conectados",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "נושאים חמים החודש",
"popular-alltime": "הנושאים החמים בכל הזמנים",
"recent": "נושאים אחרונים",
"moderator-tools": "Moderator Tools",
"flagged-content": "תוכן מדווח",
"ip-blacklist": "רשימת IP שחורה",
"users/online": "משתמשים מחוברים",

@ -13,7 +13,9 @@
"disable-email-changes": "Onemogući promjenu emaila",
"disable-password-changes": "Onemogući promjenu lozinke",
"allow-account-deletion": "Dozvoli brisanje računa korisnicima",
"user-info-private": "Postavi korisničke informacije privatne",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Predlošci",
"disable-user-skins": "Onemogući korisnicima odabir predloška",
"account-protection": "Zaštita računa",

@ -6,6 +6,7 @@
"popular-month": "Popularne teme ovaj mjesec",
"popular-alltime": "Najpopularnije teme ",
"recent": "Nedavne teme",
"moderator-tools": "Moderator Tools",
"flagged-content": "Označene objave",
"ip-blacklist": "IP crna lista",
"users/online": "Online korisnici",

@ -1,12 +1,12 @@
{
"general": "Általános",
"private-groups": "Privát Csoportok",
"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-creation": "Allow Group Creation",
"allow-creation-help": "If enabled, users can create groups <em>(Default: disabled)</em>",
"max-name-length": "Maximum Group Name Length",
"cover-image": "Group Cover Image",
"default-cover": "Default Cover Images",
"default-cover-help": "Add comma-separated default cover images for groups that don't have an uploaded cover image"
"private-groups.help": "Ha engedélyezve van, a csoporthoz való csatlakozáshoz szükség van a csoport tulajdonosának jóváhagyására <em>(Alapértelmezett: engedélyezve)</em>",
"private-groups.warning": "<strong>Vigyázat!</strong> Ha ez a lehetőség le van tiltva, és vannak privát csoportjaid, azok automatikusan nyilvánosak lesznek.",
"allow-creation": "Csoport Létrehozás Engedélyezése",
"allow-creation-help": "Ha engedélyezve van, a felhasználók létrehozhatnak csoportokat <em>(Alapértelmezett: letiltva)</em>",
"max-name-length": "Maximális Csoportnév Hossz",
"cover-image": "Csoport Borítókép",
"default-cover": "Alapértelmezett Borítóképek",
"default-cover-help": "Alapértelmezett borítóképek hozzáadása vesszővel elválasztva olyan csoportokhoz, amelyeknek nincs feltöltött borítóképük."
}

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Havi népszerű témakörök",
"popular-alltime": "Mindenkori legnépszerűbb témakörök",
"recent": "Legfrissebb témakörök",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "Aktiv Felhasználok",

@ -2,20 +2,20 @@
"latest_users": "Legújabb felhasználók",
"top_posters": "Legaktívabbak",
"most_reputation": "Legnépszerűbbek",
"most_flags": "Most Flags",
"most_flags": "Legjelentettebbek",
"search": "Keresés",
"enter_username": "Írj be egy nicknevet a kereséshez",
"load_more": "Több betöltése",
"users-found-search-took": "%1 user(s) found! Search took %2 seconds.",
"filter-by": "Filter By",
"online-only": "Online only",
"invite": "Invite",
"invitation-email-sent": "An invitation email has been sent to %1",
"user_list": "User List",
"recent_topics": "Recent Topics",
"popular_topics": "Popular Topics",
"unread_topics": "Unread Topics",
"categories": "Categories",
"tags": "Tags",
"no-users-found": "No users found!"
"users-found-search-took": "%1 felhasználó találat! A keresés %2 másodpercet vett igénybe.",
"filter-by": "Szűrés Eszerint",
"online-only": "Csak online",
"invite": "Meghívás",
"invitation-email-sent": "Egy meghívó email el lett küldve %1 részére",
"user_list": "Felhasználólista",
"recent_topics": "Friss Témák",
"popular_topics": "Népszerű Témák",
"unread_topics": "Olvasatlan Témák",
"categories": "Kategóriák",
"tags": "Címkék",
"no-users-found": "Nincs felhasználó találat!"
}

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Popular topics this month",
"popular-alltime": "All time popular topics",
"recent": "Topik Terkini",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "Online Users",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Discussioni popolari questo mese",
"popular-alltime": "Discussioni più popolari di sempre",
"recent": "Discussioni Recenti",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "Lista nera degli IP",
"users/online": "Utenti Online",

@ -13,7 +13,9 @@
"disable-email-changes": "Eメールの変更を無効にする",
"disable-password-changes": "パスワードの変更を無効にする",
"allow-account-deletion": "アカウントが解除されました",
"user-info-private": "ユーザー情報を非公開にする",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "テーマ",
"disable-user-skins": "ユーザーがカスタムスキンを選択できないようにする",
"account-protection": "アカウント保護",

@ -6,6 +6,7 @@
"popular-month": "今月人気のスレッド",
"popular-alltime": "人気のスレッド",
"recent": "最新スレッド",
"moderator-tools": "Moderator Tools",
"flagged-content": "フラグ付きコンテンツ",
"ip-blacklist": "IPブラックリスト",
"users/online": "オンラインのユーザー",

@ -13,7 +13,9 @@
"disable-email-changes": "이메일 주소 변경 비활성화",
"disable-password-changes": "패스워드 변경 비활성화",
"allow-account-deletion": "계정 삭제 허용",
"user-info-private": "사용자 정보를 개인만 볼수 있게 바꿉니다.",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "테마",
"disable-user-skins": "일반 사용자가 스킨 지정 금지",
"account-protection": "계정 보호",

@ -6,6 +6,7 @@
"popular-month": "인기있는 게시물 (월간)",
"popular-alltime": "인기있는 게시물",
"recent": "최근 게시물",
"moderator-tools": "Moderator Tools",
"flagged-content": "신고된 컨텐츠",
"ip-blacklist": "IP 블랙리스트",
"users/online": "접속중인 사용자",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Popular topics this month",
"popular-alltime": "All time popular topics",
"recent": "Paskutinės temos",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "Online Users",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Topik Popular Bulan Ini",
"popular-alltime": "Topik Popular Sepanjang Masa",
"recent": "Topik Baru",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "Pengguna Atas Talian",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "Populære emner denne måneden",
"popular-alltime": "Mest populære emner for all tid",
"recent": "Nylige emner",
"moderator-tools": "Moderator Tools",
"flagged-content": "Flagged Content",
"ip-blacklist": "IP Blacklist",
"users/online": "Påloggede Brukere",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

@ -6,6 +6,7 @@
"popular-month": "De populaire onderwerpen van deze maand",
"popular-alltime": "De populaire onderwerpen",
"recent": "Recente onderwerpen",
"moderator-tools": "Moderator Tools",
"flagged-content": "Gemarkeerde content",
"ip-blacklist": "IP zwarte lijst",
"users/online": "Online Gebruikers",

@ -13,7 +13,9 @@
"disable-email-changes": "Wyłącz możliwość zmiany emaila",
"disable-password-changes": "Wyłącz możliwość zmiany hasła",
"allow-account-deletion": "Pozwól na możliwość usunięcia konta",
"user-info-private": "Informację użytkownika są prywatne",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Style",
"disable-user-skins": "Uniemożliwić użytkownikom wybranie niestandardowej skórę",
"account-protection": "Ochrona Konta",

@ -6,6 +6,7 @@
"popular-month": "Tematy popularne w tym miesiącu",
"popular-alltime": "Wszystkie popularne tematy",
"recent": "Ostatnie Tematy",
"moderator-tools": "Moderator Tools",
"flagged-content": "Treść oflagowanego posta",
"ip-blacklist": "Czarna lista adresów IP",
"users/online": "Dostępni Użytkownicy",

@ -12,7 +12,7 @@
"reorder-plugins": "Re-ordenar Plugins",
"order-active": "Ordenar Plugins Ativos",
"dev-interested": "Interessado em escrever plugins para o NodeBB?",
"docs-info": "Full documentation regarding plugin authoring can be found in the <a target=\"_blank\" href=\"https://docs.nodebb.org/development/plugins/\">NodeBB Docs Portal</a>.",
"docs-info": "Documentação completa sobre criação de plugins pode ser encontrada no<a target=\"_blank\" href=\"https://docs.nodebb.org/development/plugins/\">Portal de Documentação do NodeBB</a>.",
"order.description": "Certos plugins funcionam melhor quando eles são inicializados antes/após outros plugins.",
"order.explanation": "Os plugins são carregados na ordem especificada aqui, de cima para baixo",

@ -23,8 +23,8 @@
"running-version": "Você está rodando o <strong>NodeBB v<span id=\"version\">%1</span></strong>.",
"keep-updated": "Sempre se certifique de que o seu NodeBB está atualizado para os últimos patches de segurança e bug fixes.",
"up-to-date": "<p>Você está <strong>atualizado</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/\">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/\">upgrading your NodeBB</a>.</p>",
"upgrade-available": "<p>Uma nova versão (v%1) foi lançada. Leve em consideração <a href=\"https://docs.nodebb.org/configuring/upgrade/\">fazer um upgrade do seu NodeBB</a>.</p>",
"prerelease-upgrade-available": "<p>Esta é uma versão pre-release do NodeBB. Uma nova versão (v%1) foi lançada. Leve em consideração <a href=\"https://docs.nodebb.org/configuring/upgrade/\">fazer um upgrade do seu NodeBB</a>.</p>",
"prerelease-warning": "<p>Esta é uma versão <strong>pre-release</strong> do NodeBB. Bugs inesperados podem ocorrer. <i class=\"fa fa-exclamation-triangle\"></i></p>",
"running-in-development": "<span>O fórum está sendo executado em modo de desenvolvedor. O fórum pode estar abrto à potenciais vulnerabilidades; por favor, entre em contato com o seu administrador de sistemas.</span>",

@ -5,7 +5,7 @@
"max-image-width": "Redimensionar imagens até a largura especificada (em pixels)",
"max-image-width-help": "(em pixels, padrão: 760 pixels, defina como 0 para desligar)",
"max-file-size": "Tamanho Máximo de Arquivo (em KiB)",
"max-file-size-help": "(in kibibytes, default: 2048 KiB)",
"max-file-size-help": "(em kibibytes, padrão: 2048 KiB)",
"allow-topic-thumbnails": "Permitir usuários de enviar miniaturas de tópico",
"topic-thumb-size": "Tamanho da Miniatura de Tópico",
"allowed-file-extensions": "Extensões de Arquivo Permitidas",
@ -18,9 +18,9 @@
"profile-image-dimension": "Dimensão da Imagem de Perfil",
"profile-image-dimension-help": "(em pixels, padrão: 128 pixels)",
"max-profile-image-size": "Tamanho Máximo do Arquivo de Imagem de Perfil",
"max-profile-image-size-help": "(in kibibytes, default: 256 KiB)",
"max-profile-image-size-help": "(em kibibytes, padrão: 256 KiB)",
"max-cover-image-size": "Tamanho Máximo do Arquivo de Imagem de Capa",
"max-cover-image-size-help": "(in kibibytes, default: 2,048 KiB)",
"max-cover-image-size-help": "(em kibibytes, padrão: 2,048 KiB)",
"keep-all-user-images": "Manter versões antigas de avatares e capas de perfil no servidor",
"profile-covers": "Capas de Perfil",
"default-covers": "Imagens de Capa Padrão",

@ -13,7 +13,9 @@
"disable-email-changes": "Desabilitar mudanças de email",
"disable-password-changes": "Desabilitar mudanças de senha",
"allow-account-deletion": "Permitir exclusão de conta",
"user-info-private": "Tornar informação de usuário privada",
"user-info-private": "Esconder lista e dados de usuários de visitantes",
"hide-fullname": "Esconder nome completo de outros usuários",
"hide-email": "Esconder email de outros usuários",
"themes": "Temas",
"disable-user-skins": "Impedir usuários de escolherem um skin personalizado",
"account-protection": "Proteção de Conta",

@ -6,6 +6,7 @@
"popular-month": "Tópicos populares deste mês",
"popular-alltime": "Tópicos populares de todos os tempos",
"recent": "Tópicos Recentes",
"moderator-tools": "Ferramentas de Moderação",
"flagged-content": "Conteúdo Sinalizado",
"ip-blacklist": "Lista negra de IPs",
"users/online": "Usuários Online",

@ -13,7 +13,9 @@
"disable-email-changes": "Disable email changes",
"disable-password-changes": "Disable password changes",
"allow-account-deletion": "Allow account deletion",
"user-info-private": "Make user info private",
"user-info-private": "Hide user list and data from guests",
"hide-fullname": "Hide fullname from users",
"hide-email": "Hide email from users",
"themes": "Themes",
"disable-user-skins": "Prevent users from choosing a custom skin",
"account-protection": "Account Protection",

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

Loading…
Cancel
Save