Merge pull request #3 from NodeBB/master

Merge in latest
v1.18.x
Peter Jaszkowiak 10 years ago
commit 34bbe241ce

@ -0,0 +1,78 @@
"use strict";
var fork = require('child_process').fork,
env = process.env,
worker,
incomplete = [];
module.exports = function(grunt) {
function update(action, filepath, target) {
var args = [],
fromFile = '',
compiling = '',
time = Date.now();
if (!grunt.option('verbose')) {
args.push('--log-level=info');
}
if (target === 'lessUpdated') {
fromFile = ['js','tpl'];
compiling = 'less';
} else if (target === 'clientUpdated') {
fromFile = ['less','tpl'];
compiling = 'js';
} else if (target === 'templatesUpdated') {
fromFile = ['js','less'];
compiling = 'tpl';
} else if (target === 'serverUpdated') {
fromFile = ['less','js','tpl'];
}
fromFile = fromFile.filter(function(ext) {
return incomplete.indexOf(ext) === -1;
});
args.push('--from-file=' + fromFile.join(','));
incomplete.push(compiling);
worker.kill();
worker = fork('app.js', args, { env: env });
worker.on('message', function() {
if (incomplete.length) {
incomplete = [];
if (grunt.option('verbose')) {
grunt.log.writeln('NodeBB restarted in ' + (Date.now() - time) + ' ms');
}
}
});
}
grunt.initConfig({
watch: {
lessUpdated: {
files: ['public/**/*.less', 'node_modules/nodebb-*/*.less', 'node_modules/nodebb-*/*/*.less', 'node_modules/nodebb-*/*/*/*.less', 'node_modules/nodebb-*/*/*/*/*.less']
},
clientUpdated: {
files: ['public/src/**/*.js', 'node_modules/nodebb-*/*.js', 'node_modules/nodebb-*/*/*.js', 'node_modules/nodebb-*/*/*/*.js', 'node_modules/nodebb-*/*/*/*/*.js']
},
serverUpdated: {
files: ['*.js', 'src/**/*.js']
},
templatesUpdated: {
files: ['src/views/**/*.tpl', 'node_modules/nodebb-*/*.tpl', 'node_modules/nodebb-*/*/*.tpl', 'node_modules/nodebb-*/*/*/*.tpl', 'node_modules/nodebb-*/*/*/*/*.tpl']
}
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', ['watch']);
env.NODE_ENV = 'development';
worker = fork('app.js', [], { env: env });
grunt.event.on('watch', update);
};

@ -43,7 +43,7 @@ winston.add(winston.transports.Console, {
var date = new Date(); var date = new Date();
return date.getDate() + '/' + (date.getMonth() + 1) + ' ' + date.toTimeString().substr(0,5) + ' [' + global.process.pid + ']'; return date.getDate() + '/' + (date.getMonth() + 1) + ' ' + date.toTimeString().substr(0,5) + ' [' + global.process.pid + ']';
}, },
level: global.env === 'production' ? 'info' : 'verbose' level: (global.env === 'production' || nconf.get('log-level') === 'info') ? 'info' : 'verbose'
}); });
if(os.platform() === 'linux') { if(os.platform() === 'linux') {
@ -323,7 +323,7 @@ function resetThemes(callback) {
function resetPlugin(pluginId) { function resetPlugin(pluginId) {
var db = require('./src/database'); var db = require('./src/database');
db.setRemove('plugins:active', pluginId, function(err) { db.sortedSetRemove('plugins:active', pluginId, function(err) {
if (err) { if (err) {
winston.error('[reset] Could not disable plugin: %s encountered error %s', pluginId, err.message); winston.error('[reset] Could not disable plugin: %s encountered error %s', pluginId, err.message);
} else { } else {

@ -13,6 +13,7 @@ process.on('message', function(msg) {
} }
}); });
function hashPassword(password, rounds) { function hashPassword(password, rounds) {
async.waterfall([ async.waterfall([
function(next) { function(next) {

@ -110,9 +110,10 @@ case "$1" in
;; ;;
watch) watch)
echo "Launching NodeBB in \"development\" mode." echo "***************************************************************************"
echo "To run the production build of NodeBB, please use \"forever\"." echo "WARNING: ./nodebb watch will be deprecated soon. Please use grunt: "
echo "More Information: https://docs.nodebb.org/en/latest/running/index.html" echo "https://docs.nodebb.org/en/latest/running/index.html#grunt-development"
echo "***************************************************************************"
NODE_ENV=development supervisor -q --ignore public/templates,public/nodebb.min.js,public/nodebb.min.js.map --extensions 'node|js|tpl|less' -- app "$@" NODE_ENV=development supervisor -q --ignore public/templates,public/nodebb.min.js,public/nodebb.min.js.map --extensions 'node|js|tpl|less' -- app "$@"
;; ;;

@ -33,18 +33,21 @@
"heapdump": "^0.3.0", "heapdump": "^0.3.0",
"less": "^2.0.0", "less": "^2.0.0",
"logrotate-stream": "^0.2.3", "logrotate-stream": "^0.2.3",
"mime": "^1.3.4",
"mkdirp": "~0.5.0", "mkdirp": "~0.5.0",
"mmmagic": "^0.3.13",
"morgan": "^1.3.2", "morgan": "^1.3.2",
"nconf": "~0.7.1", "nconf": "~0.7.1",
"nodebb-plugin-dbsearch": "^0.1.0", "nodebb-plugin-dbsearch": "^0.1.0",
"nodebb-plugin-emoji-extended": "^0.4.1-4", "nodebb-plugin-emoji-extended": "^0.4.1-4",
"nodebb-plugin-markdown": "^0.8.0", "nodebb-plugin-markdown": "^1.0.0",
"nodebb-plugin-mentions": "^0.9.0", "nodebb-plugin-mentions": "^0.9.0",
"nodebb-plugin-soundpack-default": "~0.1.1", "nodebb-plugin-soundpack-default": "~0.1.1",
"nodebb-plugin-spam-be-gone": "^0.4.0", "nodebb-plugin-spam-be-gone": "^0.4.0",
"nodebb-theme-lavender": "^1.0.0", "nodebb-theme-lavender": "^1.0.6",
"nodebb-theme-vanilla": "^1.0.0", "nodebb-theme-vanilla": "^1.0.14",
"nodebb-widget-essentials": "~0.2.0", "nodebb-widget-essentials": "~0.2.12",
"nodebb-rewards-essentials": "^0.0.1",
"npm": "^2.1.4", "npm": "^2.1.4",
"passport": "^0.2.1", "passport": "^0.2.1",
"passport-local": "1.0.0", "passport-local": "1.0.0",
@ -68,7 +71,9 @@
"xregexp": "~2.0.0" "xregexp": "~2.0.0"
}, },
"devDependencies": { "devDependencies": {
"mocha": "~1.13.0" "mocha": "~1.13.0",
"grunt": "~0.4.5",
"grunt-contrib-watch": "^0.6.1"
}, },
"bugs": { "bugs": {
"url": "https://github.com/NodeBB/NodeBB/issues" "url": "https://github.com/NodeBB/NodeBB/issues"

@ -1,5 +1,6 @@
{ {
"new_topic_button": "موضوع جديد", "new_topic_button": "موضوع جديد",
"guest-login-post": "Log in to post",
"no_topics": "<strong>لا توجد مواضيع في هذه الفئة</strong>لم لا تحاول إنشاء موضوع؟<br />", "no_topics": "<strong>لا توجد مواضيع في هذه الفئة</strong>لم لا تحاول إنشاء موضوع؟<br />",
"browsing": "تصفح", "browsing": "تصفح",
"no_replies": "لم يرد أحد", "no_replies": "لم يرد أحد",

@ -12,6 +12,7 @@
"notify_me": "تلق تنبيهات بالردود الجديدة في هذا الموضوع", "notify_me": "تلق تنبيهات بالردود الجديدة في هذا الموضوع",
"quote": "اقتبس", "quote": "اقتبس",
"reply": "رد", "reply": "رد",
"guest-login-reply": "Log in to reply",
"edit": "تعديل", "edit": "تعديل",
"delete": "حذف", "delete": "حذف",
"purge": "تطهير", "purge": "تطهير",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "নতুন টপিক", "new_topic_button": "নতুন টপিক",
"guest-login-post": "Log in to post",
"no_topics": "<strong>এই বিভাগে কোন টপিক নেই! </strong><br /> আপনি চাইলে একটি পোষ্ট করতে পারেন।", "no_topics": "<strong>এই বিভাগে কোন টপিক নেই! </strong><br /> আপনি চাইলে একটি পোষ্ট করতে পারেন।",
"browsing": "ব্রাউজিং", "browsing": "ব্রাউজিং",
"no_replies": "কোন রিপ্লাই নেই", "no_replies": "কোন রিপ্লাই নেই",

@ -12,6 +12,7 @@
"notify_me": "এই টপিকে নতুন উত্তর আসলে জানুন", "notify_me": "এই টপিকে নতুন উত্তর আসলে জানুন",
"quote": "উদ্ধৃতি", "quote": "উদ্ধৃতি",
"reply": "উত্তর", "reply": "উত্তর",
"guest-login-reply": "Log in to reply",
"edit": "সম্পাদণা", "edit": "সম্পাদণা",
"delete": "মুছে ফেলুন", "delete": "মুছে ফেলুন",
"purge": "পার্জ", "purge": "পার্জ",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Nové téma", "new_topic_button": "Nové téma",
"guest-login-post": "Log in to post",
"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íží", "browsing": "prohlíží",
"no_replies": "Nikdo ještě neodpověděl", "no_replies": "Nikdo ještě neodpověděl",

@ -12,6 +12,7 @@
"notify_me": "Sledovat toto téma", "notify_me": "Sledovat toto téma",
"quote": "Citovat", "quote": "Citovat",
"reply": "Odpovědět", "reply": "Odpovědět",
"guest-login-reply": "Log in to reply",
"edit": "Upravit", "edit": "Upravit",
"delete": "Smazat", "delete": "Smazat",
"purge": "Purge", "purge": "Purge",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Neues Thema", "new_topic_button": "Neues Thema",
"guest-login-post": "Anmelden um einen Beitrag zu erstellen",
"no_topics": "<strong>Es gibt noch keine Themen in dieser Kategorie.</strong><br />Warum beginnst du nicht eins?", "no_topics": "<strong>Es gibt noch keine Themen in dieser Kategorie.</strong><br />Warum beginnst du nicht eins?",
"browsing": "Aktiv", "browsing": "Aktiv",
"no_replies": "Niemand hat geantwortet", "no_replies": "Niemand hat geantwortet",

@ -15,7 +15,7 @@
"details.latest_posts": "Aktuelle Beiträge", "details.latest_posts": "Aktuelle Beiträge",
"details.private": "Private Gruppe", "details.private": "Private Gruppe",
"details.public": "Öffentliche Gruppe", "details.public": "Öffentliche Gruppe",
"details.grant": "Grant/Rescind Ownership", "details.grant": "Gewähre/Widerrufe Besitz",
"details.kick": "Kick", "details.kick": "Kick",
"details.owner_options": "Gruppenadministration", "details.owner_options": "Gruppenadministration",
"event.updated": "Gruppendetails wurden aktualisiert", "event.updated": "Gruppendetails wurden aktualisiert",

@ -12,6 +12,7 @@
"notify_me": "Erhalte eine Benachrichtigung bei neuen Antworten zu diesem Thema.", "notify_me": "Erhalte eine Benachrichtigung bei neuen Antworten zu diesem Thema.",
"quote": "zitieren", "quote": "zitieren",
"reply": "antworten", "reply": "antworten",
"guest-login-reply": "Anmelden zum Antworten",
"edit": "bearbeiten", "edit": "bearbeiten",
"delete": "löschen", "delete": "löschen",
"purge": "bereinigen", "purge": "bereinigen",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Νέο Θέμα", "new_topic_button": "Νέο Θέμα",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Δεν υπάρχουν θέματα σε αυτή την κατηγορία.</strong><br />Γιατί δεν δοκιμάζεις να δημοσιεύσεις ένα εσύ;", "no_topics": "<strong>Δεν υπάρχουν θέματα σε αυτή την κατηγορία.</strong><br />Γιατί δεν δοκιμάζεις να δημοσιεύσεις ένα εσύ;",
"browsing": "περιηγούνται", "browsing": "περιηγούνται",
"no_replies": "Κανείς δεν έχει απαντήσει", "no_replies": "Κανείς δεν έχει απαντήσει",

@ -12,6 +12,7 @@
"notify_me": "Να ειδοποιούμαι για νέες απαντήσεις σε αυτό το θέμα", "notify_me": "Να ειδοποιούμαι για νέες απαντήσεις σε αυτό το θέμα",
"quote": "Παράθεση", "quote": "Παράθεση",
"reply": "Απάντηση", "reply": "Απάντηση",
"guest-login-reply": "Log in to reply",
"edit": "Επεξεργασία", "edit": "Επεξεργασία",
"delete": "Διαγραφή", "delete": "Διαγραφή",
"purge": "Εκκαθάριση", "purge": "Εκκαθάριση",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "New Topic", "new_topic_button": "New Topic",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Thar be no topics in 'tis category.</strong><br />Why don't ye give a go' postin' one?", "no_topics": "<strong>Thar be no topics in 'tis category.</strong><br />Why don't ye give a go' postin' one?",
"browsing": "browsin'", "browsing": "browsin'",
"no_replies": "No one has replied to ye message", "no_replies": "No one has replied to ye message",

@ -12,6 +12,7 @@
"notify_me": "Be notified of new replies in this topic", "notify_me": "Be notified of new replies in this topic",
"quote": "Quote", "quote": "Quote",
"reply": "Reply", "reply": "Reply",
"guest-login-reply": "Log in to reply",
"edit": "Edit", "edit": "Edit",
"delete": "Delete", "delete": "Delete",
"purge": "Purge", "purge": "Purge",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "New Topic", "new_topic_button": "New Topic",
"guest-login-post": "Log in to post",
"no_topics": "<strong>There are no topics in this category.</strong><br />Why don't you try posting one?", "no_topics": "<strong>There are no topics in this category.</strong><br />Why don't you try posting one?",
"browsing": "browsing", "browsing": "browsing",

@ -24,6 +24,7 @@
"email-taken": "Email taken", "email-taken": "Email taken",
"email-not-confirmed": "Your email has not been confirmed yet, please click here to confirm your email.", "email-not-confirmed": "Your email has not been confirmed yet, please click here to confirm your email.",
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed", "email-not-confirmed-chat": "You are unable to chat until your email is confirmed",
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
"username-too-short": "Username too short", "username-too-short": "Username too short",
"username-too-long": "Username too long", "username-too-long": "Username too long",
@ -64,6 +65,7 @@
"invalid-image-type": "Invalid image type. Allowed types are: %1", "invalid-image-type": "Invalid image type. Allowed types are: %1",
"invalid-image-extension": "Invalid image extension", "invalid-image-extension": "Invalid image extension",
"invalid-file-type": "Invalid file type. Allowed types are: %1",
"group-name-too-short": "Group name too short", "group-name-too-short": "Group name too short",
"group-already-exists": "Group already exists", "group-already-exists": "Group already exists",
@ -80,7 +82,6 @@
"topic-thumbnails-are-disabled": "Topic thumbnails are disabled.", "topic-thumbnails-are-disabled": "Topic thumbnails are disabled.",
"invalid-file": "Invalid File", "invalid-file": "Invalid File",
"uploads-are-disabled": "Uploads are disabled", "uploads-are-disabled": "Uploads are disabled",
"upload-error": "Upload Error : %1",
"signature-too-long" : "Sorry, your signature cannot be longer than %1 characters.", "signature-too-long" : "Sorry, your signature cannot be longer than %1 characters.",
@ -96,5 +97,7 @@
"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.", "reload-failed": "NodeBB encountered a problem while reloading: \"%1\". NodeBB will continue to serve the existing client-side assets, although you should undo what you did just prior to reloading.",
"registration-error": "Registration Error", "registration-error": "Registration Error",
"parse-error": "Something went wrong while parsing server response" "parse-error": "Something went wrong while parsing server response",
"wrong-login-type-email": "Please use your email to login",
"wrong-login-type-username": "Please use your username to login"
} }

@ -5,6 +5,9 @@
"new_group": "Create New Group", "new_group": "Create New Group",
"no_groups_found": "There are no groups to see", "no_groups_found": "There are no groups to see",
"pending.accept": "Accept",
"pending.reject": "Reject",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>", "cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
"cover-change": "Change", "cover-change": "Change",
"cover-save": "Save", "cover-save": "Save",
@ -15,12 +18,20 @@
"details.pending": "Pending Members", "details.pending": "Pending Members",
"details.has_no_posts": "This group's members have not made any posts.", "details.has_no_posts": "This group's members have not made any posts.",
"details.latest_posts": "Latest Posts", "details.latest_posts": "Latest Posts",
"details.private": "Private Group", "details.private": "Private",
"details.public": "Public Group",
"details.grant": "Grant/Rescind Ownership", "details.grant": "Grant/Rescind Ownership",
"details.kick": "Kick", "details.kick": "Kick",
"details.owner_options": "Group Administration", "details.owner_options": "Group Administration",
"details.group_name": "Group Name",
"details.description": "Description",
"details.badge_preview": "Badge Preview",
"details.change_icon": "Change Icon",
"details.change_colour": "Change Colour",
"details.badge_text": "Badge Text",
"details.private_help": "If enabled, joining of groups requires approval from a group owner",
"details.hidden": "Hidden",
"details.hidden_help": "If enabled, this group will not be found in the groups listing, and users will have to be invited manually",
"event.updated": "Group details have been updated", "event.updated": "Group details have been updated",
"event.deleted": "The group \"%1\" has been deleted" "event.deleted": "The group \"%1\" has been deleted"

@ -1,5 +1,7 @@
{ {
"username": "Username / Email", "username-email": "Username / Email",
"username": "Username",
"email": "Email",
"remember_me": "Remember Me?", "remember_me": "Remember Me?",
"forgot_password": "Forgot Password?", "forgot_password": "Forgot Password?",
"alternative_logins": "Alternative Logins", "alternative_logins": "Alternative Logins",

@ -2,6 +2,7 @@
"title": "Notifications", "title": "Notifications",
"no_notifs": "You have no new notifications", "no_notifs": "You have no new notifications",
"see_all": "See all Notifications", "see_all": "See all Notifications",
"mark_all_read": "Mark all notifications read",
"back_to_home": "Back to %1", "back_to_home": "Back to %1",
"outgoing_link": "Outgoing Link", "outgoing_link": "Outgoing Link",

@ -6,6 +6,7 @@
"year": "Year", "year": "Year",
"alltime": "All Time", "alltime": "All Time",
"no_recent_topics": "There are no recent topics.", "no_recent_topics": "There are no recent topics.",
"no_popular_topics": "There are no popular topics.",
"there-is-a-new-topic": "There is a new topic.", "there-is-a-new-topic": "There is a new topic.",
"there-is-a-new-topic-and-a-new-post": "There is a new topic and a new post.", "there-is-a-new-topic-and-a-new-post": "There is a new topic and a new post.",

@ -15,6 +15,7 @@
"notify_me": "Be notified of new replies in this topic", "notify_me": "Be notified of new replies in this topic",
"quote": "Quote", "quote": "Quote",
"reply": "Reply", "reply": "Reply",
"guest-login-reply": "Log in to reply",
"edit": "Edit", "edit": "Edit",
"delete": "Delete", "delete": "Delete",
"purge": "Purge", "purge": "Purge",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "New Topic", "new_topic_button": "New Topic",
"guest-login-post": "Log in to post",
"no_topics": "<strong>There are no topics in this category.</strong><br />Why don't you try posting one?", "no_topics": "<strong>There are no topics in this category.</strong><br />Why don't you try posting one?",
"browsing": "browsing", "browsing": "browsing",
"no_replies": "No one has replied", "no_replies": "No one has replied",

@ -12,6 +12,7 @@
"notify_me": "Be notified of new replies in this topic", "notify_me": "Be notified of new replies in this topic",
"quote": "Quote", "quote": "Quote",
"reply": "Reply", "reply": "Reply",
"guest-login-reply": "Log in to reply",
"edit": "Edit", "edit": "Edit",
"delete": "Delete", "delete": "Delete",
"purge": "Purge", "purge": "Purge",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Nuevo tema", "new_topic_button": "Nuevo tema",
"guest-login-post": "Log in to post",
"no_topics": "<strong>No hay temas en esta categoría.</strong><br />¿Por que no te animas y publicas uno?", "no_topics": "<strong>No hay temas en esta categoría.</strong><br />¿Por que no te animas y publicas uno?",
"browsing": "viendo ahora", "browsing": "viendo ahora",
"no_replies": "Nadie ha respondido aún", "no_replies": "Nadie ha respondido aún",

@ -12,6 +12,7 @@
"notify_me": "Serás notificado cuando haya nuevas respuestas en este tema", "notify_me": "Serás notificado cuando haya nuevas respuestas en este tema",
"quote": "Citar", "quote": "Citar",
"reply": "Responder", "reply": "Responder",
"guest-login-reply": "Log in to reply",
"edit": "Editar", "edit": "Editar",
"delete": "Borrar", "delete": "Borrar",
"purge": "Purgar", "purge": "Purgar",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Uus teema", "new_topic_button": "Uus teema",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Kahjuks ei leidu siin kategoorias ühtegi teemat.</strong><br />Soovid postitada?", "no_topics": "<strong>Kahjuks ei leidu siin kategoorias ühtegi teemat.</strong><br />Soovid postitada?",
"browsing": "vaatab", "browsing": "vaatab",
"no_replies": "Keegi pole vastanud", "no_replies": "Keegi pole vastanud",

@ -12,6 +12,7 @@
"notify_me": "Saa teateid uutest postitustest selles teemas", "notify_me": "Saa teateid uutest postitustest selles teemas",
"quote": "Tsiteeri", "quote": "Tsiteeri",
"reply": "Vasta", "reply": "Vasta",
"guest-login-reply": "Log in to reply",
"edit": "Muuda", "edit": "Muuda",
"delete": "Kustuta", "delete": "Kustuta",
"purge": "Kustuta", "purge": "Kustuta",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "جستار تازه", "new_topic_button": "جستار تازه",
"guest-login-post": "Log in to post",
"no_topics": "<strong>هیچ جستاری در این دسته نیست.</strong><br />چرا شما یکی نفرستید؟", "no_topics": "<strong>هیچ جستاری در این دسته نیست.</strong><br />چرا شما یکی نفرستید؟",
"browsing": "بیننده‌ها", "browsing": "بیننده‌ها",
"no_replies": "هیچ کسی پاسخ نداده است.", "no_replies": "هیچ کسی پاسخ نداده است.",

@ -12,6 +12,7 @@
"notify_me": "از پاسخ‌های تازه در جستار آگاه شوید", "notify_me": "از پاسخ‌های تازه در جستار آگاه شوید",
"quote": "نقل قول", "quote": "نقل قول",
"reply": "پاسخ", "reply": "پاسخ",
"guest-login-reply": "Log in to reply",
"edit": "ویرایش", "edit": "ویرایش",
"delete": "Delete", "delete": "Delete",
"purge": "پاک کردن", "purge": "پاک کردن",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Uusi aihe", "new_topic_button": "Uusi aihe",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Tällä aihealueella ei ole yhtään aihetta.</strong><br />Miksi et aloittaisi uutta?", "no_topics": "<strong>Tällä aihealueella ei ole yhtään aihetta.</strong><br />Miksi et aloittaisi uutta?",
"browsing": "selaamassa", "browsing": "selaamassa",
"no_replies": "Kukaan ei ole vastannut", "no_replies": "Kukaan ei ole vastannut",

@ -12,6 +12,7 @@
"notify_me": "Ilmoita, kun tähän keskusteluun tulee uusia viestejä", "notify_me": "Ilmoita, kun tähän keskusteluun tulee uusia viestejä",
"quote": "Lainaa", "quote": "Lainaa",
"reply": "Vastaa", "reply": "Vastaa",
"guest-login-reply": "Log in to reply",
"edit": "Muokkaa", "edit": "Muokkaa",
"delete": "Poista", "delete": "Poista",
"purge": "Purge", "purge": "Purge",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Nouveau Sujet", "new_topic_button": "Nouveau sujet",
"guest-login-post": "Se connecter pour poster",
"no_topics": "<strong>Il n'y a aucun sujet dans cette catégorie.</strong><br />Pourquoi ne pas en créer un ?", "no_topics": "<strong>Il n'y a aucun sujet dans cette catégorie.</strong><br />Pourquoi ne pas en créer un ?",
"browsing": "parcouru par", "browsing": "parcouru par",
"no_replies": "Personne n'a répondu", "no_replies": "Personne n'a répondu",

@ -17,7 +17,7 @@
"invalid-pagination-value": "Valeur de pagination invalide", "invalid-pagination-value": "Valeur de pagination invalide",
"username-taken": "Nom dutilisateur déjà utilisé", "username-taken": "Nom dutilisateur déjà utilisé",
"email-taken": "Email déjà utilisé", "email-taken": "Email déjà utilisé",
"email-not-confirmed": "Votre adresse email n'est pas confirmée, cliquer ici pour la valider.", "email-not-confirmed": "Votre adresse email n'est pas confirmée, cliquez ici pour la valider.",
"email-not-confirmed-chat": "Vous ne pouver discuter tant que votre email n'est pas confirmé", "email-not-confirmed-chat": "Vous ne pouver discuter tant que votre email n'est pas confirmé",
"username-too-short": "Nom d'utilisateur trop court", "username-too-short": "Nom d'utilisateur trop court",
"username-too-long": "Nom d'utilisateur trop long", "username-too-long": "Nom d'utilisateur trop long",

@ -3,7 +3,7 @@
"search": "Recherche", "search": "Recherche",
"buttons.close": "Fermer", "buttons.close": "Fermer",
"403.title": "Accès refusé", "403.title": "Accès refusé",
"403.message": "Il semble que vous ayez atteint une page dont vous n'avez pas accès.", "403.message": "Il semble que vous ayez atteint une page à laquelle vous n'avez pas accès.",
"403.login": "Peut-être deviez vous <a href='%1/login'>essayer de vous connecter</a>?", "403.login": "Peut-être deviez vous <a href='%1/login'>essayer de vous connecter</a>?",
"404.title": "Introuvable", "404.title": "Introuvable",
"404.message": "Il semble que vous ayez atteint une page qui n'existe pas. Retourner à la <a href='%1/'>page d'accueil</a>.", "404.message": "Il semble que vous ayez atteint une page qui n'existe pas. Retourner à la <a href='%1/'>page d'accueil</a>.",
@ -14,7 +14,7 @@
"please_log_in": "Veuillez vous connecter", "please_log_in": "Veuillez vous connecter",
"logout": "Déconnexion", "logout": "Déconnexion",
"posting_restriction_info": "L'envoi de messages est réservé aux membres inscrits, cliquez ici pour vous connecter.", "posting_restriction_info": "L'envoi de messages est réservé aux membres inscrits, cliquez ici pour vous connecter.",
"welcome_back": "Bon retour", "welcome_back": "Bienvenue",
"you_have_successfully_logged_in": "Vous vous êtes bien connecté", "you_have_successfully_logged_in": "Vous vous êtes bien connecté",
"save_changes": "Enregistrer les changements", "save_changes": "Enregistrer les changements",
"close": "Fermer", "close": "Fermer",
@ -24,7 +24,7 @@
"header.admin": "Admin", "header.admin": "Admin",
"header.recent": "Récent", "header.recent": "Récent",
"header.unread": "Non lu", "header.unread": "Non lu",
"header.tags": "Tags", "header.tags": "Mots-clés",
"header.popular": "Populaire", "header.popular": "Populaire",
"header.users": "Utilisateurs", "header.users": "Utilisateurs",
"header.groups": "Groupes", "header.groups": "Groupes",
@ -32,7 +32,7 @@
"header.notifications": "Notifications", "header.notifications": "Notifications",
"header.search": "Recherche", "header.search": "Recherche",
"header.profile": "Profil", "header.profile": "Profil",
"notifications.loading": "Chargement des Notifications", "notifications.loading": "Chargement des notifications",
"chats.loading": "Chargement des chats", "chats.loading": "Chargement des chats",
"motd.welcome": "Bienvenue sur NodeBB, la plate-forme de discussion du futur.", "motd.welcome": "Bienvenue sur NodeBB, la plate-forme de discussion du futur.",
"previouspage": "Page précédente", "previouspage": "Page précédente",
@ -77,5 +77,5 @@
"privacy": "Vie privée", "privacy": "Vie privée",
"follow": "S'abonner", "follow": "S'abonner",
"unfollow": "Se désabonner", "unfollow": "Se désabonner",
"delete_all": "Supprimer Tout" "delete_all": "Tout supprimer"
} }

@ -1,10 +1,10 @@
{ {
"groups": "Groupes", "groups": "Groupes",
"view_group": "Voir le groupe", "view_group": "Voir le groupe",
"owner": "Propriétaire du Groupe", "owner": "Propriétaire du groupe",
"new_group": "Créer un Nouveau Groupe", "new_group": "Créer un nouveau groupe",
"no_groups_found": "Il n'y a aucun groupe", "no_groups_found": "Il n'y a aucun groupe",
"cover-instructions": "Glisser et Coller une image, ajuster la position, et cliquer sur <strong>Enregistrer</strong>", "cover-instructions": "Glissez-déposez une image, ajustez la position, et cliquez sur <strong>Enregistrer</strong>",
"cover-change": "Modifier", "cover-change": "Modifier",
"cover-save": "Enregistrer", "cover-save": "Enregistrer",
"cover-saving": "Enregistrement", "cover-saving": "Enregistrement",
@ -13,11 +13,11 @@
"details.pending": "Membres en attente", "details.pending": "Membres en attente",
"details.has_no_posts": "Les membres de ce groupe n'ont envoyé aucun message.", "details.has_no_posts": "Les membres de ce groupe n'ont envoyé aucun message.",
"details.latest_posts": "Derniers messages", "details.latest_posts": "Derniers messages",
"details.private": "Groupe Privé", "details.private": "Groupe privé",
"details.public": "Groupe Public", "details.public": "Groupe public",
"details.grant": "Grant/Rescind Ownership", "details.grant": "Promouvoir/rétrograder comme propriétaire",
"details.kick": "Kick", "details.kick": "Exclure",
"details.owner_options": "Administration du Groupe", "details.owner_options": "Administration du groupe",
"event.updated": "Les détails du groupe ont été mis à jour", "event.updated": "Les détails du groupe ont été mis à jour",
"event.deleted": "Le groupe é%1\" a été supprimé" "event.deleted": "Le groupe é%1\" a été supprimé"
} }

@ -1,11 +1,11 @@
{ {
"chat.chatting_with": "Discuter avec <span id=\"chat-with-name\"></span>", "chat.chatting_with": "Discuter avec <span id=\"chat-with-name\"></span>",
"chat.placeholder": "Taper votre message ici, appuyer sur Entrer pour envoyer", "chat.placeholder": "Tapez votre message ici, appuyez sur Entrer pour envoyer",
"chat.send": "Envoyer", "chat.send": "Envoyer",
"chat.no_active": "Vous n'avez aucune discussion en cours.", "chat.no_active": "Vous n'avez aucune discussion en cours.",
"chat.user_typing": "%1 est en train d'écrire ...", "chat.user_typing": "%1 est en train d'écrire ...",
"chat.user_has_messaged_you": "%1 vous a envoyé un message.", "chat.user_has_messaged_you": "%1 vous a envoyé un message.",
"chat.see_all": "Voir toutes les Discussions", "chat.see_all": "Voir toutes les discussions",
"chat.no-messages": "Veuillez sélectionner un destinataire pour voir l'historique des discussions", "chat.no-messages": "Veuillez sélectionner un destinataire pour voir l'historique des discussions",
"chat.recent-chats": "Discussions récentes", "chat.recent-chats": "Discussions récentes",
"chat.contacts": "Contacts", "chat.contacts": "Contacts",

@ -29,7 +29,7 @@
"number-of-views": "Nombre de vues", "number-of-views": "Nombre de vues",
"topic-start-date": "Date de création du sujet", "topic-start-date": "Date de création du sujet",
"username": "Nom d'utilisateur", "username": "Nom d'utilisateur",
"category": "Catgorie", "category": "Catégorie",
"descending": "Par ordre décroissant", "descending": "Par ordre décroissant",
"ascending": "Par ordre croissant" "ascending": "Par ordre croissant"
} }

@ -2,6 +2,6 @@
"no_tag_topics": "Il n'y a aucun sujet ayant ce mot-clé", "no_tag_topics": "Il n'y a aucun sujet ayant ce mot-clé",
"tags": "Mots-clés", "tags": "Mots-clés",
"enter_tags_here": "Entrez les mots-clés ici. Appuyez sur entrer après chaque mot-clé.", "enter_tags_here": "Entrez les mots-clés ici. Appuyez sur entrer après chaque mot-clé.",
"enter_tags_here_short": "Entrez des tags...", "enter_tags_here_short": "Entrez des mots-clés...",
"no_tags": "Il n'y a pas encore de mots-clés." "no_tags": "Il n'y a pas encore de mots-clés."
} }

@ -12,7 +12,8 @@
"notify_me": "Être notifié des réponses dans ce sujet", "notify_me": "Être notifié des réponses dans ce sujet",
"quote": "Citer", "quote": "Citer",
"reply": "Répondre", "reply": "Répondre",
"edit": "Editer", "guest-login-reply": "Se connecter pour répondre",
"edit": "Éditer",
"delete": "Supprimer", "delete": "Supprimer",
"purge": "Supprimer définitivement", "purge": "Supprimer définitivement",
"restore": "Restaurer", "restore": "Restaurer",
@ -39,7 +40,7 @@
"share_this_post": "Partager ce message", "share_this_post": "Partager ce message",
"thread_tools.title": "Outils pour sujets", "thread_tools.title": "Outils pour sujets",
"thread_tools.markAsUnreadForAll": "Marquer comme non lu", "thread_tools.markAsUnreadForAll": "Marquer comme non lu",
"thread_tools.pin": "Epingler le sujet", "thread_tools.pin": "Épingler le sujet",
"thread_tools.unpin": "Désépingler le sujet", "thread_tools.unpin": "Désépingler le sujet",
"thread_tools.lock": "Verrouiller le sujet", "thread_tools.lock": "Verrouiller le sujet",
"thread_tools.unlock": "Déverouiller le sujet", "thread_tools.unlock": "Déverouiller le sujet",
@ -60,9 +61,9 @@
"disabled_categories_note": "Les catégories désactivées sont grisées", "disabled_categories_note": "Les catégories désactivées sont grisées",
"confirm_move": "Déplacer", "confirm_move": "Déplacer",
"confirm_fork": "Scinder", "confirm_fork": "Scinder",
"favourite": "Favoris", "favourite": "Favori",
"favourites": "Favoris", "favourites": "Favoris",
"favourites.has_no_favourites": "Vous n'avez aucun favoris, mettez des messages en favoris pour les voir ici !", "favourites.has_no_favourites": "Vous n'avez aucun favori, mettez des messages en favoris pour les voir ici !",
"loading_more_posts": "Charger plus de messages", "loading_more_posts": "Charger plus de messages",
"move_topic": "Déplacer le sujet", "move_topic": "Déplacer le sujet",
"move_topics": "Déplacer des sujets", "move_topics": "Déplacer des sujets",
@ -73,19 +74,19 @@
"fork_topic_instruction": "Cliquez sur les postes à scinder", "fork_topic_instruction": "Cliquez sur les postes à scinder",
"fork_no_pids": "Aucun post sélectionné !", "fork_no_pids": "Aucun post sélectionné !",
"fork_success": "Sujet copié avec succès ! Cliquez ici pour aller au sujet copié.", "fork_success": "Sujet copié avec succès ! Cliquez ici pour aller au sujet copié.",
"composer.title_placeholder": "Entrer le titre du sujet ici ...", "composer.title_placeholder": "Entrer le titre du sujet ici",
"composer.handle_placeholder": "Nom", "composer.handle_placeholder": "Nom",
"composer.discard": "Abandonner", "composer.discard": "Abandonner",
"composer.submit": "Envoyer", "composer.submit": "Envoyer",
"composer.replying_to": "Réponse à %1", "composer.replying_to": "Réponse à %1",
"composer.new_topic": "Nouveau sujet", "composer.new_topic": "Nouveau sujet",
"composer.uploading": "envoi en cours ...", "composer.uploading": "envoi en cours",
"composer.thumb_url_label": "Coller une URL de vignette du sujet", "composer.thumb_url_label": "Coller une URL de vignette du sujet",
"composer.thumb_title": "Ajouter une vignette à ce sujet", "composer.thumb_title": "Ajouter une vignette à ce sujet",
"composer.thumb_url_placeholder": "http://exemple.com/vignette.png", "composer.thumb_url_placeholder": "http://exemple.com/vignette.png",
"composer.thumb_file_label": "Ou envoyer un fichier", "composer.thumb_file_label": "Ou envoyer un fichier",
"composer.thumb_remove": "Effacer les champs", "composer.thumb_remove": "Effacer les champs",
"composer.drag_and_drop_images": "Glisser-déposer les images ici", "composer.drag_and_drop_images": "Glissez-déposez les images ici",
"more_users_and_guests": "%1 autre(s) utilisateur(s) et %2 invité(s)", "more_users_and_guests": "%1 autre(s) utilisateur(s) et %2 invité(s)",
"more_users": "%1 autre(s) utilisateur(s)", "more_users": "%1 autre(s) utilisateur(s)",
"more_guests": "%1 autre(s) invité(s)", "more_guests": "%1 autre(s) invité(s)",

@ -2,8 +2,8 @@
"banned": "Banni", "banned": "Banni",
"offline": "Hors-ligne", "offline": "Hors-ligne",
"username": "Nom d'utilisateur", "username": "Nom d'utilisateur",
"joindate": "Date d'Adhésion", "joindate": "Date d'adhésion",
"postcount": "Nombre de Messages", "postcount": "Nombre de messages",
"email": "Email", "email": "Email",
"confirm_email": "Confirmer l'adresse email", "confirm_email": "Confirmer l'adresse email",
"delete_account": "Supprimer le compte", "delete_account": "Supprimer le compte",
@ -29,7 +29,7 @@
"unfollow": "Se désabonner", "unfollow": "Se désabonner",
"profile_update_success": "Le profil a bien été mis à jour !", "profile_update_success": "Le profil a bien été mis à jour !",
"change_picture": "Changer d'image", "change_picture": "Changer d'image",
"edit": "Editer", "edit": "Éditer",
"uploaded_picture": "Image envoyée", "uploaded_picture": "Image envoyée",
"upload_new_picture": "Envoyer une nouvelle image", "upload_new_picture": "Envoyer une nouvelle image",
"upload_new_picture_from_url": "Envoyer une nouvelle image depuis un URL", "upload_new_picture_from_url": "Envoyer une nouvelle image depuis un URL",
@ -44,7 +44,7 @@
"confirm_password": "Confirmer le mot de passe", "confirm_password": "Confirmer le mot de passe",
"password": "Mot de passe", "password": "Mot de passe",
"username_taken_workaround": "Le nom d'utilisateur désiré est déjà utilisé, nous l'avons donc légèrement modifié. Vous êtes maintenant connu comme <strong>%1</strong>", "username_taken_workaround": "Le nom d'utilisateur désiré est déjà utilisé, nous l'avons donc légèrement modifié. Vous êtes maintenant connu comme <strong>%1</strong>",
"upload_picture": "Envoyer une image", "upload_picture": "Envoyer l'image",
"upload_a_picture": "Envoyer une image", "upload_a_picture": "Envoyer une image",
"image_spec": "Vous ne pouvez envoyer que des fichiers PNG, JPG ou GIF", "image_spec": "Vous ne pouvez envoyer que des fichiers PNG, JPG ou GIF",
"max": "max.", "max": "max.",

@ -6,7 +6,7 @@
"enter_username": "Entrer un nom d'utilisateur pour rechercher", "enter_username": "Entrer un nom d'utilisateur pour rechercher",
"load_more": "Charger la suite", "load_more": "Charger la suite",
"users-found-search-took": "%1 utilisateur(s) trouvé(s)! La recherche a pris %2 secondes.", "users-found-search-took": "%1 utilisateur(s) trouvé(s)! La recherche a pris %2 secondes.",
"filter-by": "Filtrer Par", "filter-by": "Filtrer par",
"online-only": "En Ligne uniquement", "online-only": "En ligne uniquement",
"picture-only": "Avec Image uniquement" "picture-only": "Avec image uniquement"
} }

@ -1,5 +1,6 @@
{ {
"new_topic_button": "נושא חדש", "new_topic_button": "נושא חדש",
"guest-login-post": "Log in to post",
"no_topics": "<strong>קטגוריה זו ריקה מנושאים.</strong><br />למה שלא תנסה להוסיף נושא חדש?", "no_topics": "<strong>קטגוריה זו ריקה מנושאים.</strong><br />למה שלא תנסה להוסיף נושא חדש?",
"browsing": "צופים בנושא זה כעת", "browsing": "צופים בנושא זה כעת",
"no_replies": "אין תגובות", "no_replies": "אין תגובות",

@ -12,6 +12,7 @@
"notify_me": "קבל התראה כאשר יש תגובות חדשות בנושא זה", "notify_me": "קבל התראה כאשר יש תגובות חדשות בנושא זה",
"quote": "ציטוט", "quote": "ציטוט",
"reply": "תגובה", "reply": "תגובה",
"guest-login-reply": "Log in to reply",
"edit": "עריכה", "edit": "עריכה",
"delete": "מחק", "delete": "מחק",
"purge": "מחק הכל", "purge": "מחק הכל",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Új témakör", "new_topic_button": "Új témakör",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Nincs nyitva egy téma sem ebben a kategóriában.</strong>Hozzunk létre egyet.", "no_topics": "<strong>Nincs nyitva egy téma sem ebben a kategóriában.</strong>Hozzunk létre egyet.",
"browsing": "böngészés", "browsing": "böngészés",
"no_replies": "Nem érkezett válasz", "no_replies": "Nem érkezett válasz",

@ -11,7 +11,7 @@
"user.followers": "Tagok akik követik %1 -t", "user.followers": "Tagok akik követik %1 -t",
"user.posts": "Hozzászólások által %1", "user.posts": "Hozzászólások által %1",
"user.topics": "%1 által létrehozott témák", "user.topics": "%1 által létrehozott témák",
"user.groups": "%1's Groups", "user.groups": "%1's csoport",
"user.favourites": "%1 Kedvenc Hozzászólásai", "user.favourites": "%1 Kedvenc Hozzászólásai",
"user.settings": "Felhasználói Beállítások", "user.settings": "Felhasználói Beállítások",
"maintenance.text": "%1 jelenleg karbantartás alatt van. Kérlek nézz vissza késöbb!", "maintenance.text": "%1 jelenleg karbantartás alatt van. Kérlek nézz vissza késöbb!",

@ -12,6 +12,7 @@
"notify_me": "Értesítést kérek az új hozzászólásokról ebben a topikban", "notify_me": "Értesítést kérek az új hozzászólásokról ebben a topikban",
"quote": "Idéz", "quote": "Idéz",
"reply": "Válasz", "reply": "Válasz",
"guest-login-reply": "Log in to reply",
"edit": "Szerkeszt", "edit": "Szerkeszt",
"delete": "Töröl", "delete": "Töröl",
"purge": "Purge", "purge": "Purge",

@ -2,8 +2,8 @@
"banned": "Kitíltva", "banned": "Kitíltva",
"offline": "Nem elérhető", "offline": "Nem elérhető",
"username": "Felhasználónév", "username": "Felhasználónév",
"joindate": "Join Date", "joindate": "Regisztráció dátum",
"postcount": "Post Count", "postcount": "Bejegyzés megtekintés",
"email": "E-mail", "email": "E-mail",
"confirm_email": "E-mail megerősítése", "confirm_email": "E-mail megerősítése",
"delete_account": "Fiók törlése", "delete_account": "Fiók törlése",
@ -18,7 +18,7 @@
"profile_views": "Megtekintések", "profile_views": "Megtekintések",
"reputation": "Hírnév", "reputation": "Hírnév",
"favourites": "Kedvencek", "favourites": "Kedvencek",
"watched": "Watched", "watched": "Megtekintve",
"followers": "Követők", "followers": "Követők",
"following": "Követve", "following": "Követve",
"signature": "Aláírás", "signature": "Aláírás",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Topik Baru", "new_topic_button": "Topik Baru",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Tidak ada topik dikategori ini</strong><br/> Mengapa anda tidak mencoba membuat yang baru?", "no_topics": "<strong>Tidak ada topik dikategori ini</strong><br/> Mengapa anda tidak mencoba membuat yang baru?",
"browsing": "penjelajahan", "browsing": "penjelajahan",
"no_replies": "Belum ada orang yang menjawab", "no_replies": "Belum ada orang yang menjawab",

@ -12,6 +12,7 @@
"notify_me": "Beritahukan balasan baru untuk topik ini", "notify_me": "Beritahukan balasan baru untuk topik ini",
"quote": "Kutip", "quote": "Kutip",
"reply": "Balas", "reply": "Balas",
"guest-login-reply": "Log in to reply",
"edit": "Ubah", "edit": "Ubah",
"delete": "Hapus", "delete": "Hapus",
"purge": "Musnahkan", "purge": "Musnahkan",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Nuova Discussione", "new_topic_button": "Nuova Discussione",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Non ci sono discussioni in questa categoria.</strong><br />Perché non ne inizi una?", "no_topics": "<strong>Non ci sono discussioni in questa categoria.</strong><br />Perché non ne inizi una?",
"browsing": "visualizzando", "browsing": "visualizzando",
"no_replies": "Nessuno ha risposto", "no_replies": "Nessuno ha risposto",

@ -1,35 +1,35 @@
{ {
"results_matching": "%1 risultato(i) corrispondente(i) \"%2\", (%3 secondi)", "results_matching": "%1 risultato(i) corrispondente(i) \"%2\", (%3 secondi)",
"no-matches": "No matches found", "no-matches": "Nessuna corrispondenza trovata",
"in": "In", "in": "In",
"by": "By", "by": "Da",
"titles": "Titles", "titles": "Titoli",
"titles-posts": "Titles and Posts", "titles-posts": "Titoli e Messaggi",
"posted-by": "Posted by", "posted-by": "Pubblicato da",
"in-categories": "In Categories", "in-categories": "In Categorie",
"search-child-categories": "Search child categories", "search-child-categories": "Search child categories",
"reply-count": "Reply Count", "reply-count": "Numero Risposte",
"at-least": "At least", "at-least": "At least",
"at-most": "At most", "at-most": "At most",
"post-time": "Post time", "post-time": "Ora invio",
"newer-than": "Newer than", "newer-than": "Più nuovi di",
"older-than": "Older than", "older-than": "Più vecchi di",
"any-date": "Any date", "any-date": "Qualsiasi data",
"yesterday": "Yesterday", "yesterday": "Ieri",
"one-week": "One week", "one-week": "Una settimana",
"two-weeks": "Two weeks", "two-weeks": "Due settimane",
"one-month": "One month", "one-month": "Un mese",
"three-months": "Three months", "three-months": "Tre mesi",
"six-months": "Six months", "six-months": "Sei mesi",
"one-year": "One year", "one-year": "Un anno",
"sort-by": "Sort by", "sort-by": "Ordina per",
"last-reply-time": "Last reply time", "last-reply-time": "Last reply time",
"topic-title": "Topic title", "topic-title": "Titolo argomento",
"number-of-replies": "Number of replies", "number-of-replies": "Numero di risposte",
"number-of-views": "Number of views", "number-of-views": "Numero di visite",
"topic-start-date": "Topic start date", "topic-start-date": "Data inizio argomento",
"username": "Username", "username": "Nome utente",
"category": "Category", "category": "Categoria",
"descending": "In descending order", "descending": "In ordine decrescente",
"ascending": "In ascending order" "ascending": "In ordine crescente"
} }

@ -12,6 +12,7 @@
"notify_me": "Ricevi notifiche di nuove risposte in questa discussione", "notify_me": "Ricevi notifiche di nuove risposte in questa discussione",
"quote": "Cita", "quote": "Cita",
"reply": "Rispondi", "reply": "Rispondi",
"guest-login-reply": "Log in to reply",
"edit": "Modifica", "edit": "Modifica",
"delete": "Cancella", "delete": "Cancella",
"purge": "Svuota", "purge": "Svuota",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "新規スレッド", "new_topic_button": "新規スレッド",
"guest-login-post": "Log in to post",
"no_topics": "<strong>まだスレッドはありません.</strong><br />一番目のスレッドを書いてみないか?", "no_topics": "<strong>まだスレッドはありません.</strong><br />一番目のスレッドを書いてみないか?",
"browsing": "閲覧中", "browsing": "閲覧中",
"no_replies": "返事はまだありません", "no_replies": "返事はまだありません",

@ -12,6 +12,7 @@
"notify_me": "このスレッドに新しいポストが投稿された際に通知する", "notify_me": "このスレッドに新しいポストが投稿された際に通知する",
"quote": "引用", "quote": "引用",
"reply": "返答", "reply": "返答",
"guest-login-reply": "Log in to reply",
"edit": "編集", "edit": "編集",
"delete": "削除", "delete": "削除",
"purge": "Purge", "purge": "Purge",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "새 주제 생성", "new_topic_button": "새 주제 생성",
"guest-login-post": "Log in to post",
"no_topics": "<strong>이 카테고리에는 생성된 주제가 없습니다.</strong><br />먼저 주제를 생성해 보세요.", "no_topics": "<strong>이 카테고리에는 생성된 주제가 없습니다.</strong><br />먼저 주제를 생성해 보세요.",
"browsing": "이 주제를 읽고 있는 사용자", "browsing": "이 주제를 읽고 있는 사용자",
"no_replies": "답글이 없습니다.", "no_replies": "답글이 없습니다.",

@ -12,6 +12,7 @@
"notify_me": "이 주제의 새 답글 알리기", "notify_me": "이 주제의 새 답글 알리기",
"quote": "인용", "quote": "인용",
"reply": "답글", "reply": "답글",
"guest-login-reply": "Log in to reply",
"edit": "수정", "edit": "수정",
"delete": "삭제", "delete": "삭제",
"purge": "폐기", "purge": "폐기",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Nauja tema", "new_topic_button": "Nauja tema",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Šioje kategorijoje temų nėra.</strong><br/>Kodėl gi jums nesukūrus naujos?", "no_topics": "<strong>Šioje kategorijoje temų nėra.</strong><br/>Kodėl gi jums nesukūrus naujos?",
"browsing": "naršo", "browsing": "naršo",
"no_replies": "Niekas dar neatsakė", "no_replies": "Niekas dar neatsakė",

@ -12,6 +12,7 @@
"notify_me": "Gauti pranešimus apie naujus atsakymus šioje temoje", "notify_me": "Gauti pranešimus apie naujus atsakymus šioje temoje",
"quote": "Cituoti", "quote": "Cituoti",
"reply": "Atsakyti", "reply": "Atsakyti",
"guest-login-reply": "Log in to reply",
"edit": "Redaguoti", "edit": "Redaguoti",
"delete": "Ištrinti", "delete": "Ištrinti",
"purge": "Išvalyti", "purge": "Išvalyti",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "\nTopik Baru", "new_topic_button": "\nTopik Baru",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Tiada topik dalam kategori ini.</strong><br />Cuba menghantar topik yang baru?", "no_topics": "<strong>Tiada topik dalam kategori ini.</strong><br />Cuba menghantar topik yang baru?",
"browsing": "melihat", "browsing": "melihat",
"no_replies": "Tiada jawapan", "no_replies": "Tiada jawapan",

@ -12,6 +12,7 @@
"notify_me": "Kekal dimaklumkan berkenaan respon dalam topik ini", "notify_me": "Kekal dimaklumkan berkenaan respon dalam topik ini",
"quote": "Petikan", "quote": "Petikan",
"reply": "Balas", "reply": "Balas",
"guest-login-reply": "Log in to reply",
"edit": "Edit", "edit": "Edit",
"delete": "Padamkan", "delete": "Padamkan",
"purge": "Purge", "purge": "Purge",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Nytt emne", "new_topic_button": "Nytt emne",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Det er ingen emner i denne kategorien</strong><br />Hvorfor ikke lage ett?", "no_topics": "<strong>Det er ingen emner i denne kategorien</strong><br />Hvorfor ikke lage ett?",
"browsing": "leser", "browsing": "leser",
"no_replies": "Ingen har svart", "no_replies": "Ingen har svart",

@ -12,6 +12,7 @@
"notify_me": "Bli varslet om nye svar i dette emnet", "notify_me": "Bli varslet om nye svar i dette emnet",
"quote": "Siter", "quote": "Siter",
"reply": "Svar", "reply": "Svar",
"guest-login-reply": "Log in to reply",
"edit": "Endre", "edit": "Endre",
"delete": "Slett", "delete": "Slett",
"purge": "Tøm", "purge": "Tøm",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Nieuw onderwerp", "new_topic_button": "Nieuw onderwerp",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Er zijn geen onderwerpen in deze categorie.</strong><br />Waarom maak je er niet een aan?", "no_topics": "<strong>Er zijn geen onderwerpen in deze categorie.</strong><br />Waarom maak je er niet een aan?",
"browsing": "verkennen", "browsing": "verkennen",
"no_replies": "Niemand heeft gereageerd", "no_replies": "Niemand heeft gereageerd",

@ -12,6 +12,7 @@
"notify_me": "Krijg notificaties van nieuwe reacties op dit onderwerp", "notify_me": "Krijg notificaties van nieuwe reacties op dit onderwerp",
"quote": "Citeren", "quote": "Citeren",
"reply": "Reageren", "reply": "Reageren",
"guest-login-reply": "Log in to reply",
"edit": "Aanpassen", "edit": "Aanpassen",
"delete": "Verwijderen", "delete": "Verwijderen",
"purge": "weggooien", "purge": "weggooien",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Nowy wątek", "new_topic_button": "Nowy wątek",
"guest-login-post": "Log in to post",
"no_topics": "<strong>W tej kategorii nie ma jeszcze żadnych wątków.</strong><br />Dlaczego ty nie utworzysz jakiegoś?", "no_topics": "<strong>W tej kategorii nie ma jeszcze żadnych wątków.</strong><br />Dlaczego ty nie utworzysz jakiegoś?",
"browsing": "przegląda", "browsing": "przegląda",
"no_replies": "Nikt jeszcze nie odpowiedział", "no_replies": "Nikt jeszcze nie odpowiedział",

@ -9,9 +9,9 @@
"reset.text1": "Otrzymaliśmy żądanie przywrócenia Twojego hasła. Jeśli nie żądałeś przywrócenia hasła, zignoruj ten e-mail.", "reset.text1": "Otrzymaliśmy żądanie przywrócenia Twojego hasła. Jeśli nie żądałeś przywrócenia hasła, zignoruj ten e-mail.",
"reset.text2": "Aby przywrócić swoje hasło, skorzystaj z poniższego linku:", "reset.text2": "Aby przywrócić swoje hasło, skorzystaj z poniższego linku:",
"reset.cta": "Kliknij tu, by przywrócić swoje hasło", "reset.cta": "Kliknij tu, by przywrócić swoje hasło",
"reset.notify.subject": "Password successfully changed", "reset.notify.subject": "Hasło pomyślnie zmienione",
"reset.notify.text1": "We are notifying you that on %1, your password was changed successfully.", "reset.notify.text1": "Informujemy, że %1, twoje hasło zostało pomyślnie zmienione.",
"reset.notify.text2": "If you did not authorise this, please notify an administrator immediately.", "reset.notify.text2": "Jeśli nie wyraziłeś na to zgody, proszę niezwłocznie poinformuj administratora.",
"digest.notifications": "Masz nowe powiadomienia od %1:", "digest.notifications": "Masz nowe powiadomienia od %1:",
"digest.latest_topics": "Ostatnie tematy z %1", "digest.latest_topics": "Ostatnie tematy z %1",
"digest.cta": "Kliknij, by odwiedzić %1", "digest.cta": "Kliknij, by odwiedzić %1",
@ -20,8 +20,8 @@
"notif.chat.subject": "Nowa wiadomość czatu od %1", "notif.chat.subject": "Nowa wiadomość czatu od %1",
"notif.chat.cta": "Kliknij tutaj, by kontynuować konwersację", "notif.chat.cta": "Kliknij tutaj, by kontynuować konwersację",
"notif.chat.unsub.info": "To powiadomienie o czacie zostało Ci wysłane zgodnie z ustawieniami Twojego konta.", "notif.chat.unsub.info": "To powiadomienie o czacie zostało Ci wysłane zgodnie z ustawieniami Twojego konta.",
"notif.post.cta": "Click here to read the full topic", "notif.post.cta": "Kliknij tutaj, aby przeczytać cały wątek.",
"notif.post.unsub.info": "This post notification was sent to you due to your subscription settings.", "notif.post.unsub.info": "To powiadomienie o poście zostało Ci wysłane zgodnie z ustawieniami Twojego konta.",
"test.text1": "To jest e-mail testowy, aby sprawdzić, czy poprawnie skonfigurowałeś e-mailer w swoim NodeBB.", "test.text1": "To jest e-mail testowy, aby sprawdzić, czy poprawnie skonfigurowałeś e-mailer w swoim NodeBB.",
"unsub.cta": "Kliknij tutaj, by zmienić te ustawienia", "unsub.cta": "Kliknij tutaj, by zmienić te ustawienia",
"closing": "Dziękujemy!" "closing": "Dziękujemy!"

@ -18,7 +18,7 @@
"username-taken": "Login zajęty.", "username-taken": "Login zajęty.",
"email-taken": "E-mail zajęty.", "email-taken": "E-mail zajęty.",
"email-not-confirmed": "Twój email nie został jeszcze potwierdzony. Proszę kliknąć tutaj by go potwierdzić.", "email-not-confirmed": "Twój email nie został jeszcze potwierdzony. Proszę kliknąć tutaj by go potwierdzić.",
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed", "email-not-confirmed-chat": "Nie możesz rozmawiać do czasu, gdy twój email zostanie potwierdzony.",
"username-too-short": "Nazwa użytkownika za krótka.", "username-too-short": "Nazwa użytkownika za krótka.",
"username-too-long": "Zbyt długa nazwa użytkownika", "username-too-long": "Zbyt długa nazwa użytkownika",
"user-banned": "Użytkownik zbanowany", "user-banned": "Użytkownik zbanowany",
@ -35,7 +35,7 @@
"topic-locked": "Temat zamknięty", "topic-locked": "Temat zamknięty",
"still-uploading": "Poczekaj na pełne załadowanie", "still-uploading": "Poczekaj na pełne załadowanie",
"content-too-short": "Proszę wpisać dłuższy post. Posty powinny zawierać co najmniej %1 znaków.", "content-too-short": "Proszę wpisać dłuższy post. Posty powinny zawierać co najmniej %1 znaków.",
"content-too-long": "Please enter a shorter post. Posts can't be longer than %1 characters.", "content-too-long": "Proszę wpisać krótszy post. Posty nie mogą zawierać więcej niż %1 znaków.",
"title-too-short": "Proszę podać dłuższy tytuł. Tytuły powinny zawierać co najmniej %1 znaków.", "title-too-short": "Proszę podać dłuższy tytuł. Tytuły powinny zawierać co najmniej %1 znaków.",
"title-too-long": "Wpisz krótszy tytuł, nie może być dłuższy niż %1 znaków.", "title-too-long": "Wpisz krótszy tytuł, nie może być dłuższy niż %1 znaków.",
"too-many-posts": "Możesz wysyłać posty co %1 sekund - proszę poczekać", "too-many-posts": "Możesz wysyłać posty co %1 sekund - proszę poczekać",
@ -45,13 +45,13 @@
"already-favourited": "Już polubiłeś ten post", "already-favourited": "Już polubiłeś ten post",
"already-unfavourited": "Już przestałeś lubić ten post", "already-unfavourited": "Już przestałeś lubić ten post",
"cant-ban-other-admins": "Nie możesz zbanować innych adminów!", "cant-ban-other-admins": "Nie możesz zbanować innych adminów!",
"invalid-image-type": "Invalid image type. Allowed types are: %1", "invalid-image-type": "Błędny typ pliku. Dozwolone typy to: %1",
"invalid-image-extension": "Invalid image extension", "invalid-image-extension": "Błędne rozszerzenie pliku",
"group-name-too-short": "Nazwa grupy za krótka", "group-name-too-short": "Nazwa grupy za krótka",
"group-already-exists": "Grupa już istnieje", "group-already-exists": "Grupa już istnieje",
"group-name-change-not-allowed": "Nie można zmieniać nazwy tej grupy.", "group-name-change-not-allowed": "Nie można zmieniać nazwy tej grupy.",
"group-already-member": "You are already part of this group", "group-already-member": "Już należysz do tej grupy",
"group-needs-owner": "This group requires at least one owner", "group-needs-owner": "Ta grupa musi mieć przynajmniej jednego właściciela",
"post-already-deleted": "Ten post został już skasowany", "post-already-deleted": "Ten post został już skasowany",
"post-already-restored": "Ten post został już przywrócony", "post-already-restored": "Ten post został już przywrócony",
"topic-already-deleted": "Ten temat został już skasowany", "topic-already-deleted": "Ten temat został już skasowany",
@ -63,12 +63,12 @@
"signature-too-long": "Przepraszamy, ale podpis nie może być dłuższy niż %1 znaków.", "signature-too-long": "Przepraszamy, ale podpis nie może być dłuższy niż %1 znaków.",
"cant-chat-with-yourself": "Nie możesz rozmawiać ze sobą", "cant-chat-with-yourself": "Nie możesz rozmawiać ze sobą",
"chat-restricted": "Ten użytkownik ograniczył swoje czaty. Musi Cię śledzić, zanim będziesz mógł z nim czatować.", "chat-restricted": "Ten użytkownik ograniczył swoje czaty. Musi Cię śledzić, zanim będziesz mógł z nim czatować.",
"too-many-messages": "You have sent too many messages, please wait awhile.", "too-many-messages": "Wysłałeś zbyt wiele wiadomości, proszę poczekaj chwilę.",
"reputation-system-disabled": "System reputacji został wyłączony", "reputation-system-disabled": "System reputacji został wyłączony",
"downvoting-disabled": "Ocena postów jest wyłączona", "downvoting-disabled": "Ocena postów jest wyłączona",
"not-enough-reputation-to-downvote": "Masz za mało reputacji by ocenić ten post.", "not-enough-reputation-to-downvote": "Masz za mało reputacji by ocenić ten post.",
"not-enough-reputation-to-flag": "Nie masz dość reputacji, by flagować ten post", "not-enough-reputation-to-flag": "Nie masz dość reputacji, by flagować ten post",
"reload-failed": "NodeBB napotkał problem w czasie ładowania \"%1\". Forum będzie nadal dostarczać zasoby dostępne w kliencie, jednak powinieneś cofnąć ostatnią akcję.", "reload-failed": "NodeBB napotkał problem w czasie ładowania \"%1\". Forum będzie nadal dostarczać zasoby dostępne w kliencie, jednak powinieneś cofnąć ostatnią akcję.",
"registration-error": "Błąd rejestracji", "registration-error": "Błąd rejestracji",
"parse-error": "Something went wrong while parsing server response" "parse-error": "Coś poszło nie tak podczas parsingu odpowiedzi serwera"
} }

@ -3,10 +3,10 @@
"search": "Szukaj", "search": "Szukaj",
"buttons.close": "Zamknij", "buttons.close": "Zamknij",
"403.title": "Dostęp zabroniony", "403.title": "Dostęp zabroniony",
"403.message": "You seem to have stumbled upon a page that you do not have access to.", "403.message": "Wygląda na to, że trafiłeś na stronę, do której nie masz dostępu.",
"403.login": "Perhaps you should <a href='%1/login'>try logging in</a>?", "403.login": "Może powinieneś się <a href='%1/login'>zalogować</a>?",
"404.title": "Nie znaleziono", "404.title": "Nie znaleziono",
"404.message": "You seem to have stumbled upon a page that does not exist. Return to the <a href='%1/'>home page</a>.", "404.message": "Wygląda na to, że trafiłeś na stronę, która nie istnieje. Wróć do <a href='%1/'>strony głównej</a>.",
"500.title": "Błąd wewnętrzny", "500.title": "Błąd wewnętrzny",
"500.message": "Ups! Coś poszło nie tak.", "500.message": "Ups! Coś poszło nie tak.",
"register": "Zarejestruj się", "register": "Zarejestruj się",
@ -27,7 +27,7 @@
"header.tags": "Tagi", "header.tags": "Tagi",
"header.popular": "Popularne", "header.popular": "Popularne",
"header.users": "Użytkownicy", "header.users": "Użytkownicy",
"header.groups": "Groups", "header.groups": "Grupy",
"header.chats": "Rozmowy", "header.chats": "Rozmowy",
"header.notifications": "Powiadomienia", "header.notifications": "Powiadomienia",
"header.search": "Szukaj", "header.search": "Szukaj",
@ -75,7 +75,7 @@
"updated.title": "Forum zaktualizowane", "updated.title": "Forum zaktualizowane",
"updated.message": "To forum zostało zaktualizowane do najnowszej wersji. Kliknij tutaj by odświeżyć stronę", "updated.message": "To forum zostało zaktualizowane do najnowszej wersji. Kliknij tutaj by odświeżyć stronę",
"privacy": "Prywatność", "privacy": "Prywatność",
"follow": "Follow", "follow": "Obserwuj",
"unfollow": "Unfollow", "unfollow": "Przestań śledzić",
"delete_all": "Usuń wszystko" "delete_all": "Usuń wszystko"
} }

@ -1,23 +1,23 @@
{ {
"groups": "Grupy", "groups": "Grupy",
"view_group": "Obejrzyj grupę", "view_group": "Obejrzyj grupę",
"owner": "Group Owner", "owner": "Właściciel grupy",
"new_group": "Create New Group", "new_group": "Stwórz nową grupę",
"no_groups_found": "There are no groups to see", "no_groups_found": "Brak grup do wyświetlenia",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>", "cover-instructions": "Przeciągnij i upuść zdjęcie, ustaw w odpowiedniej pozycji i kliknij <strong>Zapisz</strong>",
"cover-change": "Change", "cover-change": "Zmień",
"cover-save": "Save", "cover-save": "Zapisz",
"cover-saving": "Saving", "cover-saving": "Zapisuję",
"details.title": "Szczegóły grupy", "details.title": "Szczegóły grupy",
"details.members": "Lista członków", "details.members": "Lista członków",
"details.pending": "Pending Members", "details.pending": "Członkowie oczekujący",
"details.has_no_posts": "Członkowie tej grupy nie napisali żadnych postów.", "details.has_no_posts": "Członkowie tej grupy nie napisali żadnych postów.",
"details.latest_posts": "Ostatnie posty", "details.latest_posts": "Ostatnie posty",
"details.private": "Private Group", "details.private": "Grupa prywatna",
"details.public": "Public Group", "details.public": "Grupa publiczna",
"details.grant": "Grant/Rescind Ownership", "details.grant": "Nadaj/Cofnij prawa Właściciela",
"details.kick": "Kick", "details.kick": "Wykop",
"details.owner_options": "Group Administration", "details.owner_options": "Administracja grupy",
"event.updated": "Group details have been updated", "event.updated": "Dane grupy zostały zaktualizowane",
"event.deleted": "The group \"%1\" has been deleted" "event.deleted": "Grupa \"%1\" została skasowana"
} }

@ -11,7 +11,7 @@
"user.followers": "Obserwujący %1", "user.followers": "Obserwujący %1",
"user.posts": "Posty napisane przez %1", "user.posts": "Posty napisane przez %1",
"user.topics": "Wątki stworzone przez %1", "user.topics": "Wątki stworzone przez %1",
"user.groups": "%1's Groups", "user.groups": "Grupy %1",
"user.favourites": "Ulubione posty %1", "user.favourites": "Ulubione posty %1",
"user.settings": "Ustawienia użytkownika", "user.settings": "Ustawienia użytkownika",
"maintenance.text": "Obecnie trwają prace konserwacyjne nad %1. Proszę wrócić później.", "maintenance.text": "Obecnie trwają prace konserwacyjne nad %1. Proszę wrócić później.",

@ -6,13 +6,13 @@
"year": "Rok", "year": "Rok",
"alltime": "Od początku", "alltime": "Od początku",
"no_recent_topics": "Brak ostatnich wątków.", "no_recent_topics": "Brak ostatnich wątków.",
"there-is-a-new-topic": "There is a new topic.", "there-is-a-new-topic": "Masz nowy wątek.",
"there-is-a-new-topic-and-a-new-post": "There is a new topic and a new post.", "there-is-a-new-topic-and-a-new-post": "Masz nowy wątek i nowy post.",
"there-is-a-new-topic-and-new-posts": "There is a new topic and %1 new posts.", "there-is-a-new-topic-and-new-posts": "Masz nowy wątek i %1 nowych postów.",
"there-are-new-topics": "There are %1 new topics.", "there-are-new-topics": "Masz %1 nowych wątków.",
"there-are-new-topics-and-a-new-post": "There are %1 new topics and a new post.", "there-are-new-topics-and-a-new-post": "Masz %1 nowych wątków i nowy post.",
"there-are-new-topics-and-new-posts": "There are %1 new topics and %2 new posts.", "there-are-new-topics-and-new-posts": "Masz %1 nowych wątków i %2 nowych postów.",
"there-is-a-new-post": "There is a new post.", "there-is-a-new-post": "Masz nowy post.",
"there-are-new-posts": "There are %1 new posts.", "there-are-new-posts": "Masz %1 nowych postów.",
"click-here-to-reload": "Click here to reload." "click-here-to-reload": "Kliknij tutaj, aby przeładować."
} }

@ -11,6 +11,6 @@
"enter_email_address": "Wpisz swój adres e-mail", "enter_email_address": "Wpisz swój adres e-mail",
"password_reset_sent": "Instrukcje zostały wysłane", "password_reset_sent": "Instrukcje zostały wysłane",
"invalid_email": "Niepoprawny adres e-mail.", "invalid_email": "Niepoprawny adres e-mail.",
"password_too_short": "The password entered is too short, please pick a different password.", "password_too_short": "Wprowadzone hasło jest zbyt krótkie, proszę wybierz inne hasło.",
"passwords_do_not_match": "The two passwords you've entered do not match." "passwords_do_not_match": "Wprowadzone hasła nie pasują do siebie"
} }

@ -1,35 +1,35 @@
{ {
"results_matching": "%1 wyników pasujących do \"%2\", (%3 sekund)", "results_matching": "%1 wyników pasujących do \"%2\", (%3 sekund)",
"no-matches": "No matches found", "no-matches": "Nie znaleziono pasujących wyników",
"in": "In", "in": "W",
"by": "By", "by": "Przez",
"titles": "Titles", "titles": "Tytuły",
"titles-posts": "Titles and Posts", "titles-posts": "Tytuły i posty",
"posted-by": "Posted by", "posted-by": "Napisane przez",
"in-categories": "In Categories", "in-categories": "W kategoriach",
"search-child-categories": "Search child categories", "search-child-categories": "Przeszukaj podkategorie",
"reply-count": "Reply Count", "reply-count": "Ilość odpowiedzi",
"at-least": "At least", "at-least": "Przynajmniej",
"at-most": "At most", "at-most": "Co najwyżej",
"post-time": "Post time", "post-time": "Napisano",
"newer-than": "Newer than", "newer-than": "Nowsze niż",
"older-than": "Older than", "older-than": "Starsze niż",
"any-date": "Any date", "any-date": "Kiedykolwiek",
"yesterday": "Yesterday", "yesterday": "Wczoraj",
"one-week": "One week", "one-week": "Jeden tydzień",
"two-weeks": "Two weeks", "two-weeks": "Dwa tygodnie",
"one-month": "One month", "one-month": "Jeden miesiąc",
"three-months": "Three months", "three-months": "Trzy miesiące",
"six-months": "Six months", "six-months": "Sześć miesięcy",
"one-year": "One year", "one-year": "Jeden rok",
"sort-by": "Sort by", "sort-by": "Sortuj po",
"last-reply-time": "Last reply time", "last-reply-time": "Odpowiedziano ostatnio",
"topic-title": "Topic title", "topic-title": "Tytuł wątku",
"number-of-replies": "Number of replies", "number-of-replies": "Ilość odpowiedzi",
"number-of-views": "Number of views", "number-of-views": "Ilość wyświetleń",
"topic-start-date": "Topic start date", "topic-start-date": "Data utworzenia wątku",
"username": "Username", "username": "Nazwa użytkownika",
"category": "Category", "category": "Kategoria",
"descending": "In descending order", "descending": "W kolejności malejącej",
"ascending": "In ascending order" "ascending": "W kolejności rosnącej"
} }

@ -12,6 +12,7 @@
"notify_me": "Powiadamiaj mnie o nowych odpowiedziach w tym wątku", "notify_me": "Powiadamiaj mnie o nowych odpowiedziach w tym wątku",
"quote": "Cytuj", "quote": "Cytuj",
"reply": "Odpowiedz", "reply": "Odpowiedz",
"guest-login-reply": "Log in to reply",
"edit": "Edytuj", "edit": "Edytuj",
"delete": "Usuń", "delete": "Usuń",
"purge": "Wymaż", "purge": "Wymaż",
@ -74,7 +75,7 @@
"fork_no_pids": "Nie zaznaczyłeś żadnych postów!", "fork_no_pids": "Nie zaznaczyłeś żadnych postów!",
"fork_success": "Udało się skopiować wątek. Kliknij tutaj, aby do niego przejść.", "fork_success": "Udało się skopiować wątek. Kliknij tutaj, aby do niego przejść.",
"composer.title_placeholder": "Wpisz tytuł wątku tutaj", "composer.title_placeholder": "Wpisz tytuł wątku tutaj",
"composer.handle_placeholder": "Name", "composer.handle_placeholder": "Nazwa",
"composer.discard": "Odrzuć", "composer.discard": "Odrzuć",
"composer.submit": "Wyślij", "composer.submit": "Wyślij",
"composer.replying_to": "Odpowiadanie na %1", "composer.replying_to": "Odpowiadanie na %1",
@ -94,5 +95,5 @@
"oldest_to_newest": "Najpierw najstarsze", "oldest_to_newest": "Najpierw najstarsze",
"newest_to_oldest": "Najpierw najnowsze", "newest_to_oldest": "Najpierw najnowsze",
"most_votes": "Najwięcej głosów", "most_votes": "Najwięcej głosów",
"most_posts": "Most posts" "most_posts": "Najwięcej postów"
} }

@ -2,8 +2,8 @@
"banned": "Zbanowany", "banned": "Zbanowany",
"offline": "Offline", "offline": "Offline",
"username": "Nazwa użytkownika", "username": "Nazwa użytkownika",
"joindate": "Join Date", "joindate": "Data rejestracji",
"postcount": "Post Count", "postcount": "Liczba postów",
"email": "Adres e-mail", "email": "Adres e-mail",
"confirm_email": "Potwierdź e-mail", "confirm_email": "Potwierdź e-mail",
"delete_account": "Skasuj konto", "delete_account": "Skasuj konto",
@ -18,7 +18,7 @@
"profile_views": "wyświetleń", "profile_views": "wyświetleń",
"reputation": "reputacji", "reputation": "reputacji",
"favourites": "Ulubione", "favourites": "Ulubione",
"watched": "Watched", "watched": "Obserwowane",
"followers": "Obserwujących", "followers": "Obserwujących",
"following": "Obserwowanych", "following": "Obserwowanych",
"signature": "Sygnatura", "signature": "Sygnatura",
@ -59,12 +59,12 @@
"digest_weekly": "Co tydzień", "digest_weekly": "Co tydzień",
"digest_monthly": "Co miesiąc", "digest_monthly": "Co miesiąc",
"send_chat_notifications": "Wyślij e-maila, jeśli dostanę nową wiadomość, a nie jestem on-line", "send_chat_notifications": "Wyślij e-maila, jeśli dostanę nową wiadomość, a nie jestem on-line",
"send_post_notifications": "Send an email when replies are made to topics I am subscribed to", "send_post_notifications": "Wyślij e-maila, kiedy wątki, które subskrybuję otrzymają odpowiedź",
"has_no_follower": "Ten użytkownik nie ma jeszcze żadnych obserwujących", "has_no_follower": "Ten użytkownik nie ma jeszcze żadnych obserwujących",
"follows_no_one": "Użytkownik jeszcze nikogo nie obsweruje.", "follows_no_one": "Użytkownik jeszcze nikogo nie obsweruje.",
"has_no_posts": "Użytkownik nie napisał jeszcze żadnych postów.", "has_no_posts": "Użytkownik nie napisał jeszcze żadnych postów.",
"has_no_topics": "Ten użytkownik nie napisał jeszcze żadnego wątku.", "has_no_topics": "Ten użytkownik nie napisał jeszcze żadnego wątku.",
"has_no_watched_topics": "This user didn't watch any topics yet.", "has_no_watched_topics": "Ten użytkownik nie obserwował jeszcze żadnego wątku.",
"email_hidden": "Adres e-mail ukryty", "email_hidden": "Adres e-mail ukryty",
"hidden": "ukryty", "hidden": "ukryty",
"paginate_description": "Użyj klasycznego trybu paginacji zamiast nieskończonego przewijania.", "paginate_description": "Użyj klasycznego trybu paginacji zamiast nieskończonego przewijania.",

@ -5,8 +5,8 @@
"search": "Szukaj", "search": "Szukaj",
"enter_username": "Wpisz nazwę użytkownika", "enter_username": "Wpisz nazwę użytkownika",
"load_more": "Więcej", "load_more": "Więcej",
"users-found-search-took": "%1 user(s) found! Search took %2 seconds.", "users-found-search-took": "Znaleziono %1 użytkownik(ów). Szukanie zajęło %2 sek.",
"filter-by": "Filter By", "filter-by": "Filtruj",
"online-only": "Online only", "online-only": "Tylko dostępny",
"picture-only": "Picture only" "picture-only": "Tylko ze zdjęciem"
} }

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Novo Tópico", "new_topic_button": "Novo Tópico",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Não tem nenhum tópico nesta categoria.</strong><br />Por que você não tenta postar o algum?", "no_topics": "<strong>Não tem nenhum tópico nesta categoria.</strong><br />Por que você não tenta postar o algum?",
"browsing": "navegando", "browsing": "navegando",
"no_replies": "Ninguém respondeu", "no_replies": "Ninguém respondeu",

