mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-06-26 06:51:41 +02:00
Merge commit 'ebbfe3cc1f21a60633f0b7c4d70124032a23519c' into weekly
This commit is contained in:
3
.github/ISSUE_TEMPLATE.md
vendored
3
.github/ISSUE_TEMPLATE.md
vendored
@@ -1,6 +1,7 @@
|
||||
Please include the following information when submitting a bug report/issue:
|
||||
|
||||
* NodeBB version and git hash (to find your git hash, execute `git rev-parse HEAD` from the main NodeBB directory)
|
||||
* Database (mongo or redis) and it's version.
|
||||
* Exact steps to cause this issue
|
||||
1. First I did this...
|
||||
2. Then, I clicked on this item...
|
||||
@@ -9,4 +10,4 @@ Please include the following information when submitting a bug report/issue:
|
||||
* What happened instead
|
||||
* e.g. Instead, I got *zyx* and NodeBB set fire to my house
|
||||
|
||||
Thank you!
|
||||
Thank you!
|
||||
|
||||
@@ -30,8 +30,10 @@ Additional functionality is enabled through the use of third-party plugins.
|
||||
[](http://i.imgur.com/LmHtPho.png)
|
||||
[](http://i.imgur.com/paiJPJk.jpg)
|
||||
|
||||
[](http://i.imgur.com/8OLssij.png)
|
||||
[](http://i.imgur.com/JKOc0LZ.png)
|
||||
[](http://i.imgur.com/HwNEXGu.png)
|
||||
[](http://i.imgur.com/II1byYs.png)
|
||||
|
||||
|
||||
|
||||
## How can I follow along/contribute?
|
||||
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
"use strict";
|
||||
|
||||
var winston = require('winston'),
|
||||
express = require('express'),
|
||||
bodyParser = require('body-parser'),
|
||||
fs = require('fs'),
|
||||
path = require('path'),
|
||||
less = require('less'),
|
||||
async = require('async'),
|
||||
uglify = require('uglify-js'),
|
||||
nconf = require('nconf'),
|
||||
app = express(),
|
||||
server;
|
||||
var winston = require('winston');
|
||||
var express = require('express');
|
||||
var bodyParser = require('body-parser');
|
||||
var fs = require('fs');
|
||||
var path = require('path');
|
||||
var less = require('less');
|
||||
var async = require('async');
|
||||
var uglify = require('uglify-js');
|
||||
var nconf = require('nconf');
|
||||
var app = express();
|
||||
var server;
|
||||
|
||||
winston.add(winston.transports.File, {
|
||||
filename: 'logs/webinstall.log',
|
||||
@@ -22,13 +22,13 @@ winston.add(winston.transports.File, {
|
||||
level: 'verbose'
|
||||
});
|
||||
|
||||
var web = {},
|
||||
scripts = [
|
||||
'public/vendor/xregexp/xregexp.js',
|
||||
'public/vendor/xregexp/unicode/unicode-base.js',
|
||||
'public/src/utils.js',
|
||||
'public/src/installer/install.js'
|
||||
];
|
||||
var web = {};
|
||||
var scripts = [
|
||||
'public/vendor/xregexp/xregexp.js',
|
||||
'public/vendor/xregexp/unicode/unicode-base.js',
|
||||
'public/src/utils.js',
|
||||
'public/src/installer/install.js'
|
||||
];
|
||||
|
||||
web.install = function(port) {
|
||||
port = port || 4567;
|
||||
@@ -62,22 +62,23 @@ function setupRoutes() {
|
||||
}
|
||||
|
||||
function welcome(req, res) {
|
||||
var dbs = ['redis', 'mongo'],
|
||||
databases = [];
|
||||
|
||||
dbs.forEach(function(el) {
|
||||
databases.push({
|
||||
var dbs = ['redis', 'mongo'];
|
||||
var databases = dbs.map(function(el) {
|
||||
return {
|
||||
name: el,
|
||||
questions: require('../src/database/' + el).questions
|
||||
});
|
||||
};
|
||||
});
|
||||
|
||||
var defaults = require('./data/defaults');
|
||||
|
||||
res.render('install/index', {
|
||||
databases: databases,
|
||||
skipDatabaseSetup: !!nconf.get('database'),
|
||||
error: res.locals.error ? true : false,
|
||||
success: res.locals.success ? true : false,
|
||||
values: req.body
|
||||
values: req.body,
|
||||
minimumPasswordLength: defaults.minimumPasswordLength
|
||||
});
|
||||
}
|
||||
|
||||
@@ -104,7 +105,6 @@ function install(req, res) {
|
||||
}
|
||||
|
||||
function launch(req, res) {
|
||||
var pidFilePath = __dirname + '../pidfile';
|
||||
res.json({});
|
||||
server.close();
|
||||
|
||||
@@ -146,10 +146,10 @@ function compileJS(callback) {
|
||||
return callback(false);
|
||||
}
|
||||
|
||||
var scriptPath = path.join(__dirname, '..'),
|
||||
result = uglify.minify(scripts.map(function(script) {
|
||||
return path.join(scriptPath, script);
|
||||
}));
|
||||
var scriptPath = path.join(__dirname, '..');
|
||||
var result = uglify.minify(scripts.map(function(script) {
|
||||
return path.join(scriptPath, script);
|
||||
}));
|
||||
|
||||
|
||||
fs.writeFile(path.join(__dirname, '../public/nodebb.min.js'), result.code, callback);
|
||||
|
||||
16
package.json
16
package.json
@@ -2,7 +2,7 @@
|
||||
"name": "nodebb",
|
||||
"license": "GPL-3.0",
|
||||
"description": "NodeBB Forum",
|
||||
"version": "1.1.1-auto.3",
|
||||
"version": "1.1.2",
|
||||
"homepage": "http://www.nodebb.org",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -25,7 +25,7 @@
|
||||
"connect-flash": "^0.1.1",
|
||||
"connect-mongo": "~1.1.0",
|
||||
"connect-multiparty": "^2.0.0",
|
||||
"connect-redis": "~3.0.2",
|
||||
"connect-redis": "~3.1.0",
|
||||
"cookie-parser": "^1.3.3",
|
||||
"cron": "^1.0.5",
|
||||
"csurf": "^1.6.1",
|
||||
@@ -47,17 +47,17 @@
|
||||
"morgan": "^1.3.2",
|
||||
"mousetrap": "^1.5.3",
|
||||
"nconf": "~0.8.2",
|
||||
"nodebb-plugin-composer-default": "4.1.5",
|
||||
"nodebb-plugin-composer-default": "4.1.8",
|
||||
"nodebb-plugin-dbsearch": "1.0.2",
|
||||
"nodebb-plugin-emoji-extended": "1.1.1",
|
||||
"nodebb-plugin-emoji-one": "1.1.5",
|
||||
"nodebb-plugin-markdown": "6.0.2",
|
||||
"nodebb-plugin-mentions": "1.1.3",
|
||||
"nodebb-plugin-soundpack-default": "0.1.6",
|
||||
"nodebb-plugin-spam-be-gone": "0.4.9",
|
||||
"nodebb-plugin-spam-be-gone": "0.4.10",
|
||||
"nodebb-rewards-essentials": "0.0.9",
|
||||
"nodebb-theme-lavender": "3.0.13",
|
||||
"nodebb-theme-persona": "4.1.19",
|
||||
"nodebb-theme-persona": "4.1.20",
|
||||
"nodebb-theme-vanilla": "5.1.9",
|
||||
"nodebb-widget-essentials": "2.0.10",
|
||||
"nodemailer": "2.0.0",
|
||||
@@ -67,7 +67,7 @@
|
||||
"passport-local": "1.0.0",
|
||||
"postcss": "^5.0.13",
|
||||
"prompt": "^1.0.0",
|
||||
"redis": "~2.4.2",
|
||||
"redis": "~2.6.2",
|
||||
"request": "^2.44.0",
|
||||
"rimraf": "~2.5.0",
|
||||
"rss": "^1.0.0",
|
||||
@@ -80,7 +80,7 @@
|
||||
"socketio-wildcard": "~0.3.0",
|
||||
"string": "^3.0.0",
|
||||
"templates.js": "0.3.4",
|
||||
"toobusy-js": "^0.4.2",
|
||||
"toobusy-js": "^0.5.1",
|
||||
"uglify-js": "^2.6.0",
|
||||
"underscore": "^1.8.3",
|
||||
"underscore.deep": "^0.5.1",
|
||||
@@ -117,4 +117,4 @@
|
||||
"url": "https://github.com/barisusakli"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "البريد الالكتروني مأخوذ",
|
||||
"email-not-confirmed": "عنوان بريدك الإلكتروني غير مفعل بعد. انقر هنا لتفعيله من فضلك.",
|
||||
"email-not-confirmed-chat": "لا يمكنك الدردشة حتى تقوم بتأكيد بريدك الإلكتروني، الرجاء إضغط هنا لتأكيد بريدك اﻹلكتروني.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "هذا المنتدى يستلزم تفعيل بريدك الإلكتروني، انقر هنا من فضلك لإدخاله.",
|
||||
"email-confirm-failed": "لم نستطع تفعيل بريدك الإلكتروني، المرجو المحاولة لاحقًا.",
|
||||
"confirm-email-already-sent": "لقد تم ارسال بريد التأكيد، الرجاء اﻹنتظار 1% دقائق لإعادة اﻹرسال",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "إلغاء",
|
||||
"bootbox.confirm": "تأكيد",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"register": "تسجيل",
|
||||
"cancel_registration": "Cancel Registration",
|
||||
"cancel_registration": "إلغاء التسجيل",
|
||||
"help.email": "افتراضيا، سيتم إخفاء بريدك الإلكتروني من العامة.",
|
||||
"help.username_restrictions": "اسم مستخدم فريدة من نوعها بين1% و2% حرفا. يمكن للآخرين ذكرك @ <'span id='your-username> اسم المستخدم </span>.",
|
||||
"help.minimum_password_length": "كلمة المرور يجب أن تكون على الأقل بها 1% أحرف",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "هذا الموضوع سوف ينقل إلى فئة",
|
||||
"fork_topic_instruction": "إضغط على المشاركات التي تريد تفريعها",
|
||||
"fork_no_pids": "لم تختر أي مشاركة",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "تم إنشاء فرع للموضوع بنجاح! إضغط هنا لمعاينة الفرع.",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"composer.title_placeholder": "أدخل عنوان موضوعك هنا...",
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"postcount": "عدد المشاركات",
|
||||
"email": "البريد الإلكتروني",
|
||||
"confirm_email": "تأكيد عنوان البريد الإلكتروني",
|
||||
"account_info": "Account Info",
|
||||
"account_info": "معلومات الحساب",
|
||||
"ban_account": "Ban Account",
|
||||
"ban_account_confirm": "هل تريد حقاً حظر هاذا العضو؟",
|
||||
"unban_account": "Unban Account",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Е-пощата е заета",
|
||||
"email-not-confirmed": "Вашата е-поща все още не е потвърдена. Моля, натиснете тук, за да потвърдите е-пощата си.",
|
||||
"email-not-confirmed-chat": "Няма да можете да пишете в разговори, докато е-пощата Ви не бъде потвърдена. Моля, натиснете тук, за да потвърдите е-пощата си.",
|
||||
"email-not-confirmed-email-sent": "Вашата е-поща все още не е потвърдена. Моля, проверете входящата си кутия за писмото за потвърждение.",
|
||||
"no-email-to-confirm": "Този форум изисква потвърдена е-поща. Моля, натиснете тук, за да въведете е-поща",
|
||||
"email-confirm-failed": "Не успяхме да потвърдим е-пощата Ви. Моля, опитайте отново по-късно.",
|
||||
"confirm-email-already-sent": "Е-писмото за потвърждение вече е изпратено. Моля, почакайте още %1 минута/и, преди да изпратите ново.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Снимка",
|
||||
"composer.upload-picture": "Качване на изображение",
|
||||
"composer.upload-file": "Качване на файл",
|
||||
"composer.zen_mode": "Режим Дзен",
|
||||
"bootbox.ok": "Добре",
|
||||
"bootbox.cancel": "Отказ",
|
||||
"bootbox.confirm": "Потвърждаване",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Тази тема ще бъде преместена в категорията",
|
||||
"fork_topic_instruction": "Натиснете публикациите, които искате да отделите",
|
||||
"fork_no_pids": "Няма избрани публикации!",
|
||||
"fork_pid_count": "Избрани публикации: %1",
|
||||
"fork_success": "Темата е разделена успешно! Натиснете тук, за да преминете към отделената тема.",
|
||||
"delete_posts_instruction": "Натиснете публикациите, които искате да изтриете/изчистите",
|
||||
"composer.title_placeholder": "Въведете заглавието на темата си тук...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "ইমেইল আগেই ব্যবহৃত",
|
||||
"email-not-confirmed": "আপনার ইমেইল এড্রেস নিশ্চিত করা হয় নি, নিশ্চিত করতে এখানে ক্লিক করুন।",
|
||||
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Cancel",
|
||||
"bootbox.confirm": "Confirm",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "এই টপিকটি ক্যাটাগরীতে সরানো হবে",
|
||||
"fork_topic_instruction": "যে পোষ্টটি ফর্ক করতে চান সেটি ক্লিক করুন",
|
||||
"fork_no_pids": "কোন পোষ্ট সিলেক্ট করা হয় নি",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "টপিক ফর্ক করা হয়েছে। ফর্ক করা টপিকে যেতে এখানে ক্লিক করুন",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"composer.title_placeholder": "আপনার টপিকের শিরোনাম দিন",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Email je již použit",
|
||||
"email-not-confirmed": "Vaše emailová adresa zatím nebyla potvrzena. Kliknutím zde svůj email potvrdíte.",
|
||||
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Potvrzovací email již byl odeslán. Vyčkejte %1 minut pokud chcete odeslat další.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Obrázek",
|
||||
"composer.upload-picture": "Nahrát obrázek",
|
||||
"composer.upload-file": "Nahrát soubor",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Zrušit",
|
||||
"bootbox.confirm": "Potvrdit",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Toto téma bude přesunuto do kategorie",
|
||||
"fork_topic_instruction": "Vyber příspěvky, které chceš oddělit",
|
||||
"fork_no_pids": "Žádné příspěvky nebyly vybrány!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Successfully forked topic! Click here to go to the forked topic.",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"composer.title_placeholder": "Zadejte název tématu...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Emailadresse allerede i brug",
|
||||
"email-not-confirmed": "Din email adresse er ikke blevet bekræftet endnu, venligst klik her for at bekrætige den.",
|
||||
"email-not-confirmed-chat": "Du kan ikke chatte før din email er bekræftet, klik her for at bekræfte din email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "Dette forum kræver bekræftelse af din email, klik her for at indtaste en email",
|
||||
"email-confirm-failed": "Vi kunne ikke bekræfte din email, prøv igen senere.",
|
||||
"confirm-email-already-sent": "Bekræftelses email er allerede afsendt, vent venligt %1 minut(ter) for at sende endnu en.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Annuller",
|
||||
"bootbox.confirm": "Bekræft",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Denne tråd vil blive flyttet til katagorien",
|
||||
"fork_topic_instruction": "Klik på indlæg du ønsker at fraskille",
|
||||
"fork_no_pids": "Ingen indlæg valgt",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Tråden blev fraskilt! Klik her for at gå til den fraskilte tråd.",
|
||||
"delete_posts_instruction": "Klik på de indlæg du vil slette/rense",
|
||||
"composer.title_placeholder": "Angiv din trådtittel her ...",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"category": "Kategorie",
|
||||
"subcategories": "Unterkategorien",
|
||||
"new_topic_button": "Neues Thema",
|
||||
"guest-login-post": "Anmelden, um einen Beitrag zu erstellen",
|
||||
"guest-login-post": "Melde dich an, um einen Beitrag zu erstellen",
|
||||
"no_topics": "<strong>Es gibt noch keine Themen in dieser Kategorie.</strong><br />Warum beginnst du nicht eins?",
|
||||
"browsing": "Aktiv",
|
||||
"no_replies": "Niemand hat geantwortet",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Die E-Mail-Adresse ist bereits vergeben",
|
||||
"email-not-confirmed": "Deine E-Mail wurde noch nicht bestätigt, bitte klicke hier, um deine E-Mail zu bestätigen.",
|
||||
"email-not-confirmed-chat": "Du kannst denn Chat erst nutzen wenn deine E-Mail bestätigt wurde, bitte klicke hier, um deine E-Mail zu bestätigen.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "Dieses Forum setzt eine E-Mail-Bestätigung voraus, bitte klicke hier um eine E-Mail-Adresse einzugeben.",
|
||||
"email-confirm-failed": "Wir konnten deine E-Mail-Adresse nicht bestätigen, bitte versuch es später noch einmal",
|
||||
"confirm-email-already-sent": "Die Bestätigungsmail wurde verschickt, bitte warte %1 Minute(n) um eine Weitere zu verschicken.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Bild",
|
||||
"composer.upload-picture": "Bild hochladen",
|
||||
"composer.upload-file": "Datei hochladen",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Abbrechen",
|
||||
"bootbox.confirm": "Bestätigen",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"register": "Registrieren",
|
||||
"cancel_registration": "Cancel Registration",
|
||||
"cancel_registration": "Registrierungsvorgang abbrechen",
|
||||
"help.email": "Deine E-Mail Adresse ist standardmäßig nicht öffentlich sichtbar.",
|
||||
"help.username_restrictions": "Einen einmaligen Benutzernamen. %1-%2 Zeichen. Andere Benutzer können dich mit @<span id='yourUsername'>Benutzername</span> anschreiben.",
|
||||
"help.minimum_password_length": "Dein Passwort muss mindestens %1 Zeichen lang sein.",
|
||||
@@ -16,8 +16,8 @@
|
||||
"alternative_registration": "Alternative Registrierung",
|
||||
"terms_of_use": "Nutzungsbedingungen",
|
||||
"agree_to_terms_of_use": "Ich stimme den Nutzungsbedingungen zu",
|
||||
"terms_of_use_error": "You must agree to the Terms of Use",
|
||||
"terms_of_use_error": "Du musst den Nutzungsbedingungen zustimmen",
|
||||
"registration-added-to-queue": "Deine Registration wurde abgeschickt. Du wirst eine E-Mail erhalten, sobald sie von einem Administrator akzeptiert wird.",
|
||||
"interstitial.intro": "We require some additional information before we can create your account.",
|
||||
"interstitial.errors-found": "We could not complete your registration:"
|
||||
"interstitial.intro": "Wir benötigen ein wenig mehr Informationen bevor wir deinen Account erstellen können.",
|
||||
"interstitial.errors-found": "Wir konnten deinen Registrierungsvorgang nicht abschließen:"
|
||||
}
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Dieses Thema wird verschoben nach",
|
||||
"fork_topic_instruction": "Klicke auf die Beiträge, die aufgespaltet werden sollen",
|
||||
"fork_no_pids": "Keine Beiträge ausgewählt!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Thema erfolgreich aufgespalten! Klicke hier, um zum aufgespalteten Thema zu gelangen.",
|
||||
"delete_posts_instruction": "Wähle die zu löschenden Beiträge aus",
|
||||
"composer.title_placeholder": "Hier den Titel des Themas eingeben...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Το 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, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Cancel",
|
||||
"bootbox.confirm": "Confirm",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Το θέμα θα μετακινηθεί στην κατηγορία",
|
||||
"fork_topic_instruction": "Κάνε κλικ στις δημοσιεύσεις που θέλεις να διαχωρίσεις",
|
||||
"fork_no_pids": "Δεν έχουν επιλεχθεί δημοσιεύσεις!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Successfully forked topic! Click here to go to the forked topic.",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"composer.title_placeholder": "Εισαγωγή του τίτλου του θέματος εδώ...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Email taken",
|
||||
"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, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Cancel",
|
||||
"bootbox.confirm": "Confirm",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "This topic will be moved to the category",
|
||||
"fork_topic_instruction": "Click the posts you want to fork",
|
||||
"fork_no_pids": "No posts selected!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Successfully forked topic! Click here to go to the forked topic.",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"composer.title_placeholder": "Enter your topic title here...",
|
||||
|
||||
@@ -67,6 +67,9 @@
|
||||
"post-delete-duration-expired-days": "You are only allowed to delete posts for %1 day(s) after posting",
|
||||
"post-delete-duration-expired-days-hours": "You are only allowed to delete posts for %1 day(s) %2 hour(s) after posting",
|
||||
|
||||
"cant-delete-topic-has-reply": "You can't delete your topic after it has a reply",
|
||||
"cant-delete-topic-has-replies": "You can't delete your topic after it has %1 replies",
|
||||
|
||||
"content-too-short": "Please enter a longer post. Posts should contain at least %1 character(s).",
|
||||
"content-too-long": "Please enter a shorter post. Posts can't be longer than %1 character(s).",
|
||||
"title-too-short": "Please enter a longer title. Titles should contain at least %1 character(s).",
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
"ignoring.description": "Do not notify me of new replies.<br/>Do not show topic in unread.",
|
||||
|
||||
"thread_tools.title": "Topic Tools",
|
||||
"thread_tools.markAsUnreadForAll": "Mark Unread",
|
||||
"thread_tools.markAsUnreadForAll": "Mark unread for all",
|
||||
"thread_tools.pin": "Pin Topic",
|
||||
"thread_tools.unpin": "Unpin Topic",
|
||||
"thread_tools.lock": "Lock Topic",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Email taken",
|
||||
"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, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Cancel",
|
||||
"bootbox.confirm": "Confirm",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "This topic will be moved to the category",
|
||||
"fork_topic_instruction": "Click the posts you want to fork",
|
||||
"fork_no_pids": "No posts selected!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Successfully forked topic! Click here to go to the forked topic.",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"composer.title_placeholder": "Enter your topic title here...",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"category": "Categoría",
|
||||
"subcategories": "Subcategorías",
|
||||
"new_topic_button": "Nuevo tema",
|
||||
"guest-login-post": "Accede para poder escribir un mensaje",
|
||||
"guest-login-post": "Accede para escribir un mensaje",
|
||||
"no_topics": "<strong>No hay temas en esta categoría.</strong><br />¿Por qué no te animas y publicas uno?",
|
||||
"browsing": "viendo ahora",
|
||||
"no_replies": "Nadie ha respondido aún",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Correo electrónico ocupado",
|
||||
"email-not-confirmed": "Su cuenta de correo electrónico no ha sido confirmada aún, por favor haga click aquí para confirmarla.",
|
||||
"email-not-confirmed-chat": "No puedes usar el chat hasta que confirmes tu dirección de correo electrónico, por favor haz click aquí para confirmar tu correo.",
|
||||
"email-not-confirmed-email-sent": "Tu correo electrónico está sin confirmar, por favor busca el correo de confirmación en tu bandeja de entrada.",
|
||||
"no-email-to-confirm": "Este foro requiere confirmación de su email, por favor pulse aquí para introducir un email",
|
||||
"email-confirm-failed": "No se ha podido confirmar su email, por favor inténtelo de nuevo más tarde.",
|
||||
"confirm-email-already-sent": "El email de confirmación ya ha sido enviado, por favor espera %1 minuto(s) para enviar otro.",
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
"online": "Conectado",
|
||||
"users": "Usuarios",
|
||||
"topics": "Temas",
|
||||
"posts": "Posts",
|
||||
"posts": "Mensajes",
|
||||
"best": "Mejor valorados",
|
||||
"upvoters": "Positivos",
|
||||
"upvoted": "Votado positivamente",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Foto",
|
||||
"composer.upload-picture": "Subir foto",
|
||||
"composer.upload-file": "Subir archivo",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Cancelar",
|
||||
"bootbox.confirm": "Confirmar",
|
||||
|
||||
@@ -80,12 +80,13 @@
|
||||
"loading_more_posts": "Cargando más publicaciones",
|
||||
"move_topic": "Mover tema",
|
||||
"move_topics": "Mover temas",
|
||||
"move_post": "Mover publicación",
|
||||
"move_post": "Mover mensaje",
|
||||
"post_moved": "¡Publicación movida correctamente!",
|
||||
"fork_topic": "Dividir tema",
|
||||
"topic_will_be_moved_to": "Este tema será movido a la categoría",
|
||||
"fork_topic_instruction": "Pulsa en los mensajes que quieres dividir",
|
||||
"fork_no_pids": "¡No has seleccionado ningún mensaje!",
|
||||
"fork_pid_count": "%1 mensaje(s) seleccionados",
|
||||
"fork_success": "¡Se ha creado un nuevo tema a partir del original! Haz click aquí para ir al nuevo tema.",
|
||||
"delete_posts_instruction": "Haz click en los mensajes que quieres eliminar/limpiar",
|
||||
"composer.title_placeholder": "Ingresa el título de tu tema...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Email on võetud",
|
||||
"email-not-confirmed": "Su emaili aadress ei ole kinnitatud, vajuta siia et kinnitada.",
|
||||
"email-not-confirmed-chat": "Sõnumeid ei ole võimalik enne saata kui sinu email on kinnitatud. Kinnitamiseks vajuta siia.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "See foorum nõuab emaili kinnitust, palun vajuta siia, et sisestada email",
|
||||
"email-confirm-failed": "Meil ei õnnestunud sinu emaili kinnitada, proovi hiljem uuesti.",
|
||||
"confirm-email-already-sent": "Kinnituskiri on juba saadetud, palun oota %1 minut(it) uue kirja saatmiseks.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Pilt",
|
||||
"composer.upload-picture": "Lae pilt üles",
|
||||
"composer.upload-file": "Lae fail üles",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "Olgu",
|
||||
"bootbox.cancel": "Katkesta",
|
||||
"bootbox.confirm": "Kinnita",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "See teema liigutatakse antud kategooriasse",
|
||||
"fork_topic_instruction": "Vajuta postitustele, mida soovid forkida",
|
||||
"fork_no_pids": "Sa ei ole postitusi valinud!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Edukalt ''forkisid'' teema! Vajuta siia, et vaadata loodud teemat.",
|
||||
"delete_posts_instruction": "Klikka postitustel, mida tahad kustutada/puhastada",
|
||||
"composer.title_placeholder": "Sisesta teema pealkiri siia...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "این ایمیل گرفته شده است.",
|
||||
"email-not-confirmed": "ایمیل شما تاکنون تایید نشده است، برای تایید ایمیل خود را اینجا را کلیک کنید.",
|
||||
"email-not-confirmed-chat": "شما تا قبل از تایید ایمیل قادر به چت نیستید، لطفا برای تایید ایمیل خود اینجا کلیک کنید",
|
||||
"email-not-confirmed-email-sent": "ایمیل شما هنوز تایید نشده است، لطفا صندوق پیام های خود را برای تایید ایمیل بررسی کنید.",
|
||||
"no-email-to-confirm": "ایمیل شما تایید نشده است ، لطفا برای وارد کردن ایمیل اینجا کلیک کنید",
|
||||
"email-confirm-failed": "سیستم موفق به تایید ایمیل شما نشد، لطفا بعدا دوباره سعی کنید",
|
||||
"confirm-email-already-sent": "ایمیل فعالسازی قبلا فرستاده شده، لطفا %1 دقیقه صبر کنید تا ایمیل دیگری بفرستید.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "عکس",
|
||||
"composer.upload-picture": "بارگذاری عکس",
|
||||
"composer.upload-file": "بارگذاری فایل",
|
||||
"composer.zen_mode": "حالت ذن",
|
||||
"bootbox.ok": "باشه",
|
||||
"bootbox.cancel": "انصراف",
|
||||
"bootbox.confirm": "تایید",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "این موضوع جابهجا خواهد شد به دستهٔ",
|
||||
"fork_topic_instruction": "پستهایی را که میخواهید به موضوع تازه ببرید، انتخاب کنید",
|
||||
"fork_no_pids": "هیچ پستی انتخاب نشده!",
|
||||
"fork_pid_count": "%1 پست (ها) انتخاب شده اند",
|
||||
"fork_success": "موضوع با موفقیت منشعب شد! برای رفتن به موضوع انشعابی اینجا را کلیک کنید.",
|
||||
"delete_posts_instruction": "با کلیک بر روی پست شما می خواهید به حذف/پاکسازی",
|
||||
"composer.title_placeholder": "عنوان موضوعتان را اینجا بنویسید...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Sähköpostiosoite varattu",
|
||||
"email-not-confirmed": "Sähköpostiasi ei ole vielä vahvistettu, ole hyvä ja napsauta tätä vahvistaaksesi sen.",
|
||||
"email-not-confirmed-chat": "Et voi keskustella ennen kuin sähköpostiosoitteesi on vahvistettu, ole hyvä ja paina tästä vahvistaaksesi sen.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Cancel",
|
||||
"bootbox.confirm": "Confirm",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Tämä keskustelu siirretään aihealueelle",
|
||||
"fork_topic_instruction": "Napsauta viestejä, jotka haluat haaroittaa",
|
||||
"fork_no_pids": "Ei valittuja viestejä!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Successfully forked topic! Click here to go to the forked topic.",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"composer.title_placeholder": "Syötä aiheesi otsikko tähän...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Email déjà utilisé",
|
||||
"email-not-confirmed": "Votre adresse email n'est pas confirmée, cliquez ici pour la valider.",
|
||||
"email-not-confirmed-chat": "Il ne vous est pas possible d'utiliser le chat tant que votre adresse email n'a pas été vérifiée. Veuillez cliquer ici pour confirmer votre adresse email.",
|
||||
"email-not-confirmed-email-sent": "Votre adresse email n'a pas encore été confirmée. Merci de vérifier l'email de confirmation dans votre boîte de reception.",
|
||||
"no-email-to-confirm": "Ce forum requiert une vérification de votre adresse email. Veuillez cliquer ici pour entrer une adresse.",
|
||||
"email-confirm-failed": "Votre adresse email n'a pas pu être vérifiée. Veuillez ré-essayer plus tard.",
|
||||
"confirm-email-already-sent": "L'email de confirmation a déjà été envoyé. Veuillez attendre %1 minute(s) avant de redemander un nouvel envoi.",
|
||||
|
||||
@@ -8,5 +8,5 @@
|
||||
"failed_login_attempt": "Identification échouée",
|
||||
"login_successful": "Vous êtes maintenant connecté !",
|
||||
"dont_have_account": "Vous n'avez pas de compte ?",
|
||||
"logged-out-due-to-inactivity": "You have been logged out of the Admin Control Panel due to inactivity"
|
||||
"logged-out-due-to-inactivity": "Vous avez été déconnecté du Panneau de Contrôle d'Administration en raison de votre inactivité"
|
||||
}
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Image",
|
||||
"composer.upload-picture": "Envoyer une image",
|
||||
"composer.upload-file": "Envoyer un fichier",
|
||||
"composer.zen_mode": "Mode Zen",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Annuler",
|
||||
"bootbox.confirm": "Confirmer",
|
||||
|
||||
@@ -26,8 +26,8 @@
|
||||
"tools": "Outils",
|
||||
"flag": "Signaler",
|
||||
"locked": "Verrouillé",
|
||||
"pinned": "Pinned",
|
||||
"moved": "Moved",
|
||||
"pinned": "Épinglé",
|
||||
"moved": "Déplacé",
|
||||
"bookmark_instructions": "Cliquez ici pour retourner au dernier message lu de ce fil.",
|
||||
"flag_title": "Signaler ce message à la modération",
|
||||
"flag_success": "Ce message a bien été signalé aux modérateurs.",
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Ce sujet sera déplacé vers la catégorie",
|
||||
"fork_topic_instruction": "Cliquez sur les postes à scinder",
|
||||
"fork_no_pids": "Aucun post sélectionné !",
|
||||
"fork_pid_count": "%1 message(s) sélectionné(s)",
|
||||
"fork_success": "Sujet copié avec succès ! Cliquez ici pour aller au sujet copié.",
|
||||
"delete_posts_instruction": "Sélectionnez les messages que vous souhaitez supprimer/vider",
|
||||
"composer.title_placeholder": "Entrer le titre du sujet ici…",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Correo en uso",
|
||||
"email-not-confirmed": "O teu correo aínda non está confirmado, por favor pica aquí para confirmalo.",
|
||||
"email-not-confirmed-chat": "Non podes charlar ata que confirmes o teu correo, por favor pica aquí para confirmalo.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "Este foro require confirmación de correo, por favor pica aquí para introducir un correo.",
|
||||
"email-confirm-failed": "Non podemos confirmar o teu correo, por favor téntao de novo máis tarde.",
|
||||
"confirm-email-already-sent": "O correo de confirmación foi enviado, agarda %1 minute(s) para enviar outro.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Foto",
|
||||
"composer.upload-picture": "Subir foto",
|
||||
"composer.upload-file": "Subir arquivo",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "De acordo",
|
||||
"bootbox.cancel": "Cancelar",
|
||||
"bootbox.confirm": "Confirmar",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Este tema será movido á categoría",
|
||||
"fork_topic_instruction": "Fai clic nas publicacións que queiras dividir",
|
||||
"fork_no_pids": "Non seleccionaches ninguna publicación!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Creouse un novo tema a partir do orixinal! Fai clic aquí para ir ó novo tema.",
|
||||
"delete_posts_instruction": "Fai clic nas mensaxes que queres eliminar/limpar",
|
||||
"composer.title_placeholder": "Introduce o título do teu tema",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "כתובת אימייל תפוסה",
|
||||
"email-not-confirmed": "כתובת המייל שלך עוד לא אושרה, לחץ כאן על-מנת לאשר את המייל שלך.",
|
||||
"email-not-confirmed-chat": "אין באפשרותך לשוחח עד שהדוא\"ל שלך יאושר, אנא לחץ כאן כדי לאשר את הדוא\"ל שלך.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "פורום זה דורש אישור בדוא\"ל, אנא לחץ כאן כדי להכניס לדואר אלקטרוני",
|
||||
"email-confirm-failed": "לא הצלחנו לאשר את הדוא\"ל שלך, תנסה שוב אחר כך",
|
||||
"confirm-email-already-sent": "מייל האישור כבר נשלח, אנא המתן %1 דקות כדי לשלוח מייל נוסף.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "בסדר",
|
||||
"bootbox.cancel": "בטל",
|
||||
"bootbox.confirm": "אשר",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "נושא זה יועבר לקטגוריה",
|
||||
"fork_topic_instruction": "לחץ על הפוסטים שברצונך לשכפל",
|
||||
"fork_no_pids": "לא בחרת אף פוסט!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "הפוסט שוכפל בהצלחה! לחץ כאן על מנת לעבור לפוסט המשוכפל.",
|
||||
"delete_posts_instruction": "לחץ על הפוסטים שברצונך למחוק",
|
||||
"composer.title_placeholder": "הכנס את כותרת הנושא כאן...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Foglalt e-mail",
|
||||
"email-not-confirmed": "Az e-mail címed még nem lett ellenőrizve, kérlek kattints ide az e-mail címed ellenőrzéséhez!",
|
||||
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "Ez a fórum e-mail megerősítést kíván, kérlek kattints ide egy cím beírásához",
|
||||
"email-confirm-failed": "Nem tudtuk ellenőrizni az e-mail címedet, kérlek próbálkozz később.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Cancel",
|
||||
"bootbox.confirm": "Confirm",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Ez a téma ebbe a kategóriába lesz mozgatva",
|
||||
"fork_topic_instruction": "Klikkelj azokra a hozzászólásokra, amiket szét akarsz szedni",
|
||||
"fork_no_pids": "Nincs hozzászólás kiválasztva!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Successfully forked topic! Click here to go to the forked topic.",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"composer.title_placeholder": "Írd be a témanevet...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Email sudah terdaftar",
|
||||
"email-not-confirmed": "Email kamu belum dikonfirmasi, klik disini untuk mengkonfirmasi email.",
|
||||
"email-not-confirmed-chat": "You are unable to chat until your email is confirmed, please click here to confirm your email.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Cancel",
|
||||
"bootbox.confirm": "Confirm",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Topik ini akan dipindahkan ke kategori",
|
||||
"fork_topic_instruction": "Klik posting yang kamu ingin cabangkan",
|
||||
"fork_no_pids": "Tidak ada posting yang dipilih!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Topik berhasil dicabangkan! Klik disini untuk menuju topik yang telah dicabangkan.",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"composer.title_placeholder": "Masukkan judul topik di sini...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Email già esistente",
|
||||
"email-not-confirmed": "La tua Email deve essere ancora confermata, per favore clicca qui per confermare la tua Email.",
|
||||
"email-not-confirmed-chat": "Non potrai chattare finchè non avrai confermato la tua email, per favore clicca qui per farlo ora.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "Questo forum richiede la conferma dell'indirizzo email, per favore clicca qui per inserirne uno",
|
||||
"email-confirm-failed": "Non possiamo confermare la tua email, per favore prova ancora più tardi.",
|
||||
"confirm-email-already-sent": "Email di conferma già inviata, per favore attendere %1 minuti per richiederne un'altra.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Annulla",
|
||||
"bootbox.confirm": "Conferma",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Questa discussione verrà spostata nella categoria",
|
||||
"fork_topic_instruction": "Clicca sui post che vuoi dividere",
|
||||
"fork_no_pids": "Nessun post selezionato!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Topic Diviso con successo ! Clicca qui per andare al Topic Diviso.",
|
||||
"delete_posts_instruction": "Clicca sui post che vuoi cancellare/eliminare",
|
||||
"composer.title_placeholder": "Inserisci qui il titolo della discussione...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "メールアドレスは既に使われています",
|
||||
"email-not-confirmed": "あなたのメールアドレスはまだ確認されていません。メールアドレスを確認するためにはここをクリックしてください。",
|
||||
"email-not-confirmed-chat": "チャットを行うにはメールアドレスの確認を行う必要があります。メールアドレスを確認するためにはここをクリックしてください。",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "このフォーラムを利用するにはメールアドレスの確認を行う必要があります。メールアドレスを確認するためにはここをクリックしてください。",
|
||||
"email-confirm-failed": "メールアドレスの確認が出来ませんでした。再度お試しください。",
|
||||
"confirm-email-already-sent": "確認のメールは既に送信されています。再度送信するには、%1分後に再度お試しください。",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Cancel",
|
||||
"bootbox.confirm": "Confirm",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "スレッドはこちらのカテゴリへ移動",
|
||||
"fork_topic_instruction": "フォークしたいポストをクリックして",
|
||||
"fork_no_pids": "ポストが選択されていません!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "トピックをフォークするのに成功しました。ここを押して、このフォークしたトピックに行きます。",
|
||||
"delete_posts_instruction": "削除または粛清するには、当てはまる投稿を押してください",
|
||||
"composer.title_placeholder": "スレッドのタイトルを入力して...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "이미 사용 중인 이메일입니다.",
|
||||
"email-not-confirmed": "아직 이메일이 인증되지 않았습니다. 여기를 누르면 인증 메일을 발송할 수 있습니다.",
|
||||
"email-not-confirmed-chat": "아직 이메일이 인증되지 않았습니다. 대화기능은 인증 후에 사용이 가능합니다.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "이메일 인증이 필요합니다. 이곳을 클릭하여 이메일 입력하세요.",
|
||||
"email-confirm-failed": "이메일 인증이 실패하였습니다. 잠시 후에 다시 시도하세요.",
|
||||
"confirm-email-already-sent": "인증 메일이 이미 발송되었습니다. %1 분 이후에 재 발송이 가능합니다.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "확인",
|
||||
"bootbox.cancel": "취소",
|
||||
"bootbox.confirm": "확인",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "이 주제를 지정한 카테고리로 이동합니다.",
|
||||
"fork_topic_instruction": "분리할 게시물을 선택하세요.",
|
||||
"fork_no_pids": "게시물이 선택되지 않았습니다.",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "주제가 분리되었습니다! 분리된 주제를 보려면 여기를 클릭하세요.",
|
||||
"delete_posts_instruction": "삭제할 게시물을 선택하세요.",
|
||||
"composer.title_placeholder": "여기에 제목을 입력하세요.",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "El. pašto adresas jau užimtas",
|
||||
"email-not-confirmed": "Jūsų el. paštas nepatvirtintas, prašome paspausti čia norint jį patvirtinti.",
|
||||
"email-not-confirmed-chat": "Jūs negalite bendrauti, kol jūsų el.paštas nėra patvirtintas, prašome spausti čia kad aktyvuoti jūsų el.paštą",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "Šis forumas reikalauja patvirtinimo el. paštu prašome spausti čia el. adreso įrašymui",
|
||||
"email-confirm-failed": "Negalime patvirtinti jūsų el. adreso, prašom bandyti vėliau.",
|
||||
"confirm-email-already-sent": "Patvirtinimo laiškas išsiųstas, prašome palaukti %1 minute(s) kad išsiųstume kita",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Cancel",
|
||||
"bootbox.confirm": "Confirm",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Ši tema bus perkelta į kategoriją",
|
||||
"fork_topic_instruction": "Pažymėkite ant įrašų, kuriuos norite perkelti į naują temą",
|
||||
"fork_no_pids": "Nepasirinktas joks įrašas!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Sėkmingai išsišakota iš temos! Spausk čia kad nueitu į išsišakota temą",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"composer.title_placeholder": "Įrašykite temos pavadinimą...",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Emel telah digunakan",
|
||||
"email-not-confirmed": "Emel anda belum disahkan lagi, sila klik sini untuk mengesahkan emel anda.",
|
||||
"email-not-confirmed-chat": "Anda tidak dibenarkan sembang sehingga emel disahkan, sila sahkan emel anda.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "Forum ini memerlukan pengesahan emel, sila klik sini untuk memasukkan emel",
|
||||
"email-confirm-failed": "Kami tidak dapat memastikan emel anda, sila cuba lagi nanti",
|
||||
"confirm-email-already-sent": "Pengesahan emel telah dihantar, sila tunggu %1 minit() untuk menghantar yang baru.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "Ok",
|
||||
"bootbox.cancel": "Batal",
|
||||
"bootbox.confirm": "Pasti",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Topik ini akan dipindahkan kepada kategori",
|
||||
"fork_topic_instruction": "Klik kiriman yang anda hendak salin",
|
||||
"fork_no_pids": "Tiada kiriman yang dipilih",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Berjaya menyalin topik. Klik sini untuk ke topik yang disalin.",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"composer.title_placeholder": "Masukkan tajuk topik disini",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "E-post opptatt",
|
||||
"email-not-confirmed": "E-posten din har ikke blitt bekreftet enda, vennligst klikk for å bekrefte din e-post.",
|
||||
"email-not-confirmed-chat": "Du kan ikke chatte før e-posten din er bekreftet, vennligst klikk her for å bekrefte e-postadressen.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "Dette forumet krever e-postbekreftelse, vennligst klikk her for å skrive inn en e-post",
|
||||
"email-confirm-failed": "Vi kunne ikke bekrefte e-posten din, vennligst prøv igjen senere.",
|
||||
"confirm-email-already-sent": "E-post for bekreftelse er allerede sendt, vennligst vent %1 minutt(er) for å sende en til.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Picture",
|
||||
"composer.upload-picture": "Upload Image",
|
||||
"composer.upload-file": "Upload File",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Avbryt",
|
||||
"bootbox.confirm": "Bekreft",
|
||||
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Dette emnet vil bli flyttet til kategorien",
|
||||
"fork_topic_instruction": "Trykk på innleggene du vil forgrene",
|
||||
"fork_no_pids": "Ingen innlegg valgt!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Dette emnet ble forgrenet! Klikk for å gå til forgrenet emne.",
|
||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
||||
"composer.title_placeholder": "Skriv din tråd-tittel her",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "E-mailadres is al in gebruik",
|
||||
"email-not-confirmed": "Het e-mailadres van dit account is nog niet bevestigd, klik hier om je e-mailadres te bevestigen.",
|
||||
"email-not-confirmed-chat": "Het gebruik van chatfunctionaliteit is pas toegestaan na validatie van het e-mailadres.",
|
||||
"email-not-confirmed-email-sent": "Your email has not been confirmed yet, please check your inbox for the confirmation email.",
|
||||
"no-email-to-confirm": "Dit berichtenforum vereist bevestiging per e-mail, klik hier om een e-mailadres te registreren",
|
||||
"email-confirm-failed": "Helaas kon het e-mailadres niet bevestigd worden, probeer het later nog eens.",
|
||||
"confirm-email-already-sent": "Bevestigingsmail is zojuist al verzonden, wacht alsjeblieft %1 minuut (minuten) voordat je opnieuw een bevestigingsmail aanvraagt.",
|
||||
|
||||
@@ -8,5 +8,5 @@
|
||||
"failed_login_attempt": "Aanmelden mislukt",
|
||||
"login_successful": "Je bent succesvol ingelogd!",
|
||||
"dont_have_account": "Geen gebruikersaccount?",
|
||||
"logged-out-due-to-inactivity": "You have been logged out of the Admin Control Panel due to inactivity"
|
||||
"logged-out-due-to-inactivity": "Je bent uitgelogt van het admin control panel vanwege inactiviteit."
|
||||
}
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Afbeelding",
|
||||
"composer.upload-picture": "Upload afbeelding",
|
||||
"composer.upload-file": "Upload bestand",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Annuleren",
|
||||
"bootbox.confirm": "Bevestig",
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
"flag": "Markeren",
|
||||
"locked": "Gesloten",
|
||||
"pinned": "Pinned",
|
||||
"moved": "Moved",
|
||||
"moved": "Verplaatst",
|
||||
"bookmark_instructions": "Klik hier om terug te keren naar de laatst gelezen post in deze thread.",
|
||||
"flag_title": "Bericht aan beheerders melden",
|
||||
"flag_success": "Dit bericht is gerapporteerd aan de beheerder.",
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Dit onderwerp zal naar de categorie verplaatst worden",
|
||||
"fork_topic_instruction": "Klik op de berichten die afgesplitst moeten worden",
|
||||
"fork_no_pids": "Geen berichten geselecteerd!",
|
||||
"fork_pid_count": "%1 post(s) selected",
|
||||
"fork_success": "Onderwerp is succesvol afgesplitst. Klik hier om het nieuwe onderwerp te zien.",
|
||||
"delete_posts_instruction": "Klik op de berichten die verwijderd moeten worden",
|
||||
"composer.title_placeholder": "Voer hier de titel van het onderwerp in...",
|
||||
|
||||
@@ -10,10 +10,10 @@
|
||||
"share_this_category": "Udostępnij tę kategorię",
|
||||
"watch": "Obserwuj",
|
||||
"ignore": "Ignoruj",
|
||||
"watching": "Watching",
|
||||
"ignoring": "Ignoring",
|
||||
"watching.description": "Show topics in unread",
|
||||
"ignoring.description": "Do not show topics in unread",
|
||||
"watching": "Obserwowanie",
|
||||
"ignoring": "Ignorowanie",
|
||||
"watching.description": "Pokaż tematy jako nieprzeczytane",
|
||||
"ignoring.description": "Nie pokazuj tematów jako nieprzeczytane",
|
||||
"watch.message": "Obserwujesz teraz uaktualnienia z tej kategorii",
|
||||
"ignore.message": "Ignorujesz teraz uaktualnienia z tej kategorii",
|
||||
"watched-categories": "Obserwowane kategorie"
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Email zajęty",
|
||||
"email-not-confirmed": "Twój email nie został jeszcze potwierdzony. Proszę kliknąć tutaj by go potwierdzić.",
|
||||
"email-not-confirmed-chat": "Nie możesz prowadzić rozmów dopóki twój email nie zostanie potwierdzony, kliknij tutaj, aby potwierdzić swój email.",
|
||||
"email-not-confirmed-email-sent": "Twój e-mail jeszcze nie został potwierdzony, proszę sprawdź swoją skrzynkę odbiorczą.",
|
||||
"no-email-to-confirm": "To forum wymaga weryfikacji przez email. Proszę kliknąć tutaj, aby wprowadzić adres.",
|
||||
"email-confirm-failed": "Nie byliśmy w stanie potwierdzić twojego email-a. Proszę spróbować później.",
|
||||
"confirm-email-already-sent": "Email potwierdzający został już wysłany, proszę odczekaj jeszcze %1 minut(y), aby wysłać kolejny.",
|
||||
@@ -30,7 +31,7 @@
|
||||
"user-banned": "Użytkownik zbanowany",
|
||||
"user-too-new": "Przepraszamy, musisz odczekać %1 sekund(y) przed utworzeniem pierwszego posta",
|
||||
"blacklisted-ip": "Twój adres IP został zablokowany na tej społeczności. Jeśli uważasz to za błąd, zgłoś to administratorowi",
|
||||
"ban-expiry-missing": "Please provide an end date for this ban",
|
||||
"ban-expiry-missing": "Wprowadź datę końca blokady",
|
||||
"no-category": "Kategoria nie istnieje",
|
||||
"no-topic": "Temat nie istnieje",
|
||||
"no-post": "Post nie istnieje",
|
||||
@@ -47,13 +48,13 @@
|
||||
"post-edit-duration-expired-hours-minutes": "Możesz edytować posty tylko przez %1 godzin(y) i %2 minut(y) po ich napisaniu",
|
||||
"post-edit-duration-expired-days": "Możesz edytować posty tylko przez %1 dzień (dni) po ich napisaniu",
|
||||
"post-edit-duration-expired-days-hours": "Możesz edytować posty tylko przez %1 dzień (dni) i %2 godzin(y) po ich napisaniu",
|
||||
"post-delete-duration-expired": "You are only allowed to delete posts for %1 second(s) after posting",
|
||||
"post-delete-duration-expired-minutes": "You are only allowed to delete posts for %1 minute(s) after posting",
|
||||
"post-delete-duration-expired-minutes-seconds": "You are only allowed to delete posts for %1 minute(s) %2 second(s) after posting",
|
||||
"post-delete-duration-expired-hours": "You are only allowed to delete posts for %1 hour(s) after posting",
|
||||
"post-delete-duration-expired-hours-minutes": "You are only allowed to delete posts for %1 hour(s) %2 minute(s) after posting",
|
||||
"post-delete-duration-expired-days": "You are only allowed to delete posts for %1 day(s) after posting",
|
||||
"post-delete-duration-expired-days-hours": "You are only allowed to delete posts for %1 day(s) %2 hour(s) after posting",
|
||||
"post-delete-duration-expired": "Możesz kasować posty przez %1 sekund(-y) po napisaniu",
|
||||
"post-delete-duration-expired-minutes": "Możesz kasować posty przez %1 minut(-y) po napisaniu",
|
||||
"post-delete-duration-expired-minutes-seconds": "Możesz kasować posty przez %1 minut(-y) i %2 sekund(-y) po napisaniu",
|
||||
"post-delete-duration-expired-hours": "Możesz kasować posty przez %1 godzin(-y) po napisaniu",
|
||||
"post-delete-duration-expired-hours-minutes": "Możesz kasować posty przez %1 godzin(-y) i %2 minut(-y) po napisaniu",
|
||||
"post-delete-duration-expired-days": "Możesz kasować posty przez %1 dni po napisaniu",
|
||||
"post-delete-duration-expired-days-hours": "Możesz kasować posty przez %1 dni i %2 godzin(-y) po napisaniu",
|
||||
"content-too-short": "Prosimy wpisać dłuższy post. Posty powinny zawierać co najmniej %1 znaków.",
|
||||
"content-too-long": "Prosimy wpisać krótszy post. Posty nie mogą zawierać więcej niż %1 znaków.",
|
||||
"title-too-short": "Prosimy podać dłuższy tytuł. Tytuły powinny zawierać co najmniej %1 znaków.",
|
||||
@@ -76,7 +77,7 @@
|
||||
"invalid-image-extension": "Błędne rozszerzenie pliku",
|
||||
"invalid-file-type": "Błędny typ pliku. Dozwolone typy to: %1",
|
||||
"group-name-too-short": "Nazwa grupy za krótka",
|
||||
"group-name-too-long": "Group name too long",
|
||||
"group-name-too-long": "Nazwa grupy jest za długa",
|
||||
"group-already-exists": "Grupa już istnieje",
|
||||
"group-name-change-not-allowed": "Nie można zmieniać nazwy tej grupy.",
|
||||
"group-already-member": "Już jesteś członkiem tej grupy",
|
||||
@@ -119,6 +120,6 @@
|
||||
"not-in-room": "Użytkownik nie jest w pokoju",
|
||||
"no-users-in-room": "Brak użytkowników w pokoju",
|
||||
"cant-kick-self": "Nie możesz wyrzucić samego siebie z grupy",
|
||||
"no-users-selected": "No user(s) selected",
|
||||
"no-users-selected": "Nie wybrano żadnych użytkowników",
|
||||
"invalid-home-page-route": "Invalid home page route"
|
||||
}
|
||||
@@ -50,10 +50,10 @@
|
||||
"topics": "Tematy",
|
||||
"posts": "Posty",
|
||||
"best": "Najlepsze",
|
||||
"upvoters": "Upvoters",
|
||||
"upvoted": "Upvoted",
|
||||
"downvoters": "Downvoters",
|
||||
"downvoted": "Downvoted",
|
||||
"upvoters": "Głosujący za",
|
||||
"upvoted": "Oddane głosy za",
|
||||
"downvoters": "Głosujący przeciw",
|
||||
"downvoted": "Oddane głosy przeciw",
|
||||
"views": "wyświetleń",
|
||||
"reputation": "Punkty reputacji",
|
||||
"read_more": "czytaj więcej",
|
||||
|
||||
@@ -8,5 +8,5 @@
|
||||
"failed_login_attempt": "Nie udało się zalogować. Spróbuj ponownie.",
|
||||
"login_successful": "Zostałeś pomyślnie zalogowany.",
|
||||
"dont_have_account": "Nie masz konta?",
|
||||
"logged-out-due-to-inactivity": "You have been logged out of the Admin Control Panel due to inactivity"
|
||||
"logged-out-due-to-inactivity": "Zostałeś wylogowany z Panelu Administratora z powodu braku aktywności."
|
||||
}
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Obraz",
|
||||
"composer.upload-picture": "Wyślij obraz",
|
||||
"composer.upload-file": "Wyślij plik",
|
||||
"composer.zen_mode": "Zen Mode",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Anuluj",
|
||||
"bootbox.confirm": "Potwierdź",
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
"users/sort-posts": "Użytkownicy z największą liczbą postów",
|
||||
"users/sort-reputation": "Użytkownicy z najwyższą reputacją",
|
||||
"users/banned": "Banned Users",
|
||||
"users/most-flags": "Most flagged users",
|
||||
"users/most-flags": "Najczęściej oznaczani użytkownicy",
|
||||
"users/search": "Wyszukiwanie Użytkownków",
|
||||
"notifications": "Powiadomienia",
|
||||
"tags": "Tagi",
|
||||
@@ -29,7 +29,7 @@
|
||||
"account/edit/password": "Editing password of \"%1\"",
|
||||
"account/edit/username": "Editing username of \"%1\"",
|
||||
"account/edit/email": "Editing email of \"%1\"",
|
||||
"account/info": "Account Info",
|
||||
"account/info": "Informacje o koncie",
|
||||
"account/following": "Obserwowani przez %1",
|
||||
"account/followers": "Obserwujący %1",
|
||||
"account/posts": "Posty napisane przez %1",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"register": "Rejestracja",
|
||||
"cancel_registration": "Cancel Registration",
|
||||
"cancel_registration": "Anuluj rejestrację",
|
||||
"help.email": "Domyślnie twój adres e-mail będzie ukryty.",
|
||||
"help.username_restrictions": "Unikalna nazwa użytkownika z min. %1 i maks. %2 znaków. Inni użytkownicy mogą ciebie zawołać pisząc @<span id='yourUsername'>nazwa użytkownika</span>.",
|
||||
"help.minimum_password_length": "Hasło musi mieć co najmniej %1 znaków.",
|
||||
@@ -16,8 +16,8 @@
|
||||
"alternative_registration": "Alternatywna rejestracja",
|
||||
"terms_of_use": "Warunki korzystania z serwisu",
|
||||
"agree_to_terms_of_use": "Zgadzam się na powyższe warunki",
|
||||
"terms_of_use_error": "You must agree to the Terms of Use",
|
||||
"terms_of_use_error": "Musisz zaakceptować Terms of Use",
|
||||
"registration-added-to-queue": "Twoja rejestracja została dodana do kolejki oczekujących na akceptację. Otrzymasz email, kiedy zostanie zatwierdzona przez administratora.",
|
||||
"interstitial.intro": "We require some additional information before we can create your account.",
|
||||
"interstitial.errors-found": "We could not complete your registration:"
|
||||
"interstitial.intro": "Potrzebujemy dodatkowych informacji zanim przejdziemy dalej do utworzenia Twojego konta.",
|
||||
"interstitial.errors-found": "Nie mogliśmy ukończyć procesu rejestracji:"
|
||||
}
|
||||
@@ -26,14 +26,14 @@
|
||||
"tools": "Narzędzia",
|
||||
"flag": "Zgłoś",
|
||||
"locked": "Zablokowany",
|
||||
"pinned": "Pinned",
|
||||
"moved": "Moved",
|
||||
"pinned": "Przypięte",
|
||||
"moved": "Przeniesione",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Zgłoś post do moderacji",
|
||||
"flag_success": "Ten post został oznaczony do moderacji.",
|
||||
"deleted_message": "Ten temat został skasowany. Tylko użytkownicy z uprawnieniami do zarządzania mogą go zobaczyć.",
|
||||
"following_topic.message": "Będziesz od teraz otrzymywał powiadomienia, gdy ktoś odpowie w tym temacie.",
|
||||
"not_following_topic.message": "You will see this topic in the unread topics list, but you will not receive notifications when somebody posts to this topic.",
|
||||
"not_following_topic.message": "Zobaczysz ten temat na liście nieprzeczytanych, ale nie otrzymasz żadnego powiadomienia dotyczącego tego tematu.",
|
||||
"ignoring_topic.message": "Nie zobaczysz już tego tematu na liście nieprzeczytanych. Otrzymasz powiadomienie, kiedy zostaniesz wspomniany lub ktoś odda głos na twój post.",
|
||||
"login_to_subscribe": "Zaloguj się, aby subskrybować ten temat.",
|
||||
"markAsUnreadForAll.success": "Temat oznaczony jako nieprzeczytany dla wszystkich.",
|
||||
@@ -60,7 +60,7 @@
|
||||
"thread_tools.move_all": "Przenieś wszystko",
|
||||
"thread_tools.fork": "Skopiuj Temat",
|
||||
"thread_tools.delete": "Usuń Temat",
|
||||
"thread_tools.delete-posts": "Delete Posts",
|
||||
"thread_tools.delete-posts": "Usuń posty",
|
||||
"thread_tools.delete_confirm": "Na pewno chcesz skasować ten temat?",
|
||||
"thread_tools.restore": "Przywróć Temat",
|
||||
"thread_tools.restore_confirm": "Na pewno chcesz przywrócić ten temat?",
|
||||
@@ -86,6 +86,7 @@
|
||||
"topic_will_be_moved_to": "Ten temat zostanie przeniesiony do kategorii",
|
||||
"fork_topic_instruction": "Zaznacz posty, które chcesz sklonować",
|
||||
"fork_no_pids": "Nie zaznaczyłeś żadnych postów!",
|
||||
"fork_pid_count": "wybrano %1 post(-ów)",
|
||||
"fork_success": "Udało się skopiować temat. Kliknij tutaj, aby do niego przejść.",
|
||||
"delete_posts_instruction": "Kliknij na posty, które chcesz usunąć",
|
||||
"composer.title_placeholder": "Wpisz tutaj tytuł tematu...",
|
||||
@@ -117,5 +118,5 @@
|
||||
"link_back": "Re: [%1](%2)",
|
||||
"spam": "Spam",
|
||||
"offensive": "Obrażliwy",
|
||||
"custom-flag-reason": "Enter a flagging reason"
|
||||
"custom-flag-reason": "Wprowadź powód oznaczenia"
|
||||
}
|
||||
@@ -6,7 +6,7 @@
|
||||
"postcount": "Liczba postów",
|
||||
"email": "Adres e-mail",
|
||||
"confirm_email": "Potwierdź e-mail",
|
||||
"account_info": "Account Info",
|
||||
"account_info": "Informacje o koncie",
|
||||
"ban_account": "Zbanuj Konto",
|
||||
"ban_account_confirm": "Na pewno chcesz zbanować tego użytkownika?",
|
||||
"unban_account": "Odbanuj Konto",
|
||||
@@ -96,8 +96,8 @@
|
||||
"delay_image_loading": "Opóźnienie ładowania zdjęcia",
|
||||
"image_load_delay_help": "Jeśli włączone, zdjęcia w temacie nie załadują się dopóki nie najedzie się",
|
||||
"scroll_to_my_post": "Po napisaniu odpowiedzi, wyświetl najnowsze posty",
|
||||
"follow_topics_you_reply_to": "Watch topics that you reply to",
|
||||
"follow_topics_you_create": "Watch topics you create",
|
||||
"follow_topics_you_reply_to": "Obserwuj tematy w których uczestniczysz",
|
||||
"follow_topics_you_create": "Obserwuj tematy które utworzyłeś",
|
||||
"grouptitle": "Tytuł grupy",
|
||||
"no-group-title": "Brak tytułu grupy",
|
||||
"select-skin": "Wybierz Skórkę",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"email-taken": "Email já cadastrado",
|
||||
"email-not-confirmed": "O seu email ainda não foi confirmado, por favor clique aqui para confirmar seu email.",
|
||||
"email-not-confirmed-chat": "Você não está habilitado a conversar até que seu email seja confirmado, por favor clique aqui para confirmar seu email.",
|
||||
"email-not-confirmed-email-sent": "O seu email ainda não foi confirmado, por favor confira a sua caixa de entrada pelo email de confirmação.",
|
||||
"no-email-to-confirm": "Este fórum exige confirmação de email, por gentileza clique aqui para digitar um email",
|
||||
"email-confirm-failed": "Nós não pudemos confirmar seu email, por gentileza tente novamente mais tarde.",
|
||||
"confirm-email-already-sent": "O email de confirmação já foi enviado, por favor aguarde %1 minuto(s) para enviar outro.",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"composer.formatting.picture": "Imagem",
|
||||
"composer.upload-picture": "Fazer upload de Imagem",
|
||||
"composer.upload-file": "Fazer upload de Arquivo",
|
||||
"composer.zen_mode": "Modo Zen",
|
||||
"bootbox.ok": "OK",
|
||||
"bootbox.cancel": "Cancelar",
|
||||
"bootbox.confirm": "Confirmar",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user