@ -9,9 +9,9 @@
"reset.text1": "Nós recebemos um pedido para reconfigurar sua senha, possivelmente porque você a esqueceu. Se este não é o caso, por favor ignore este email.", "reset.text1": "Nós recebemos um pedido para reconfigurar sua senha, possivelmente porque você a esqueceu. Se este não é o caso, por favor ignore este email.",
"reset.text2": "Para continuar com a reconfiguração de senha, por favor clique no seguinte link:", "reset.text2": "Para continuar com a reconfiguração de senha, por favor clique no seguinte link:",
"reset.cta": "Clique aqui para reconfigurar sua senha", "reset.cta": "Clique aqui para reconfigurar sua senha",
"reset.notify.subject": "Password successfully changed", "reset.notify.subject": "Senha alterada com sucesso",
"reset.notify.text1": "We are notifying you that on %1, your password was changed successfully.", "reset.notify.text1": "Nós estamos notificando você que em %1, sua senha foi alterada com sucesso.",
"reset.notify.text2": "If you did not authorise this, please notify an administrator immediately.", "reset.notify.text2": "Se você não autorizou isso, por favor notifique um administrador imediatamente.",
"digest.notifications": "Você tem notificações não lidas de %1:", "digest.notifications": "Você tem notificações não lidas de %1:",
"digest.latest_topics": "Últimos tópicos de %1", "digest.latest_topics": "Últimos tópicos de %1",
"digest.cta": "Clique aqui para visitar %1", "digest.cta": "Clique aqui para visitar %1",

@ -35,7 +35,7 @@
"topic-locked": "Tópico Trancado", "topic-locked": "Tópico Trancado",
"still-uploading": "Aguarde a conclusão dos uploads.", "still-uploading": "Aguarde a conclusão dos uploads.",
"content-too-short": "Por favor digite um post mais longo. Posts devem conter no mínimo %1 caracteres.", "content-too-short": "Por favor digite um post mais longo. Posts devem conter no mínimo %1 caracteres.",
"content-too-long": "Please enter a shorter post. Posts can't be longer than %1 characters.", "content-too-long": "Por favor entre com um post mais curto. Posts não podem ser maiores do que %1 caracteres.",
"title-too-short": "Por favor digite um título mais longo. Títulos devem conter no mínimo %1 caracteres.", "title-too-short": "Por favor digite um título mais longo. Títulos devem conter no mínimo %1 caracteres.",
"title-too-long": "Por favor entre com um título mais curto; Títulos não podem ser maiores que %1 caracteres.", "title-too-long": "Por favor entre com um título mais curto; Títulos não podem ser maiores que %1 caracteres.",
"too-many-posts": "Você pode postar apenas uma vez a cada %1 segundos - por favor aguarde antes de postar novamente", "too-many-posts": "Você pode postar apenas uma vez a cada %1 segundos - por favor aguarde antes de postar novamente",

@ -15,8 +15,8 @@
"details.latest_posts": "Últimos Posts", "details.latest_posts": "Últimos Posts",
"details.private": "Grupo Privado", "details.private": "Grupo Privado",
"details.public": "Grupo Público.", "details.public": "Grupo Público.",
"details.grant": "Grant/Rescind Ownership", "details.grant": "Conceder/Retomar a Posse",
"details.kick": "Kick", "details.kick": "Chutar",
"details.owner_options": "Administração do Grupo", "details.owner_options": "Administração do Grupo",
"event.updated": "Os detalhes do grupo foram atualizados", "event.updated": "Os detalhes do grupo foram atualizados",
"event.deleted": "O grupo \"%1\" foi deletado" "event.deleted": "O grupo \"%1\" foi deletado"

@ -11,7 +11,7 @@
"user.followers": "Pessoas que Seguem %1", "user.followers": "Pessoas que Seguem %1",
"user.posts": "Posts feitos por %1", "user.posts": "Posts feitos por %1",
"user.topics": "Tópicos criados por %1", "user.topics": "Tópicos criados por %1",
"user.groups": "%1's Groups", "user.groups": "%1's Grupos",
"user.favourites": "Posts Favoritos de %1", "user.favourites": "Posts Favoritos de %1",
"user.settings": "Configurações de Usuário", "user.settings": "Configurações de Usuário",
"maintenance.text": "%1 está atualmente sob manutenção. Por favor retorne em outro momento.", "maintenance.text": "%1 está atualmente sob manutenção. Por favor retorne em outro momento.",

@ -11,6 +11,6 @@
"enter_email_address": "Digite seu Email", "enter_email_address": "Digite seu Email",
"password_reset_sent": "Reconfiguração de Senha Enviada", "password_reset_sent": "Reconfiguração de Senha Enviada",
"invalid_email": "Email Inválido / Email não existe!", "invalid_email": "Email Inválido / Email não existe!",
"password_too_short": "The password entered is too short, please pick a different password.", "password_too_short": "A senha entrada é muito curta, por favor escolha uma senha diferente.",
"passwords_do_not_match": "The two passwords you've entered do not match." "passwords_do_not_match": "As duas senhas que você digitou não combinam."
} }

@ -3,33 +3,33 @@
"no-matches": "Nenhum resultado encontrado", "no-matches": "Nenhum resultado encontrado",
"in": "Em", "in": "Em",
"by": "Por", "by": "Por",
"titles": "Titles", "titles": "Títulos",
"titles-posts": "Titles and Posts", "titles-posts": "Títulos e Posts",
"posted-by": "Postado por", "posted-by": "Postado por",
"in-categories": "In Categories", "in-categories": "Nas Categorias",
"search-child-categories": "Search child categories", "search-child-categories": "Buscar categorias filhas",
"reply-count": "Reply Count", "reply-count": "Contagem de Respostas",
"at-least": "At least", "at-least": "No mínimo",
"at-most": "At most", "at-most": "No máximo",
"post-time": "Post time", "post-time": "Hora da Postagem",
"newer-than": "Newer than", "newer-than": "Mais novo que",
"older-than": "Older than", "older-than": "Mais velho que",
"any-date": "Any date", "any-date": "Qualquer data",
"yesterday": "Yesterday", "yesterday": "Ontem",
"one-week": "One week", "one-week": "Uma semana",
"two-weeks": "Two weeks", "two-weeks": "Duas semanas",
"one-month": "One month", "one-month": "Um mês",
"three-months": "Three months", "three-months": "Três meses",
"six-months": "Six months", "six-months": "Seis meses",
"one-year": "One year", "one-year": "Um ano",
"sort-by": "Sort by", "sort-by": "Ordenar por",
"last-reply-time": "Last reply time", "last-reply-time": "Tempo da última resposta",
"topic-title": "Topic title", "topic-title": "Título do tópico",
"number-of-replies": "Number of replies", "number-of-replies": "Número de respostas",
"number-of-views": "Number of views", "number-of-views": "Número de visualizações",
"topic-start-date": "Topic start date", "topic-start-date": "Data do início do tópico",
"username": "Username", "username": "Nome de usuário",
"category": "Category", "category": "Categoria",
"descending": "In descending order", "descending": "Em ordem descendente",
"ascending": "In ascending order" "ascending": "Em ordem ascendente"
} }

@ -12,6 +12,7 @@
"notify_me": "Seja notificado de novas respostas nesse tópico", "notify_me": "Seja notificado de novas respostas nesse tópico",
"quote": "Citar", "quote": "Citar",
"reply": "Responder", "reply": "Responder",
"guest-login-reply": "Log in to reply",
"edit": "Editar", "edit": "Editar",
"delete": "Deletar", "delete": "Deletar",
"purge": "Expurgar", "purge": "Expurgar",

@ -5,7 +5,7 @@
"search": "Procurar", "search": "Procurar",
"enter_username": "Digite um nome de usuário para procurar", "enter_username": "Digite um nome de usuário para procurar",
"load_more": "Carregar Mais", "load_more": "Carregar Mais",
"users-found-search-took": "%1 user(s) found! Search took %2 seconds.", "users-found-search-took": "%1 usuário(s) encontrado(s)! A busca levou %2 segundos.",
"filter-by": "Filtrar Por", "filter-by": "Filtrar Por",
"online-only": "Apenas Online", "online-only": "Apenas Online",
"picture-only": "Apenas foto" "picture-only": "Apenas foto"

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Subiect Nou", "new_topic_button": "Subiect Nou",
"guest-login-post": "Log in to post",
"no_topics": "<strong>Nu există nici un subiect de discuție în această categorie.</strong><br />De ce nu încerci să postezi tu unul?", "no_topics": "<strong>Nu există nici un subiect de discuție în această categorie.</strong><br />De ce nu încerci să postezi tu unul?",
"browsing": "navighează", "browsing": "navighează",
"no_replies": "Nu a răspuns nimeni", "no_replies": "Nu a răspuns nimeni",

@ -12,6 +12,7 @@
"notify_me": "Notică-mă de noi răspunsuri în acest subiect", "notify_me": "Notică-mă de noi răspunsuri în acest subiect",
"quote": "Citează", "quote": "Citează",
"reply": "Răspunde", "reply": "Răspunde",
"guest-login-reply": "Log in to reply",
"edit": "Editează", "edit": "Editează",
"delete": "Șterge", "delete": "Șterge",
"purge": "Curăță", "purge": "Curăță",

@ -1,5 +1,6 @@
{ {
"new_topic_button": "Создать тему", "new_topic_button": "Создать тему",
"guest-login-post": "Log in to post",
"no_topics": "<strong>В этой категории еще нет тем.</strong><br />Почему бы вам не создать первую?", "no_topics": "<strong>В этой категории еще нет тем.</strong><br />Почему бы вам не создать первую?",
"browsing": "просматривают", "browsing": "просматривают",
"no_replies": "Нет ответов", "no_replies": "Нет ответов",

@ -9,9 +9,9 @@
"reset.text1": "Мы получили запрос на сброс Вашего пароля. Если Вы не подавали запрос, пожалуйста, проигнорируйте это сообщение.", "reset.text1": "Мы получили запрос на сброс Вашего пароля. Если Вы не подавали запрос, пожалуйста, проигнорируйте это сообщение.",
"reset.text2": "Для продолжения процедуры изменения пароля, пожалуйста, перейдите по ссылке:", "reset.text2": "Для продолжения процедуры изменения пароля, пожалуйста, перейдите по ссылке:",
"reset.cta": "Кликните здесь для изменения пароля", "reset.cta": "Кликните здесь для изменения пароля",
"reset.notify.subject": "Password successfully changed", "reset.notify.subject": "Пароль был успешно изменен",
"reset.notify.text1": "We are notifying you that on %1, your password was changed successfully.", "reset.notify.text1": "Мы уведомляем вас о том, что %1 ваш пароль был успешно изменен. ",
"reset.notify.text2": "If you did not authorise this, please notify an administrator immediately.", "reset.notify.text2": "Если вы не совершали этого действия, пожалуйста, незамедлительно свяжитесь с администратором.",
"digest.notifications": "У Вас непрочитанные уведомления от %1:", "digest.notifications": "У Вас непрочитанные уведомления от %1:",
"digest.latest_topics": "Последние темы %1", "digest.latest_topics": "Последние темы %1",
"digest.cta": "Кликните здесь для просмотра %1", "digest.cta": "Кликните здесь для просмотра %1",
@ -20,8 +20,8 @@
"notif.chat.subject": "Новое сообщение от %1", "notif.chat.subject": "Новое сообщение от %1",
"notif.chat.cta": "Нажмите для продолжения диалога", "notif.chat.cta": "Нажмите для продолжения диалога",
"notif.chat.unsub.info": "Вы получили это уведомление в соответствии с настройками подписок.", "notif.chat.unsub.info": "Вы получили это уведомление в соответствии с настройками подписок.",
"notif.post.cta": "Click here to read the full topic", "notif.post.cta": "Кликните для просмотра всей темы.",
"notif.post.unsub.info": "This post notification was sent to you due to your subscription settings.", "notif.post.unsub.info": "Вы получили это уведомление согласно вашим настройкам подписки.",
"test.text1": "Это тестовое сообщение для проверки почтового сервиса NodeBB.", "test.text1": "Это тестовое сообщение для проверки почтового сервиса NodeBB.",
"unsub.cta": "Изменить настройки", "unsub.cta": "Изменить настройки",
"closing": "Спасибо!" "closing": "Спасибо!"

@ -1,17 +1,17 @@
{ {
"invalid-data": "Неверные Данные", "invalid-data": "Неверные данные",
"not-logged-in": "Вы не вошли в свой аккаунт.", "not-logged-in": "Вы не вошли в свой аккаунт.",
"account-locked": "Ваш аккаунт временно заблокирован", "account-locked": "Ваш аккаунт временно заблокирован",
"search-requires-login": "Поиск доступен зарегистрированным пользователям! Пожалуйста, войдите или зарегистрируйтесь!", "search-requires-login": "Поиск доступен зарегистрированным пользователям! Пожалуйста, войдите или зарегистрируйтесь!",
"invalid-cid": "Неверный ID Категории", "invalid-cid": "Неверный ID категории",
"invalid-tid": "Неверный ID Темы", "invalid-tid": "Неверный ID темы",
"invalid-pid": "Неверный ID Поста", "invalid-pid": "Неверный ID поста",
"invalid-uid": "Неверный ID Пользователя", "invalid-uid": "Неверный ID пользователя",
"invalid-username": "Неверное Имя пользователя", "invalid-username": "Неверное имя пользователя",
"invalid-email": "Неверный Email", "invalid-email": "Неверный Email",
"invalid-title": "Неверный заголовок!", "invalid-title": "Неверный заголовок",
"invalid-user-data": "Неверные Пользовательские Данные", "invalid-user-data": "Неверные пользовательские данные",
"invalid-password": "Неверный Пароль", "invalid-password": "Неверный пароль",
"invalid-username-or-password": "Пожалуйста, укажите и имя пользователя и пароль", "invalid-username-or-password": "Пожалуйста, укажите и имя пользователя и пароль",
"invalid-search-term": "Неверный поисковой запрос", "invalid-search-term": "Неверный поисковой запрос",
"invalid-pagination-value": "Неверное значение пагинации", "invalid-pagination-value": "Неверное значение пагинации",
@ -35,7 +35,7 @@
"topic-locked": "Тема закрыта", "topic-locked": "Тема закрыта",
"still-uploading": "Пожалуйста, подождите завершения загрузки.", "still-uploading": "Пожалуйста, подождите завершения загрузки.",
"content-too-short": "Пост должен содержать минимум %1 симв.", "content-too-short": "Пост должен содержать минимум %1 симв.",
"content-too-long": "Please enter a shorter post. Posts can't be longer than %1 characters.", "content-too-long": "Размер поста не должен превышать %1 символов. Пожалуйста, сделайте его короче.",
"title-too-short": "Заголовок должен содержать минимум %1 симв.", "title-too-short": "Заголовок должен содержать минимум %1 симв.",
"title-too-long": "Заголовок не может быть длиннее %1 символов.", "title-too-long": "Заголовок не может быть длиннее %1 символов.",
"too-many-posts": "Вы можете делать пост один раз в %1 сек.", "too-many-posts": "Вы можете делать пост один раз в %1 сек.",
@ -45,7 +45,7 @@
"already-favourited": "Вы уже добавили этот пост в избранное", "already-favourited": "Вы уже добавили этот пост в избранное",
"already-unfavourited": "Вы уже удалили этот пост из избранного", "already-unfavourited": "Вы уже удалили этот пост из избранного",
"cant-ban-other-admins": "Вы не можете забанить других администраторов!", "cant-ban-other-admins": "Вы не можете забанить других администраторов!",
"invalid-image-type": "Invalid image type. Allowed types are: %1", "invalid-image-type": "Неверный формат изображения. Поддерживаемые форматы: %1",
"invalid-image-extension": "Недопустимое расширение файла", "invalid-image-extension": "Недопустимое расширение файла",
"group-name-too-short": "Название группы слишком короткое", "group-name-too-short": "Название группы слишком короткое",
"group-already-exists": "Группа уже существует", "group-already-exists": "Группа уже существует",
@ -70,5 +70,5 @@
"not-enough-reputation-to-flag": "У Вас недостаточно репутации, чтобы пометить этот пост.", "not-enough-reputation-to-flag": "У Вас недостаточно репутации, чтобы пометить этот пост.",
"reload-failed": "NodeBB обнаружил проблему при перезагрузке: \"%1\". NodeBB продолжит работать с существующими ресурсами клиента, но Вы должны отменить то, что сделали перед перезагрузкой.", "reload-failed": "NodeBB обнаружил проблему при перезагрузке: \"%1\". NodeBB продолжит работать с существующими ресурсами клиента, но Вы должны отменить то, что сделали перед перезагрузкой.",
"registration-error": "Ошибка при регистрации", "registration-error": "Ошибка при регистрации",
"parse-error": "Something went wrong while parsing server response" "parse-error": "Похоже, что-то пошло не так в процессе обработки ответа сервера."
} }

@ -3,10 +3,10 @@
"search": "Поиск", "search": "Поиск",
"buttons.close": "Закрыть", "buttons.close": "Закрыть",
"403.title": "Доступ запрещен", "403.title": "Доступ запрещен",
"403.message": "You seem to have stumbled upon a page that you do not have access to.", "403.message": "Вы пытаетесь перейти на страницу, к которой у вас нет прав доступа.",
"403.login": "Возможно Вам следует <a href='%1/login'>войти под своим аккаунтом</a>?", "403.login": "Возможно Вам следует <a href='%1/login'>войти под своим аккаунтом</a>?",
"404.title": "Страница не найдена", "404.title": "Страница не найдена",
"404.message": "You seem to have stumbled upon a page that does not exist. Return to the <a href='%1/'>home page</a>.", "404.message": "Вы пытаетесь перейти на страницу, которой не существует. Вам стоит вернутся на <a href='%1/'>главную страницу</a>.",
"500.title": "Внутренняя ошибка.", "500.title": "Внутренняя ошибка.",
"500.message": "Упс! Похоже, что-то пошло не так!", "500.message": "Упс! Похоже, что-то пошло не так!",
"register": "Зарегистрироваться", "register": "Зарегистрироваться",
@ -75,7 +75,7 @@
"updated.title": "Форум обновлен", "updated.title": "Форум обновлен",
"updated.message": "Форум был обновлен до последней версии. Нажмите здесь, чтобы обновить страницу.", "updated.message": "Форум был обновлен до последней версии. Нажмите здесь, чтобы обновить страницу.",
"privacy": "Безопасность", "privacy": "Безопасность",
"follow": "Follow", "follow": "Подписаться",
"unfollow": "Unfollow", "unfollow": "Отписаться",
"delete_all": "Удалить все" "delete_all": "Удалить все"
} }

@ -1,11 +1,11 @@
{ {
"groups": "Группы", "groups": "Группы",
"view_group": "Просмотр группы", "view_group": "Просмотр группы",
"owner": "Владелец группы", "owner": "Администратор группы",
"new_group": "Создать группу", "new_group": "Создать группу",
"no_groups_found": "There are no groups to see", "no_groups_found": "Нет групп для отображения",
"cover-instructions": "Перетяните сюда изображение, переместите на нужную позицию и нажмите <strong>Сохранить</strong>", "cover-instructions": "Перетяните сюда изображение, переместите на нужную позицию и нажмите <strong>Сохранить</strong>",
"cover-change": "Change", "cover-change": "Изменить",
"cover-save": "Сохранить", "cover-save": "Сохранить",
"cover-saving": "Сохраняем", "cover-saving": "Сохраняем",
"details.title": "Информация о группе", "details.title": "Информация о группе",
@ -15,8 +15,8 @@
"details.latest_posts": "Последние записи", "details.latest_posts": "Последние записи",
"details.private": "Приватная группа", "details.private": "Приватная группа",
"details.public": "Открытая группа", "details.public": "Открытая группа",
"details.grant": "Grant/Rescind Ownership", "details.grant": "Выдать/забрать администратора",
"details.kick": "Kick", "details.kick": "Исключить",
"details.owner_options": "Настройки группы", "details.owner_options": "Настройки группы",
"event.updated": "Настройки группы обновлены", "event.updated": "Настройки группы обновлены",
"event.deleted": "Группа \"%1\" удалена" "event.deleted": "Группа \"%1\" удалена"

@ -19,7 +19,7 @@
"user_posted_topic": "<strong>%1</strong> открыл новую тему: <strong>%2</strong>", "user_posted_topic": "<strong>%1</strong> открыл новую тему: <strong>%2</strong>",
"user_mentioned_you_in": "<strong>%1</strong> упомянул Вас в <strong>%2</strong>", "user_mentioned_you_in": "<strong>%1</strong> упомянул Вас в <strong>%2</strong>",
"user_started_following_you": "<strong>%1</strong> подписался на Вас.", "user_started_following_you": "<strong>%1</strong> подписался на Вас.",
"email-confirmed": "Email Подтвержден", "email-confirmed": "Email подтвержден",
"email-confirmed-message": "Спасибо за подтверждение Вашего Email-адреса. Ваш аккаунт активирован.", "email-confirmed-message": "Спасибо за подтверждение Вашего Email-адреса. Ваш аккаунт активирован.",
"email-confirm-error": "Произошла ошибка...", "email-confirm-error": "Произошла ошибка...",
"email-confirm-error-message": "Ошибка проверки Email-адреса. Возможно, код неверен, либо у него истек срок действия.", "email-confirm-error-message": "Ошибка проверки Email-адреса. Возможно, код неверен, либо у него истек срок действия.",

@ -11,7 +11,7 @@
"user.followers": "Читают %1", "user.followers": "Читают %1",
"user.posts": "Пост написан %1", "user.posts": "Пост написан %1",
"user.topics": "Темы созданы %1", "user.topics": "Темы созданы %1",
"user.groups": "%1's Groups", "user.groups": "Группы %1",
"user.favourites": "Избранные сообщения %1", "user.favourites": "Избранные сообщения %1",
"user.settings": "Настройки", "user.settings": "Настройки",
"maintenance.text": "%1 в настоящее время на обслуживании. Пожалуйста, возвращайтесь позже.", "maintenance.text": "%1 в настоящее время на обслуживании. Пожалуйста, возвращайтесь позже.",

@ -3,16 +3,16 @@
"help.email": "По умолчанию, ваш email будет скрыт.", "help.email": "По умолчанию, ваш email будет скрыт.",
"help.username_restrictions": "Уникальное Имя между %1 и %2 символов. Другие пользователи смогут упоминать вас по @<span id='yourUsername'>Имени</span>.", "help.username_restrictions": "Уникальное Имя между %1 и %2 символов. Другие пользователи смогут упоминать вас по @<span id='yourUsername'>Имени</span>.",
"help.minimum_password_length": "Длина вашего пароля должна быть минимум %1 символов.", "help.minimum_password_length": "Длина вашего пароля должна быть минимум %1 символов.",
"email_address": "Email Адрес", "email_address": "Email адрес",
"email_address_placeholder": "Введите Email адрес", "email_address_placeholder": "Введите Email адрес",
"username": "Имя пользователя", "username": "Имя пользователя",
"username_placeholder": "Введите Имя пользователя", "username_placeholder": "Введите имя пользователя",
"password": "Пароль", "password": "Пароль",
"password_placeholder": "Введите Пароль", "password_placeholder": "Введите пароль",
"confirm_password": "Подтвердите Пароль", "confirm_password": "Подтвердите пароль",
"confirm_password_placeholder": "Подтвердите Пароль", "confirm_password_placeholder": "Подтвердите пароль",
"register_now_button": "Зарегистрироваться", "register_now_button": "Зарегистрироваться",
"alternative_registration": "Альтернативная Регистрация", "alternative_registration": "Альтернативная регистрация",
"terms_of_use": "Условия использования", "terms_of_use": "Условия использования",
"agree_to_terms_of_use": "Я согласен с условиями" "agree_to_terms_of_use": "Я согласен с условиями"
} }

@ -1,16 +1,16 @@
{ {
"reset_password": "Восстановить Пароль", "reset_password": "Восстановить пароль",
"update_password": "Изменить Пароль", "update_password": "Изменить пароль",
"password_changed.title": "Пароль Изменен", "password_changed.title": "Пароль изменен",
"password_changed.message": "<p>Пароль успешно восстановлен, пожалуйста <a href=\"/login\\\">войдите еще раз</a>.", "password_changed.message": "<p>Пароль успешно восстановлен, пожалуйста <a href=\"/login\\\">войдите еще раз</a>.",
"wrong_reset_code.title": "Неверный код восстановления", "wrong_reset_code.title": "Неверный код восстановления",
"wrong_reset_code.message": "Неправильный код восстановления пароля. Попробуйте еще раз, или <a href=\"/reset\">запросите новый код восстановления</a>.", "wrong_reset_code.message": "Неправильный код восстановления пароля. Попробуйте еще раз, или <a href=\"/reset\">запросите новый код восстановления</a>.",
"new_password": "Новый Пароль", "new_password": "Новый пароль",
"repeat_password": "Подтвердите Пароль", "repeat_password": "Подтвердите пароль",
"enter_email": "Пожалуйста введите ваш <strong>email адрес</strong> и мы отправим Вам письмо с инструкцией восстановления пароля.", "enter_email": "Пожалуйста введите ваш <strong>email адрес</strong> и мы отправим Вам письмо с инструкцией восстановления пароля.",
"enter_email_address": "Введите Email адрес", "enter_email_address": "Введите Email адрес",
"password_reset_sent": "Пароль Отправлен", "password_reset_sent": "Пароль отправлен",
"invalid_email": "Неверный Email / Email не существует!", "invalid_email": "Неверный Email / Email не существует!",
"password_too_short": "The password entered is too short, please pick a different password.", "password_too_short": "Введенный пароль слишком короткий, пожалуйста, введите более длинный пароль.",
"passwords_do_not_match": "The two passwords you've entered do not match." "passwords_do_not_match": "Введенные пароли не совпадают."
} }

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

Loading…
Cancel
Save