Merge branch 'master' into v0.8.x

This commit is contained in:
Julian Lam
2015-09-16 14:32:21 -04:00
245 changed files with 1906 additions and 1115 deletions

View File

@@ -6,7 +6,7 @@
[![Code Climate](https://codeclimate.com/github/NodeBB/NodeBB/badges/gpa.svg)](https://codeclimate.com/github/NodeBB/NodeBB)
[![Documentation Status](https://readthedocs.org/projects/nodebb/badge/?version=latest)](https://readthedocs.org/projects/nodebb/?badge=latest)
**NodeBB Forum Software** is powered by Node.js and built on either a Redis or MongoDB database. It utilizes web sockets for instant interactions and real-time notifications. NodeBB is compatible down to IE8 and has many modern features out of the box such as social network integration and streaming discussions.
[**NodeBB Forum Software**](https://nodebb.org) is powered by Node.js and built on either a Redis or MongoDB database. It utilizes web sockets for instant interactions and real-time notifications. NodeBB has many modern features out of the box such as social network integration and streaming discussions, while still making sure to be compatible with older browsers.
Additional functionality is enabled through the use of third-party plugins.
@@ -72,4 +72,4 @@ Detailed upgrade instructions are listed in [Upgrading NodeBB](https://docs.node
NodeBB is licensed under the **GNU General Public License v3 (GPL-3)** (http://www.gnu.org/copyleft/gpl.html).
Interested in a sublicense agreement for use of NodeBB in a non-free/restrictive environment? Contact us at sales@nodebb.org.
Interested in a sublicense agreement for use of NodeBB in a non-free/restrictive environment? Contact us at sales@nodebb.org.

2
app.js
View File

@@ -152,14 +152,12 @@ function start() {
case 'js-propagate':
meta.js.cache = message.cache;
meta.js.map = message.map;
meta.js.hash = message.hash;
emitter.emit('meta:js.compiled');
winston.verbose('[cluster] Client-side javascript and mapping propagated to worker %s', process.pid);
break;
case 'css-propagate':
meta.css.cache = message.cache;
meta.css.acpCache = message.acpCache;
meta.css.hash = message.hash;
emitter.emit('meta:css.compiled');
winston.verbose('[cluster] Stylesheets propagated to worker %s', process.pid);
break;

View File

@@ -12,6 +12,16 @@ var winston = require('winston'),
app = express(),
server;
winston.add(winston.transports.File, {
filename: 'logs/webinstall.log',
colorize: true,
timestamp: function() {
var date = new Date();
return date.getDate() + '/' + (date.getMonth() + 1) + ' ' + date.toTimeString().substr(0,5) + ' [' + global.process.pid + ']';
},
level: 'verbose'
});
var web = {},
scripts = [
'public/vendor/xregexp/xregexp.js',
@@ -30,7 +40,7 @@ web.install = function(port) {
app.set('views', path.join(__dirname, '../src/views'));
app.use(bodyParser.urlencoded({
extended: true
}));
}));
async.parallel([compileLess, compileJS], function() {
setupRoutes();
@@ -107,10 +117,10 @@ function launch(req, res) {
process.stdout.write(' "./nodebb stop" to stop the NodeBB server\n');
process.stdout.write(' "./nodebb log" to view server output\n');
process.stdout.write(' "./nodebb restart" to restart NodeBB\n');
child.unref();
process.exit(0);
}
function compileLess(callback) {

View File

@@ -90,8 +90,7 @@ Loader.addWorkerEvents = function(worker) {
worker.send({
action: 'js-propagate',
cache: Loader.js.cache,
map: Loader.js.map,
hash: Loader.js.hash
map: Loader.js.map
});
}
@@ -99,8 +98,7 @@ Loader.addWorkerEvents = function(worker) {
worker.send({
action: 'css-propagate',
cache: Loader.css.cache,
acpCache: Loader.css.acpCache,
hash: Loader.css.hash
acpCache: Loader.css.acpCache
});
}
@@ -117,25 +115,21 @@ Loader.addWorkerEvents = function(worker) {
case 'js-propagate':
Loader.js.cache = message.cache;
Loader.js.map = message.map;
Loader.js.hash = message.hash;
Loader.notifyWorkers({
action: 'js-propagate',
cache: message.cache,
map: message.map,
hash: message.hash
map: message.map
}, worker.pid);
break;
case 'css-propagate':
Loader.css.cache = message.cache;
Loader.css.acpCache = message.acpCache;
Loader.css.hash = message.hash;
Loader.notifyWorkers({
action: 'css-propagate',
cache: message.cache,
acpCache: message.acpCache,
hash: message.hash
acpCache: message.acpCache
}, worker.pid);
break;
case 'templates:compiled':

View File

@@ -6,7 +6,7 @@ var uglifyjs = require('uglify-js'),
fs = require('fs'),
crypto = require('crypto'),
utils = require('./public/src/utils'),
Minifier = {
js: {}
};
@@ -47,17 +47,7 @@ function minifyScripts(scripts, callback) {
var minified = uglifyjs.minify(scripts, {
// outSourceMap: "nodebb.min.js.map",
compress: false
}),
hasher = crypto.createHash('md5'),
hash;
// Calculate js hash
hasher.update(minified.code, 'utf-8');
hash = hasher.digest('hex');
process.send({
type: 'hash',
payload: hash.slice(0, 8)
});
});
callback(minified.code/*, minified.map*/);
} catch(err) {

View File

@@ -2,7 +2,7 @@
"name": "nodebb",
"license": "GPL-3.0",
"description": "NodeBB Forum",
"version": "0.8.1",
"version": "0.8.2",
"homepage": "http://www.nodebb.org",
"repository": {
"type": "git",
@@ -37,21 +37,21 @@
"mime": "^1.3.4",
"minimist": "^1.1.1",
"mkdirp": "~0.5.0",
"mmmagic": "^0.3.13",
"mmmagic": "^0.4.0",
"morgan": "^1.3.2",
"nconf": "~0.7.1",
"nodebb-plugin-composer-default": "1.0.13",
"nodebb-plugin-composer-default": "1.0.14",
"nodebb-plugin-dbsearch": "0.2.16",
"nodebb-plugin-emoji-extended": "0.4.9",
"nodebb-plugin-emoji-extended": "0.4.13",
"nodebb-plugin-markdown": "4.0.5",
"nodebb-plugin-mentions": "1.0.1",
"nodebb-plugin-mentions": "1.0.2",
"nodebb-plugin-soundpack-default": "0.1.4",
"nodebb-plugin-spam-be-gone": "0.4.1",
"nodebb-plugin-spam-be-gone": "0.4.2",
"nodebb-rewards-essentials": "0.0.5",
"nodebb-theme-lavender": "1.0.54",
"nodebb-theme-persona": "2.1.25",
"nodebb-theme-vanilla": "3.1.7",
"nodebb-widget-essentials": "2.0.0",
"nodebb-theme-lavender": "2.0.1",
"nodebb-theme-persona": "3.0.12",
"nodebb-theme-vanilla": "4.0.7",
"nodebb-widget-essentials": "2.0.1",
"npm": "^2.1.4",
"passport": "^0.3.0",
"passport-local": "1.0.0",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "لايمكنك فتح محادثة مع نفسك",
"chat-restricted": "هذا المستخدم عطل المحادثات الواردة عليه. يجب أن يتبعك حتى تتمكن من فتح محادثة معه.",
"too-many-messages": "لقد أرسلت الكثير من الرسائل، الرجاء اﻹنتظار قليلاً",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "نظام السمعة معطل",
"downvoting-disabled": "التصويتات السلبية معطلة",
"not-enough-reputation-to-downvote": "ليس لديك سمعة تكفي لإضافة صوت سلبي لهذا الموضوع",

View File

@@ -12,6 +12,9 @@
"invited.none": "لايوجد أعضاء مدعوون في حالياً",
"invited.uninvite": "إلغ الدعوة",
"invited.search": "ابحث عن أعضاء لدعوتهم للمجموعة",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "اسحب وأسقِط صورة، اسحبها للموضع المرغوب، وانقر على <strong>حفظ</strong>",
"cover-change": "تغيير",
"cover-save": "حفظ",

View File

@@ -12,6 +12,7 @@
"delete_account": "حذف الحساب",
"delete_account_confirm": "هل أن متأكد أنك تريد حذف حسابك؟<br /><strong> هذه العملية غير قابلة للإلغاء ولن يكون بالإمكان استعادة بياناتك</strong><br /><br />أدخل اسم المستخدم الخاص بك لتأكيد عملية الحذف",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "الاسم الكامل",
"website": "الموقع الإلكتروني",
"location": "الموقع",
@@ -52,6 +53,7 @@
"username_taken_workaround": "اسم المستخدم الذي اخترته سبق أخذه، لذا تم تغييره قليلا. أن الآن مسجل تحت الاسم <strong>%1</strong>",
"upload_picture": "ارفع الصورة",
"upload_a_picture": "رفع صورة",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "لايمكنك رفع إلا الصور ذات الصيغ PNG أو JPG أو GIF.",
"settings": "خيارات",
"show_email": "أظهر بريدي الإلكتروني",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Не можете да пишете съобщение на себе си!",
"chat-restricted": "Този потребител е ограничил съобщенията до себе си. Той трябва първо да Ви последва, преди да можете да си пишете с него.",
"too-many-messages": "Изпратили сте твърде много съобщения. Моля, изчакайте малко.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Системата за репутация е изключена.",
"downvoting-disabled": "Отрицателното гласуване е изключено",
"not-enough-reputation-to-downvote": "Нямате достатъчно репутация, за да гласувате отрицателно за тази публикация",

View File

@@ -12,6 +12,9 @@
"invited.none": "В момента няма поканени членове",
"invited.uninvite": "Отмяна на поканата",
"invited.search": "Потърсете потребител, когото да поканите в тази група",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Плъзнете снимка, наместете я в предпочитаната позиция и натистнете <strong>Запазване</strong>",
"cover-change": "Промяна",
"cover-save": "Запазване",

View File

@@ -12,6 +12,7 @@
"delete_account": "Изтриване на акаунта",
"delete_account_confirm": "Сигурни ли сте, че искате да изтриете акаунта си? <br /><strong>Това действие е необратимо и няма да можете да възстановите нищо от данните си</strong><br /><br />Въведете потребителското си име, за да потвърдите, че искате да унищожите този акаунт.",
"delete_this_account_confirm": "Сигурни ли сте, че искате да изтриете този акаунт? <br /><strong>Това действие е необратимо и няма да можете да възстановите нищо от данните</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Цяло име",
"website": "Уеб сайт",
"location": "Местоположение",
@@ -52,6 +53,7 @@
"username_taken_workaround": "Потребителското име, което искате, е заето и затова ние го променихме малко. Вие ще се наричате <strong>%1</strong>",
"upload_picture": "Качване на снимка",
"upload_a_picture": "Качване на снимка",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Можете да качвате само PNG, JPG, или GIF файлове",
"settings": "Настройки",
"show_email": "Да се показва е-пощата ми",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "আপনি নিজের সাথে চ্যাট করতে পারবেন না!",
"chat-restricted": "এই সদস্য তার বার্তালাপ সংরক্ষিত রেখেছেন। এই সদস্য আপনাকে ফলো করার পরই কেবলমাত্র আপনি তার সাথে চ্যাট করতে পারবেন",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "সম্মাননা ব্যাবস্থা নিস্ক্রীয় রাখা হয়েছে",
"downvoting-disabled": "ঋণাত্মক ভোট নিস্ক্রীয় রাখা হয়েছে।",
"not-enough-reputation-to-downvote": "আপনার এই পোস্ট downvote করার জন্য পর্যাপ্ত সম্মাননা নেই",

View File

@@ -12,6 +12,9 @@
"invited.none": "There are no invited members at this time",
"invited.uninvite": "Rescind Invitation",
"invited.search": "Search for a user to invite to this group",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
"cover-change": "Change",
"cover-save": "Save",

View File

@@ -12,6 +12,7 @@
"delete_account": "একাউন্ট মুছে ফেলুন",
"delete_account_confirm": "আপনি কি নিশ্চিত যে আপনি আপনার একাউন্ট মুছে ফেলতে চান ? <br /><strong>এই কাজটির ফলে আপনার কোন তথ্য পুনরূদ্ধার করা সম্ভব নয় </strong><br /><br /> নিশ্চিত করতে আপনার ইউজারনেম প্রবেশ করান। ",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "পুর্ণ নাম",
"website": "ওয়েবসাইট",
"location": "স্থান",
@@ -52,6 +53,7 @@
"username_taken_workaround": "আপনি যে ইউজারনেম চাচ্ছিলেন সেটি ইতিমধ্যে নেয়া হয়ে গেছে, কাজেই আমরা এটি কিঞ্চিং পরিবর্তন করেছি। আপনি এখন <strong>%1</strong> হিসেবে পরিচিত",
"upload_picture": "ছবি আপলোড করুন",
"upload_a_picture": "ছবি (একটি) আপলোড করুন",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "আপনি কেবলমাত্র PNG, JPG অথবা GIF ফাইল আপলোড করতে পারবেন",
"settings": "সেটিংস",
"show_email": "আমার ইমেইল দেখাও",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Nemůžete chatovat sami se sebou!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Systém reputací je zakázán.",
"downvoting-disabled": "Downvoting is disabled",
"not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post",

View File

@@ -12,6 +12,9 @@
"invited.none": "There are no invited members at this time",
"invited.uninvite": "Rescind Invitation",
"invited.search": "Search for a user to invite to this group",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
"cover-change": "Change",
"cover-save": "Save",

View File

@@ -12,6 +12,7 @@
"delete_account": "Vymazat účet",
"delete_account_confirm": "Opravdu chcete smazat váš účet? <br /><strong>Tato akce je nevratná a nebude možné obnovit žádné vaše data.</strong><br /><br /> Pro potvrzení smazání účtu napište vaše uživatelské jméno.",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Jméno a příjmení",
"website": "Webové stránky",
"location": "Poloha",
@@ -52,6 +53,7 @@
"username_taken_workaround": "The username you requested was already taken, so we have altered it slightly. You are now known as <strong>%1</strong>",
"upload_picture": "Nahrát obrázek",
"upload_a_picture": "Nahrát obrázek",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Nahrávat lze pouze soubory PNG, JPG a GIF",
"settings": "Nastavení",
"show_email": "Zobrazovat můj email v profilu",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Du kan ikke chatte med dig selv!",
"chat-restricted": "Denne bruger har spæret adgangen til chat beskeder. Brugeren må følge dig før du kan chatte med ham/hende",
"too-many-messages": "Du har sendt for mange beskeder, vent venligt lidt.",
"invalid-chat-message": "Ugyldig chat besked",
"chat-message-too-long": "Chat beskeden er for lang",
"reputation-system-disabled": "Vurderingssystem er slået fra.",
"downvoting-disabled": "Nedvurdering er slået fra",
"not-enough-reputation-to-downvote": "Du har ikke nok omdømme til at nedstemme dette indlæg",

View File

@@ -68,7 +68,7 @@
"recentposts": "Seneste indlæg",
"recentips": "Seneste loggede ind IPer",
"away": "Væk",
"dnd": "Do not disturb",
"dnd": "Vil ikke forstyres",
"invisible": "Usynlig",
"offline": "Offline",
"email": "Email",

View File

@@ -12,6 +12,9 @@
"invited.none": "Der er ingen inviterede medlemmer i øjeblikket",
"invited.uninvite": "Tilbagetræk invitation",
"invited.search": "Søg efter en bruger at invitere til denne gruppe",
"invited.notification_title": "Du er blevet inviteret til at blive medlem af <strong>%1</strong>",
"request.notification_title": "Gruppe medlemskab anmodning fra <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> har anmodet om at blive medlem af <strong>%2</strong>",
"cover-instructions": "Træk og slip et billede, træk til positionen og tryk <strong>Gem</strong>",
"cover-change": "Ændre",
"cover-save": "Gem",

View File

@@ -12,6 +12,7 @@
"delete_account": "Slet konto",
"delete_account_confirm": "Er du sikker på du vil slette din konto? <br /><strong>Dette kan ikke fortrydes, og du vil ikke være istand til at genoprette dine data</strong><br /><br />Indtast dit brugernavn for at bekræfte at du ønsker at slette din konto.",
"delete_this_account_confirm": "Er du sikker på at du vil slette denne konto?<br /><strong>Denne handling kan ikke fortrydes, og du kan ikke genskabe nogen data.</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Fulde navn",
"website": "Webside",
"location": "Lokation",
@@ -52,6 +53,7 @@
"username_taken_workaround": "Det valgte brugernavn er allerede taget, så vi har ændret det en smule. Du hedder nu <strong>%1</strong>",
"upload_picture": "Upload billede",
"upload_a_picture": "Upload et billede",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Du kan kun uploade PNG, JPG eller GIF billeder",
"settings": "Indstillinger",
"show_email": "Vis min emailaddresse",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Du kannst nicht mit dir selber chatten!",
"chat-restricted": "Dieser Benutzer hat seine Chatfunktion eingeschränkt. Du kannst nur mit diesem Benutzer chatten, wenn er dir folgt.",
"too-many-messages": "Du hast zu viele Nachrichten versandt, bitte warte eine Weile.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Das Reputationssystem ist deaktiviert.",
"downvoting-disabled": "Downvotes sind deaktiviert.",
"not-enough-reputation-to-downvote": "Deine Reputation ist zu niedrig, um diesen Beitrag negativ zu bewerten.",

View File

@@ -68,7 +68,7 @@
"recentposts": "Aktuelle Beiträge",
"recentips": "Zuletzt eingeloggte IPs",
"away": "Abwesend",
"dnd": "Do not disturb",
"dnd": "Nicht stören",
"invisible": "Unsichtbar",
"offline": "Offline",
"email": "E-Mail",

View File

@@ -12,6 +12,9 @@
"invited.none": "Es sind zur Zeit keine weiteren Mitglieder eingeladen",
"invited.uninvite": "Einladung zurücknehmen",
"invited.search": "Suche nach einem Benutzer um ihn in diese Gruppe aufzunehmen",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Foto auf eine Position bewegen, und <strong>Speichern</strong> drücken",
"cover-change": "Ändern",
"cover-save": "Speichern",

View File

@@ -5,7 +5,7 @@
"chat.no_active": "Du hast keine aktiven Chats.",
"chat.user_typing": "%1 tippt gerade ...",
"chat.user_has_messaged_you": "%1 hat dir geschrieben.",
"chat.see_all": "See all chats",
"chat.see_all": "Alle Diagramme anzeigen",
"chat.no-messages": "Bitte wähle einen Empfänger, um den jeweiligen Nachrichtenverlauf anzuzeigen.",
"chat.recent-chats": "Aktuelle Chats",
"chat.contacts": "Kontakte",
@@ -24,6 +24,6 @@
"composer.submit_and_lock": "Einreichen und Sperren",
"composer.toggle_dropdown": "Menu aus-/einblenden",
"bootbox.ok": "OK",
"bootbox.cancel": "Cancel",
"bootbox.confirm": "Confirm"
"bootbox.cancel": "Abbrechen",
"bootbox.confirm": "Bestätigen"
}

View File

@@ -1,7 +1,7 @@
{
"title": "Benachrichtigungen",
"no_notifs": "Du hast keine neuen Benachrichtigungen",
"see_all": "See all notifications",
"see_all": "Alle Benachrichtigungen anzeigen",
"mark_all_read": "Alle Benachrichtigungen als gelesen markieren",
"back_to_home": "Zurück zu %1",
"outgoing_link": "Externer Link",

View File

@@ -1,37 +1,37 @@
{
"home": "Home",
"unread": "Ungelesene Themen",
"popular-day": "Popular topics today",
"popular-week": "Popular topics this week",
"popular-month": "Popular topics this month",
"popular-alltime": "All time popular topics",
"popular-day": "Beliebte Themen von Heute",
"popular-week": "Beliebte Themen dieser Woche",
"popular-month": "Beliebte Themen dieses Monats",
"popular-alltime": "Beliebteste Themen",
"recent": "Neueste Themen",
"users/online": "Online Users",
"users/latest": "Latest Users",
"users/sort-posts": "Users with the most posts",
"users/sort-reputation": "Users with the most reputation",
"users/map": "User Map",
"users/search": "User Search",
"users/online": "Benutzer online",
"users/latest": "Neuste Benutzer",
"users/sort-posts": "Benutzer mit den meisten Beiträgen",
"users/sort-reputation": "Benutzer mit der besten Reputation",
"users/map": "Benutzer Karte",
"users/search": "Benutzer Suche",
"notifications": "Benachrichtigungen",
"tags": "Markierungen",
"tag": "Themen markiert unter \"%1\"",
"register": "Register an account",
"login": "Login to your account",
"reset": "Reset your account password",
"categories": "Categories",
"groups": "Groups",
"group": "%1 group",
"register": "Einen Benutzer erstellen",
"login": "Einloggen",
"reset": "Passwort zurücksetzen",
"categories": "Kategorien",
"groups": "Gruppen",
"group": "%1's Gruppen",
"chats": "Chats",
"chat": "Chatting with %1",
"account/edit": "Editing \"%1\"",
"account/following": "People %1 follows",
"account/followers": "People who follow %1",
"account/posts": "Posts made by %1",
"account/topics": "Topics created by %1",
"account/groups": "%1's Groups",
"account/favourites": "%1's Favourite Posts",
"account/settings": "User Settings",
"account/watched": "Topics watched by %1",
"chat": "Chatte mit %1",
"account/edit": "Bearbeite %1",
"account/following": "Nutzer, die %1 folgt",
"account/followers": "Nutzer, die %1 folgen",
"account/posts": "Beiträge von %1",
"account/topics": "Themen verfasst von %1",
"account/groups": "%1's Gruppen",
"account/favourites": "Von %1 favorisierte Beiträge",
"account/settings": "Benutzer-Einstellungen",
"account/watched": "Themen angeschaut von %1",
"maintenance.text": "%1 befindet sich derzeit in der Wartung. Bitte komm später wieder.",
"maintenance.messageIntro": "Zusätzlich hat der Administrator diese Nachricht hinterlassen:"
}

View File

@@ -15,5 +15,5 @@
"there-are-new-topics-and-new-posts": "Es gibt %1 neue Themen und %2 neue Beiträge.",
"there-is-a-new-post": "Es gibt einen neuen Beitrag.",
"there-are-new-posts": "Es gibt %1 neue Beiträge.",
"click-here-to-reload": "Hier klicken um zu aktualisieren."
"click-here-to-reload": "Zum aktualisieren hier klicken."
}

View File

@@ -12,6 +12,7 @@
"delete_account": "Konto löschen",
"delete_account_confirm": "Bist du sicher, dass du dein Konto löschen möchtest? <br /><strong>Diese Aktion kann nicht rückgängig gemacht werden und du kannst deine Daten nicht wiederherstellen</strong><br /><br />Gebe deinen Benutzernamen ein, um zu bestätigen, dass du dieses Konto löschen möchtest.",
"delete_this_account_confirm": "Bist du sicher, dass du dieses Konto löschen möchtest?<br /><strong>Diese Aktion kann nicht rückgangig gemacht werden und du kannst die Daten nicht wiederherstellen</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Kompletter Name",
"website": "Homepage",
"location": "Wohnort",
@@ -52,6 +53,7 @@
"username_taken_workaround": "Der gewünschte Benutzername ist bereits vergeben, deshalb haben wir ihn ein wenig verändert. Du bist jetzt unter dem Namen <strong>%1</strong> bekannt.",
"upload_picture": "Bild hochladen",
"upload_a_picture": "Ein Bild hochladen",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Sie dürfen nur Dateien vom Typ PNG, JPG oder GIF hochladen",
"settings": "Einstellungen",
"show_email": "Zeige meine E-Mail Adresse an.",
@@ -65,7 +67,7 @@
"digest_monthly": "Monatlich",
"send_chat_notifications": "Sende eine E-Mail, wenn eine neue Chat-Nachricht eingeht und ich nicht online bin",
"send_post_notifications": "Sende eine E-Mail wenn auf Themen die ich abonniert habe geantwortet wird",
"settings-require-reload": "Manche Einstellungsänderung benötigt ein aktualisieren. Drücke hier um die Seite neu zu laden.",
"settings-require-reload": "Einige Einstellungsänderung benötigen eine Aktualisierung. Hier klicken um die Seite neu zu laden.",
"has_no_follower": "Dieser User hat noch keine Follower.",
"follows_no_one": "Dieser User folgt noch niemandem :(",
"has_no_posts": "Dieser Nutzer hat noch nichts gepostet.",
@@ -85,5 +87,5 @@
"follow_topics_you_create": "Themen folgen, die du erstellst",
"grouptitle": "Wähle den anzuzeigenden Gruppen Titel aus",
"no-group-title": "Kein Gruppentitel",
"select-skin": "Select a Skin"
"select-skin": "Einen Skin auswählen"
}

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Δεν μπορείς να συνομιλήσεις με τον εαυτό σου!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Το σύστημα φήμης έχει απενεργοποιηθεί.",
"downvoting-disabled": "Η καταψήφιση έχει απενεργοποιηθεί",
"not-enough-reputation-to-downvote": "Δεν έχεις αρκετή φήμη για να καταψηφίσεις αυτή την δημοσίευση",

View File

@@ -12,6 +12,9 @@
"invited.none": "There are no invited members at this time",
"invited.uninvite": "Rescind Invitation",
"invited.search": "Search for a user to invite to this group",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
"cover-change": "Change",
"cover-save": "Save",

View File

@@ -12,6 +12,7 @@
"delete_account": "Διαγραφή Λογαριασμού",
"delete_account_confirm": "Είσαι σίγουρος/η πως θέλεις να διαγράψεις τον λογαριασμό σου; <br /><strong>Αυτή η ενέργεια δεν μπορεί να αναιρεθεί και δεν θα μπορέσεις να επανακτήσεις τα δεδομένα σου</strong><br /><br />Γράψε το όνομα χρήστη σου για να επιβεβαιώσεις πως θέλεις να καταστρέψεις αυτόν τον λογαριασμό.",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Πλήρες Όνομα",
"website": "Ιστοσελίδα",
"location": "Τοποθεσία",
@@ -52,6 +53,7 @@
"username_taken_workaround": "Το όνομα χρήστη που ζήτησες χρησιμοποιείται ήδη, οπότε το τροποποιήσαμε λίγο. Πλέον είσαι γνωστός/ή ώς <strong>%1</strong>",
"upload_picture": "Ανέβασμα φωτογραφίας",
"upload_a_picture": "Ανέβασε μια φωτογραφία",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Μπορείς να ανεβάσεις αρχεία τύπου PNG, JPG ή GIF μόνο",
"settings": "Επιλογές",
"show_email": "Εμφάνιση του email μου",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "You can't chat with yourself!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Reputation system is disabled.",
"downvoting-disabled": "Downvoting is disabled",
"not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post",

View File

@@ -12,6 +12,9 @@
"invited.none": "There are no invited members at this time",
"invited.uninvite": "Rescind Invitation",
"invited.search": "Search for a user to invite to this group",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
"cover-change": "Change",
"cover-save": "Save",

View File

@@ -12,6 +12,7 @@
"delete_account": "Delete Account",
"delete_account_confirm": "Are you sure you want to delete your account? <br /><strong>This action is irreversible and you will not be able to recover any of your data</strong><br /><br />Enter your username to confirm that you wish to destroy this account.",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Full Name",
"website": "Website",
"location": "Location",
@@ -52,6 +53,7 @@
"username_taken_workaround": "The username you requested was already taken, so we have altered it slightly. You are now known as <strong>%1</strong>",
"upload_picture": "Upload picture",
"upload_a_picture": "Upload a picture",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "You may only upload PNG, JPG, or GIF files",
"settings": "Settings",
"show_email": "Show My Email",

View File

@@ -100,6 +100,8 @@
"cant-chat-with-yourself": "You can't chat with yourself!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Reputation system is disabled.",
"downvoting-disabled": "Downvoting is disabled",

View File

@@ -14,6 +14,10 @@
"invited.none": "There are no invited members at this time",
"invited.uninvite": "Rescind Invitation",
"invited.search": "Search for a user to invite to this group",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
"cover-change": "Change",

View File

@@ -13,6 +13,7 @@
"delete_account": "Delete Account",
"delete_account_confirm": "Are you sure you want to delete your account? <br /><strong>This action is irreversible and you will not be able to recover any of your data</strong><br /><br />Enter your username to confirm that you wish to destroy this account.",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Full Name",
"website": "Website",
@@ -56,6 +57,7 @@
"upload_picture": "Upload picture",
"upload_a_picture": "Upload a picture",
"remove_uploaded_picture" : "Remove Uploaded Picture",
"image_spec": "You may only upload PNG, JPG, or GIF files",
"settings": "Settings",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "You can't chat with yourself!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Reputation system is disabled.",
"downvoting-disabled": "Downvoting is disabled",
"not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post",

View File

@@ -12,6 +12,9 @@
"invited.none": "There are no invited members at this time",
"invited.uninvite": "Rescind Invitation",
"invited.search": "Search for a user to invite to this group",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
"cover-change": "Change",
"cover-save": "Save",

View File

@@ -29,7 +29,7 @@
"account/posts": "Posts made by %1",
"account/topics": "Topics created by %1",
"account/groups": "%1's Groups",
"account/favourites": "%1's Favourite Posts",
"account/favourites": "%1's Favorite Posts",
"account/settings": "User Settings",
"account/watched": "Topics watched by %1",
"maintenance.text": "%1 is currently undergoing maintenance. Please come back another time.",

View File

@@ -12,6 +12,7 @@
"delete_account": "Delete Account",
"delete_account_confirm": "Are you sure you want to delete your account? <br /><strong>This action is irreversible and you will not be able to recover any of your data</strong><br /><br />Enter your username to confirm that you wish to destroy this account.",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Full Name",
"website": "Website",
"location": "Location",
@@ -52,6 +53,7 @@
"username_taken_workaround": "The username you requested was already taken, so we have altered it slightly. You are now known as <strong>%1</strong>",
"upload_picture": "Upload picture",
"upload_a_picture": "Upload a picture",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "You may only upload PNG, JPG, or GIF files",
"settings": "Settings",
"show_email": "Show My Email",
@@ -80,7 +82,7 @@
"browsing": "Browsing Settings",
"open_links_in_new_tab": "Open outgoing links in new tab",
"enable_topic_searching": "Enable In-Topic Searching",
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behaviour and allow you to search through the entire topic, instead of what is only shown on screen",
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behavior and allow you to search through the entire topic, instead of what is only shown on screen",
"follow_topics_you_reply_to": "Follow topics that you reply to",
"follow_topics_you_create": "Follow topics you create",
"grouptitle": "Select the group title you would like to display",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "¡No puedes conversar contigo mismo!",
"chat-restricted": "Este usuario tiene restringidos los mensajes de chat. Los usuarios deben seguirte antes de que pueda charlar con ellos",
"too-many-messages": "Has enviado demasiados mensajes, por favor espera un poco.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "El sistema de reputación está deshabilitado.",
"downvoting-disabled": "La votación negativa está deshabilitada.",
"not-enough-reputation-to-downvote": "No tienes suficiente reputación para votar negativo este post",

View File

@@ -33,7 +33,7 @@
"header.notifications": "Notificaciones",
"header.search": "Buscar",
"header.profile": "Perfil",
"header.navigation": "Navigation",
"header.navigation": "Navegación",
"notifications.loading": "Cargando notificaciones",
"chats.loading": "Cargando chats",
"motd.welcome": "Bienvenido a NodeBB, la plataforma de debate del el futuro.",
@@ -68,7 +68,7 @@
"recentposts": "Publicaciones recientes",
"recentips": "IP's conectadas recientemente",
"away": "Ausente",
"dnd": "Do not disturb",
"dnd": "No molestar",
"invisible": "Invisible",
"offline": "Desconectado",
"email": "Email",

View File

@@ -12,6 +12,9 @@
"invited.none": "No hay miembros invitados en este momento",
"invited.uninvite": "Cancelar invitación",
"invited.search": "Buscar un usuario para invitar a este grupo",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Arrastra y suelta una foto, arrastra a la posición, y pulsa <strong> Guardar </strong>",
"cover-change": "Cambiar",
"cover-save": "Guardar",

View File

@@ -5,7 +5,7 @@
"chat.no_active": "No tiene conversaciones activas.",
"chat.user_typing": "%1 está escribiendo...",
"chat.user_has_messaged_you": "%1 te ha enviado un mensaje.",
"chat.see_all": "See all chats",
"chat.see_all": "Ver todos los chats",
"chat.no-messages": "Por favor, selecciona un contacto para ver el historial de mensajes",
"chat.recent-chats": "Chats recientes",
"chat.contacts": "Contactos",
@@ -24,6 +24,6 @@
"composer.submit_and_lock": "Enviar y Bloquear",
"composer.toggle_dropdown": "Alternar desplegable",
"bootbox.ok": "OK",
"bootbox.cancel": "Cancel",
"bootbox.confirm": "Confirm"
"bootbox.cancel": "Cancelar",
"bootbox.confirm": "Confirmar"
}

View File

@@ -1,7 +1,7 @@
{
"title": "Notificaciones",
"no_notifs": "No tienes nuevas notificaciones",
"see_all": "See all notifications",
"see_all": "Ver todas las notificaciones",
"mark_all_read": "Marcar todas las notificaciones como leídas",
"back_to_home": "Volver a %1",
"outgoing_link": "Enlace externo",

View File

@@ -1,37 +1,37 @@
{
"home": "Inicio",
"unread": "Temas no leídos",
"popular-day": "Popular topics today",
"popular-week": "Popular topics this week",
"popular-month": "Popular topics this month",
"popular-alltime": "All time popular topics",
"popular-day": "Temas populares hoy",
"popular-week": "Temas populares de la semana",
"popular-month": "Temas populares del mes",
"popular-alltime": "Temas populares de siempre",
"recent": "Temas recientes",
"users/online": "Online Users",
"users/latest": "Latest Users",
"users/sort-posts": "Users with the most posts",
"users/sort-reputation": "Users with the most reputation",
"users/map": "User Map",
"users/search": "User Search",
"users/online": "Conectados",
"users/latest": "Últimos usuarios",
"users/sort-posts": "Top por mensajes",
"users/sort-reputation": "Más reputados",
"users/map": "Actividad",
"users/search": "Buscar",
"notifications": "Notificaciones",
"tags": "Etiquetas",
"tag": "Temas etiquetados en \"%1\"",
"register": "Register an account",
"login": "Login to your account",
"reset": "Reset your account password",
"categories": "Categories",
"groups": "Groups",
"group": "%1 group",
"register": "Registrar una cuenta",
"login": "Acceder a tu cuenta",
"reset": "Restablecer contraseña",
"categories": "Categorías",
"groups": "Grupos",
"group": "Grupo de %1",
"chats": "Chats",
"chat": "Chatting with %1",
"account/edit": "Editing \"%1\"",
"account/following": "People %1 follows",
"account/followers": "People who follow %1",
"account/posts": "Posts made by %1",
"account/topics": "Topics created by %1",
"account/groups": "%1's Groups",
"account/favourites": "%1's Favourite Posts",
"account/settings": "User Settings",
"account/watched": "Topics watched by %1",
"chat": "Chateando con %1",
"account/edit": "Editando \"%1\"",
"account/following": "Gente que sigue %1",
"account/followers": "Seguidores de %1",
"account/posts": "Publicados por %1",
"account/topics": "Temas creados por %1",
"account/groups": "Grupos de %1",
"account/favourites": "Favoritos de %1",
"account/settings": "Preferencias",
"account/watched": "Temas seguidos por %1",
"maintenance.text": "%1 está en mantenimiento actualmente. Por favor vuelva en otro momento.",
"maintenance.messageIntro": "Adicionalmente, la administración ha dejado este mensaje:"
}

View File

@@ -12,6 +12,7 @@
"delete_account": "Eliminar cuenta",
"delete_account_confirm": "¿Estás seguro de que quieres eliminar tu cuenta? <br /><strong>Esta acción es irreversible y no podrás recuperar ninguno de tus datos.</strong><br /><br />Introduce tu nombre de usuario para confirmar la eliminación de la cuenta.",
"delete_this_account_confirm": "Esta seguro de eliminar este usuario? <br /><strong>Esta acción de irreversible y no podrás recuperar ningún dato</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Nombre completo",
"website": "Sitio web",
"location": "Ubicación",
@@ -52,6 +53,7 @@
"username_taken_workaround": "El nombre de usuario que has solicitada ya está siendo usado, por tanto lo hemos alterado ligeramente. Ahora eres conocido como <strong>%1</strong>.",
"upload_picture": "Subir foto",
"upload_a_picture": "Subir una foto",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Sólo puedes subir imágenes en formato PNG, JPG o GIF.",
"settings": "Opciones",
"show_email": "Mostrar mi correo electrónico",
@@ -85,5 +87,5 @@
"follow_topics_you_create": "Seguir publicaciones que creas",
"grouptitle": "Selecciona el título del grupo que deseas visualizar",
"no-group-title": "Sin título de grupo",
"select-skin": "Select a Skin"
"select-skin": "Seleccionar una plantilla"
}

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Sa ei saa endaga vestelda!",
"chat-restricted": "Kasutaja on piiranud sõnumite saatmist. Privaatsõnumi saatmiseks peab kasutaja sind jälgima",
"too-many-messages": "Oled saatnud liiga palju sõnumeid, oota natukene.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Reputatsiooni süsteem ei ole aktiveeritud",
"downvoting-disabled": "Negatiivsete häälte andmine ei ole võimaldatud",
"not-enough-reputation-to-downvote": "Sul ei ole piisavalt reputatsiooni, et anda negatiivset hinnangut sellele postitusele.",

View File

@@ -12,6 +12,9 @@
"invited.none": "Hetkel ei ole kutsutud kasutajaid",
"invited.uninvite": "Tühistage kutse",
"invited.search": "Otsige kasutajat, keda kutsuda antud gruppi.",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Lohista kaanepilt siia ning vajuta <strong>salvesta</strong>",
"cover-change": "Muuda",
"cover-save": "Salvesta",

View File

@@ -12,6 +12,7 @@
"delete_account": "Kustuta kasutaja",
"delete_account_confirm": "Oled kindel, et soovid oma kasutaja kustutada?<br /><strong>Pärast kustutamist pole võimalik andmeid ja kasutajat taastada.</strong><br /><br />Sisesta oma kasutajanimi, et kinnitada kasutaja kustutamine.",
"delete_this_account_confirm": "Olete kindel, et soovide seda kasutajat kustutada? <br /><strong>Pärast seda pole võimalik kasutajat ja andmeid taastada</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Täisnimi",
"website": "Koduleht",
"location": "Asukoht",
@@ -52,6 +53,7 @@
"username_taken_workaround": "Kasutajanimi mida soovisid, ei olnud saadaval, seeg muutsime seda natukene. Sinu uus kasutajanimi on nüüd: <strong>%1</strong>",
"upload_picture": "Laadi pilt",
"upload_a_picture": "Lae pilt üles",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Failid peavad olema PNG, JPG või GIF vormingus.",
"settings": "Seaded",
"show_email": "Näita minu emaili",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "شما نمی‌توانید با خودتان گفتگو کنید!",
"chat-restricted": "این کاربر پیام های گفتگوی خود را محدود کرده است . آنها بایدشما را دنبال کنند تا اینکه شما بتوانید به آنها پیامی بفرستید",
"too-many-messages": "شما پیامهای خیلی زیادی فرستاده اید، لطفا مدتی صبر نمایید",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "سیستم اعتبار غیر فعال شده است",
"downvoting-disabled": "رای منفی غیر فعال شده است",
"not-enough-reputation-to-downvote": "شما اعتبار کافی برای دادن رای منفی به این دیدگاه را ندارید.",

View File

@@ -12,6 +12,9 @@
"invited.none": "در حال حاضر هیچ کسی دعوت نشده است",
"invited.uninvite": "لغو دعوت",
"invited.search": "جستجو به دنبال کاربرانی به جهت دعوت به این گروه",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "عکس را با کلیک موس بگیرید و بکشید به محل و رها کنید، سپس <strong>ذخیره</strong> را بزنید",
"cover-change": "تغییر",
"cover-save": "ذخیره",

View File

@@ -12,6 +12,7 @@
"delete_account": "حذف حساب کاربری",
"delete_account_confirm": "آیا مطمئنید که میخواهید حساب کاربری خود را حذف کنید؟ <br /><strong>این عمل غیر قابل بازگشت است و شما قادر نخواهید بود هیچ کدام از اطلاعات خود را بازیابی کنید./strong><br /><br /> برای تایید حذف این حساب کاربری، نام کاربری خود را وارد کنید",
"delete_this_account_confirm": " آیا مطمئنید که میخواهید این حساب کاربری را حذف کنید؟<br/><strong>این عمل غیر قابل بازگشت است و شما قادر نخواهید بود هیچ کدام از اطلاعات را بازیابی کنید.</strong><br/><br/> ",
"account-deleted": "Account deleted",
"fullname": "نام و نام خانوادگی",
"website": "تارنما",
"location": "محل سکونت",
@@ -52,6 +53,7 @@
"username_taken_workaround": "نام کاربری درخواستی شما در حال حاضر گرفته شده است، بنابراین ما آن را کمی تغییر داده‌ایم. شما هم‌اکنون با نام <strong>%1</strong شناخته می‌شوید.",
"upload_picture": "بارگذاری تصویر",
"upload_a_picture": "یک تصویر بارگذاری کنید",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "شما تنها می‌توانید پرونده‌های PNG، JPG و GIF بار بگذارید.",
"settings": "تنظیمات",
"show_email": "نمایش رایانامه‌ام",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Et voi keskustella itsesi kanssa!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Reputation system is disabled.",
"downvoting-disabled": "Downvoting is disabled",
"not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post",

View File

@@ -12,6 +12,9 @@
"invited.none": "There are no invited members at this time",
"invited.uninvite": "Rescind Invitation",
"invited.search": "Search for a user to invite to this group",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Vedä ja pudota kuva, raahaa oikeaan kohtaan ja paina <strong>Tallenna</strong>",
"cover-change": "Change",
"cover-save": "Tallenna",

View File

@@ -12,6 +12,7 @@
"delete_account": "Poista käyttäjätili",
"delete_account_confirm": "Oletko täysin varma, että haluat poistaa käyttäjätilisi? <br /><strong>Tätä toimintoa ei voi kumonta eikä poistettua dataa voida palauttaa</strong><br /><br />Syötä käyttäjänimesi vahvistaaksesi, että haluat poistaa tilisi.",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Koko nimi",
"website": "Kotisivu",
"location": "Sijainti",
@@ -52,6 +53,7 @@
"username_taken_workaround": "Pyytämäsi käyttäjänimi oli jo varattu, joten muutimme sitä hieman. Käyttäjänimesi on siis nyt <strong>%1</strong>",
"upload_picture": "Lataa kuva",
"upload_a_picture": "Lataa kuva",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Voit ladata vain PNG-, JPG- tai GIF-tiedostoja",
"settings": "Asetukset",
"show_email": "Näytä sähköpostiosoitteeni",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Vous ne pouvez chatter avec vous même !",
"chat-restricted": "Cet utilisateur a restreint les ses messages de chat. Il doit d'abord vous suivre avant de pouvoir discuter avec lui.",
"too-many-messages": "Vous avez envoyé trop de messages, veuillez patienter un instant.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Le système de réputation est désactivé",
"downvoting-disabled": "Les votes négatifs ne sont pas autorisés",
"not-enough-reputation-to-downvote": "Vous n'avez pas une réputation assez élevée pour noter négativement ce message",

View File

@@ -12,6 +12,9 @@
"invited.none": "Il n'y a aucun membre invité pour le moment",
"invited.uninvite": "Résilier l'invitation",
"invited.search": "Chercher un utilisateur a inviter dans ce groupe",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Glissez-déposez une image, ajustez la position, et cliquez sur <strong>Enregistrer</strong>",
"cover-change": "Modifier",
"cover-save": "Enregistrer",

View File

@@ -21,7 +21,7 @@
"composer.user_said_in": "%1 a dit dans %2 :",
"composer.user_said": "%1 a dit :",
"composer.discard": "Êtes-vous sûr de bien vouloir supprimer ce message ?",
"composer.submit_and_lock": "Soumettre et Verrouiller",
"composer.submit_and_lock": "Envoyer et verrouiller",
"composer.toggle_dropdown": "Afficher/masquer le menu",
"bootbox.ok": "OK",
"bootbox.cancel": "Annuler",

View File

@@ -12,6 +12,7 @@
"delete_account": "Supprimer le compte",
"delete_account_confirm": "Êtes-vous sûr de vouloir supprimer votre compte? <br /> <strong> Cette action est irréversible et vous ne serez pas en mesure de récupérer vos données</ strong> <br /> <br /> Entrez votre nom d'utilisateur pour confirmer que vous souhaitez détruire votre compte.",
"delete_this_account_confirm": "Etes-vous sûr de vouloir supprimer ce compte? <br /><strong>Cette action est irréversible et vous ne pourrez récupérer aucune donnée.",
"account-deleted": "Account deleted",
"fullname": "Nom",
"website": "Site web",
"location": "Emplacement",
@@ -52,6 +53,7 @@
"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 l'image",
"upload_a_picture": "Envoyer une image",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Vous ne pouvez envoyer que des fichiers PNG, JPG ou GIF",
"settings": "Paramètres",
"show_email": "Afficher mon email",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "לא ניתן לעשות צ'אט עם עצמך!",
"chat-restricted": "משתמש זה חסם את הודעות הצ'אט שלו ממשתמשים זרים. המשתמש חייב לעקוב אחריך לפני שתוכל לשוחח איתו בצ'אט",
"too-many-messages": "שלחת יותר מדי הודעות, אנא המתן לזמן מה.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "מערכת המוניטין לא פעילה.",
"downvoting-disabled": "היכולת להצביע נגד לא פעילה",
"not-enough-reputation-to-downvote": "אין לך מספיק מוניטין כדי להוריד את הדירוג של פוסט זה",

View File

@@ -12,6 +12,9 @@
"invited.none": "There are no invited members at this time",
"invited.uninvite": "Rescind Invitation",
"invited.search": "Search for a user to invite to this group",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "גרור תמונה, הזז למיקום הרצוי ואז לחץ על <strong>שמור</strong>",
"cover-change": "שנה",
"cover-save": "שמור",

View File

@@ -12,6 +12,7 @@
"delete_account": "מחק חשבון",
"delete_account_confirm": "אתה בטוח שאתה רוצה למחוק את חשבונך? <br/><strong>פעולה זו לא ניתנת לשחזור ולא תוכל לגשת למידע שלך</strong><br /><br />הזן את שם המשתמש שלך על מנת לאשר שברצונך למחוק את חשבונך.",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "שם מלא",
"website": "אתר",
"location": "מיקום",
@@ -52,6 +53,7 @@
"username_taken_workaround": "שם המשתמש שבחרת כבר תפוס, אז שינינו אותו מעט. שם המשתמש שלך כעת הוא <strong>%1</strong>",
"upload_picture": "העלה תמונה",
"upload_a_picture": "העלה תמונה",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "ניתן להעלות תמונות בפורמט PNG, JPG או GIF בלבד",
"settings": "הגדרות",
"show_email": "פרסם את כתובת האימייל שלי",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Nem cseveghetsz magaddal!",
"chat-restricted": "Ez a felhasználó korlátozta a chat beállításait. Csak akkor cseveghetsz vele, miután felvett a követettek közé téged",
"too-many-messages": "Túl sok üzenetet küldtél, kérlek várj egy picit.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Hírnév funkció kikapcsolva.",
"downvoting-disabled": "Leszavazás funkció kikapcsolva",
"not-enough-reputation-to-downvote": "Nem rendelkezel elég Hírnév ponttal, hogy leszavazhasd ezt a hozzászólást",

View File

@@ -12,6 +12,9 @@
"invited.none": "There are no invited members at this time",
"invited.uninvite": "Rescind Invitation",
"invited.search": "Search for a user to invite to this group",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
"cover-change": "Change",
"cover-save": "Save",

View File

@@ -12,6 +12,7 @@
"delete_account": "Fiók törlése",
"delete_account_confirm": "Biztosan törölni szeretnéd a fiókodat?<br /><strong>Ez a művelet nem visszafordítható, így ha folytatod, nem tudod majd visszaállítani az adataidat.</strong><br /><br />Amennyiben továbbra is törölni szeretnéd a fiókodat, add meg a felhasználónevedet!",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Teljes Név",
"website": "Weboldal",
"location": "Lakhely",
@@ -52,6 +53,7 @@
"username_taken_workaround": "A kívánt felhasználónév már foglalt, így változtatnunk kellett rajta egy kicsit. Mostantól <strong>%1</strong> nicknév alatt vagy ismert.",
"upload_picture": "Kép feltöltése",
"upload_a_picture": "Egy kép feltöltése",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Csak PNG, JPG vagy GIF kiterjesztésű fájlokat tölthetsz fel",
"settings": "Beállítások",
"show_email": "E-mail címem mutatása",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Kamu tidak dapat chat dengan akun sendiri",
"chat-restricted": "Pengguna ini telah membatasi percakapa mereka. Mereka harus mengikutimu sebelum kamu dapat melakukan percakapan dengan mereka ",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Sistem reputasi ditiadakan.",
"downvoting-disabled": "Downvoting ditiadakan",
"not-enough-reputation-to-downvote": "Tidak cukup reputation untuk downvote post ini",

View File

@@ -12,6 +12,9 @@
"invited.none": "There are no invited members at this time",
"invited.uninvite": "Rescind Invitation",
"invited.search": "Search for a user to invite to this group",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
"cover-change": "Change",
"cover-save": "Save",

View File

@@ -12,6 +12,7 @@
"delete_account": "Hapus Akun",
"delete_account_confirm": "Kamu yakin ingin menghapus akunmu? <br /><strong>Tindakan ini tidak dapat dibatalkan dan kamu tidak dapat mengembalikan seluruh data mu</strong><br /><br />Masukkan nama pengguna kamu untuk memastikan jika kamu benar-benar ingin menghapus akun ini.",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Nama Lengkap",
"website": "Website",
"location": "Lokasi",
@@ -52,6 +53,7 @@
"username_taken_workaround": "Nama pengguna yang kamu inginkan telah diambil, jadi kami merubahnya sedikit. Kamu saat ini dikenal sebagai <strong>%1</strong>",
"upload_picture": "Unggah gambar/foto",
"upload_a_picture": "Unggah sebuah gambar/foto",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Kamu hanya diijinkan mengunggah berkas dengan format PNG, JPG, atau GIF",
"settings": "Pengaturan",
"show_email": "Tampilkan Email Saya",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Non puoi chattare con te stesso!",
"chat-restricted": "Questo utente ha ristretto i suoi messaggi in chat alle persone che segue. Per poter chattare con te ti deve prima seguire.",
"too-many-messages": "Hai inviato troppi messaggi, aspetta un attimo.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Il sistema di reputazione è disabilitato.",
"downvoting-disabled": "Il Downvoting è disabilitato",
"not-enough-reputation-to-downvote": "Non hai i privilegi per votare negativamente questo post",

View File

@@ -33,7 +33,7 @@
"header.notifications": "Notifiche",
"header.search": "Cerca",
"header.profile": "Profilo",
"header.navigation": "Navigation",
"header.navigation": "Navigazione",
"notifications.loading": "Caricamento delle Notifiche",
"chats.loading": "Caricamento Messaggi",
"motd.welcome": "Benvenuti in NodeBB, la piattaforma di discussione del futuro.",
@@ -68,7 +68,7 @@
"recentposts": "Post Recenti",
"recentips": "Indirizzi IP Recentemente Loggati",
"away": "Non disponibile",
"dnd": "Do not disturb",
"dnd": "Non disturbare",
"invisible": "Invisibile",
"offline": "Non in linea",
"email": "Email",

View File

@@ -12,6 +12,9 @@
"invited.none": "Non ci sono inviti in sospeso",
"invited.uninvite": "Revoca invito",
"invited.search": "Ricerca un utente da invitare in questo gruppo",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Drag and Drop una fotografia, spostarla ad una posizione, e premere <strong>Salva</strong>",
"cover-change": "Cambia",
"cover-save": "Salva",

View File

@@ -5,7 +5,7 @@
"chat.no_active": "Non hai chat attive.",
"chat.user_typing": "%1 sta scrivendo...",
"chat.user_has_messaged_you": "%1 ti ha scritto.",
"chat.see_all": "See all chats",
"chat.see_all": "Vedi tutte le chat",
"chat.no-messages": "Si prega di selezionare un destinatario per vedere la cronologia dei messaggi",
"chat.recent-chats": "Chat Recenti",
"chat.contacts": "Contatti",
@@ -24,6 +24,6 @@
"composer.submit_and_lock": "Invia e Blocca",
"composer.toggle_dropdown": "Mostra/Nascondi menu a discesa",
"bootbox.ok": "OK",
"bootbox.cancel": "Cancel",
"bootbox.confirm": "Confirm"
"bootbox.cancel": "Annulla",
"bootbox.confirm": "Conferma"
}

View File

@@ -1,7 +1,7 @@
{
"title": "Notifiche",
"no_notifs": "Non hai nuove notifiche",
"see_all": "See all notifications",
"see_all": "Vedi tutte le notifiche",
"mark_all_read": "Segna tutte le notifiche come già lette",
"back_to_home": "Indietro a %1",
"outgoing_link": "Link in uscita",

View File

@@ -1,37 +1,37 @@
{
"home": "Home",
"unread": "Discussioni non lette",
"popular-day": "Popular topics today",
"popular-week": "Popular topics this week",
"popular-month": "Popular topics this month",
"popular-alltime": "All time popular topics",
"popular-day": "Discussioni popolari oggi",
"popular-week": "Discussioni popolari questa settimana",
"popular-month": "Discussioni popolari questo mese",
"popular-alltime": "Discussioni più popolari di sempre",
"recent": "Discussioni Recenti",
"users/online": "Online Users",
"users/latest": "Latest Users",
"users/sort-posts": "Users with the most posts",
"users/sort-reputation": "Users with the most reputation",
"users/map": "User Map",
"users/search": "User Search",
"users/online": "Utenti Online",
"users/latest": "Ultimi Utenti",
"users/sort-posts": "Utenti maggiori contributori",
"users/sort-reputation": "Utenti con la reputazione più alta",
"users/map": "Mappa Utenti",
"users/search": "Ricerca Utenti",
"notifications": "Notifiche",
"tags": "Tags",
"tag": "Discussioni taggate \"%1\"",
"register": "Register an account",
"login": "Login to your account",
"reset": "Reset your account password",
"categories": "Categories",
"groups": "Groups",
"group": "%1 group",
"chats": "Chats",
"chat": "Chatting with %1",
"account/edit": "Editing \"%1\"",
"account/following": "People %1 follows",
"account/followers": "People who follow %1",
"account/posts": "Posts made by %1",
"account/topics": "Topics created by %1",
"account/groups": "%1's Groups",
"account/favourites": "%1's Favourite Posts",
"account/settings": "User Settings",
"account/watched": "Topics watched by %1",
"register": "Registrati",
"login": "Autenticati",
"reset": "Resetta password",
"categories": "Categorie",
"groups": "Gruppi",
"group": "Gruppo %1",
"chats": "Chat",
"chat": "In chat con %1",
"account/edit": "Modificando \"%1\"",
"account/following": "Persone seguite da %1",
"account/followers": "Persone che seguono %1",
"account/posts": "Post creati da %1",
"account/topics": "Discussioni create da %1",
"account/groups": "Gruppi di %1",
"account/favourites": "Post Favoriti da %1",
"account/settings": "Impostazioni Utente",
"account/watched": "Discussioni osservate da %1",
"maintenance.text": "%1 è attualmente in manutenzione. Per favore ritorna più tardi.",
"maintenance.messageIntro": "Inoltre, l'amministratore ha lasciato questo messaggio:"
}

View File

@@ -12,6 +12,7 @@
"delete_account": "Elimina Account",
"delete_account_confirm": "Sei sicuro di voler cancellare il tuo account? <br /><strong>Questa azione è irreversibile e non potrai recuperare nessun dato</strong><br /><br />Inserisci il tuo username per confermare che vuoi eliminare questo account.",
"delete_this_account_confirm": "Sei sicuro di voler cancellare questo account? <br /><strong>Questa azione è irreversibile e non potrai recuperare nessun dato</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Nome e Cognome",
"website": "Sito Internet",
"location": "Località",
@@ -52,6 +53,7 @@
"username_taken_workaround": "Il nome utente che hai richiesto era già stato utilizzato, quindi lo abbiamo modificato leggermente. Ora il tuo è <strong>%1</strong>",
"upload_picture": "Carica foto",
"upload_a_picture": "Carica una foto",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Puoi caricare solo file PNG, JPG o GIF",
"settings": "Impostazioni",
"show_email": "Mostra la mia Email",
@@ -85,5 +87,5 @@
"follow_topics_you_create": "Segui le discussioni che hai iniziato",
"grouptitle": "Seleziona il titolo del gruppo che vorresti vedere",
"no-group-title": "Nessun titolo al gruppo",
"select-skin": "Select a Skin"
"select-skin": "Seleziona uno Skin"
}

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "自分にチャットすることはできません!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Reputation system is disabled.",
"downvoting-disabled": "Downvoting is disabled",
"not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post",

View File

@@ -12,6 +12,9 @@
"invited.none": "There are no invited members at this time",
"invited.uninvite": "Rescind Invitation",
"invited.search": "Search for a user to invite to this group",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
"cover-change": "Change",
"cover-save": "Save",

View File

@@ -12,6 +12,7 @@
"delete_account": "Delete Account",
"delete_account_confirm": "Are you sure you want to delete your account? <br /><strong>This action is irreversible and you will not be able to recover any of your data</strong><br /><br />Enter your username to confirm that you wish to destroy this account.",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "フルネーム",
"website": "ウェブサイト",
"location": "ロケーション",
@@ -52,6 +53,7 @@
"username_taken_workaround": "このユーザー名はすでに使用されています。いまのユーザー名は <strong>%1</strong> です。",
"upload_picture": "画像をアップロード",
"upload_a_picture": "画像をアップロード",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "PNG、JPGかGIFフォーマットの画像をアップロードしてください。",
"settings": "設定",
"show_email": "メールアドレスを表示",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "자신과는 채팅할 수 없습니다.",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
"too-many-messages": "You have sent too many messages, please wait awhile.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "인기도 시스템을 사용하지 않습니다.",
"downvoting-disabled": "비추천 기능을 사용하지 않습니다.",
"not-enough-reputation-to-downvote": "인기도가 낮아 이 게시물에 반대할 수 없습니다.",

View File

@@ -12,6 +12,9 @@
"invited.none": "There are no invited members at this time",
"invited.uninvite": "Rescind Invitation",
"invited.search": "Search for a user to invite to this group",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
"cover-change": "Change",
"cover-save": "Save",

View File

@@ -12,6 +12,7 @@
"delete_account": "계정 삭제",
"delete_account_confirm": "정말 계정을 삭제하시겠습니까? <br /><strong>이 동작은 되돌릴 수 없으며 삭제된 데이터도 복구할 수 없습니다.</strong><br /><br />계정 삭제를 원하면 사용자 이름을 입력하세요.",
"delete_this_account_confirm": "Are you sure you want to delete this account? <br /><strong>This action is irreversible and you will not be able to recover any data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "이름",
"website": "웹 사이트",
"location": "거주지",
@@ -52,6 +53,7 @@
"username_taken_workaround": "새 사용자 이름이 이미 존재하여 <strong>%1</strong>로 저장되었습니다.",
"upload_picture": "사진 업로드",
"upload_a_picture": "사진 업로드",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "PNG, JPG, GIF 파일만 업로드할 수 있습니다.",
"settings": "설정",
"show_email": "이메일 공개",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Jūs negalite susirašinėti su savimi!",
"chat-restricted": "Šis vartotojas apribojo savo žinutes. Jie turi sekti jus kad jūs galėtumėte pradėti bendrauti su jais",
"too-many-messages": "Išsiuntėte per daug pranešimų, kurį laiką prašome palaukti.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Reputacijos sistema išjungta.",
"downvoting-disabled": "Downvoting yra išjungtas",
"not-enough-reputation-to-downvote": "Jūs neturite pakankamai reputacijos balsuoti prieš šį pranešimą",

View File

@@ -12,6 +12,9 @@
"invited.none": "Nėra pakviestu narių šiuo momentu",
"invited.uninvite": "Atšaukti pakvietimą",
"invited.search": "Ieškoti nario kad pakviesti į šią grupę",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Vilkite čia nuotrauką, perkelkite į reikalingą poziciją ir spauskite <strong>Save</strong>",
"cover-change": "Keisti",
"cover-save": "Saugoti",

View File

@@ -12,6 +12,7 @@
"delete_account": "Ištrinti paskyrą",
"delete_account_confirm": "Ar tikrai norite ištrinti savo paskyrą? <br /> <strong> Šis veiksmas yra negrįžtamas, ir jūs negalėsite susigrąžinti jokių duomenų </ strong> <br /> <br /> Įveskite savo vardą, kad patvirtintumėte, jog norite panaikinti šią paskyrą.",
"delete_this_account_confirm": "Ar jūs tikrai norite ištrint šią paskyrą? <br /><strong>Šis veiksmas nebesugražinamas ir jūs nebegalėsite atgauti jokių duomenų</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Vardas ir pavardė",
"website": "Tinklalapis",
"location": "Vieta",
@@ -52,6 +53,7 @@
"username_taken_workaround": "Jūsų norimas vartotojo vardas jau užimtas, todėl mes jį šiek tiek pakeitėme. Dabar jūs esate žinomas kaip <strong>%1</strong>",
"upload_picture": "Įkelti paveikslėlį",
"upload_a_picture": "Įkelti paveikslėlį",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Galite įkelti tik PNG, JPG arba GIF failus",
"settings": "Nustatymai",
"show_email": "Rodyti mano el. paštą viešai",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Anda tidak boleh sembang dengan diri sendiri!",
"chat-restricted": "Pengguna ini menyekat ruangan sembangnya. Dia hendaklah mengikut anda sebelum kalian dapat bersembang",
"too-many-messages": "Anda menghantar terlalu banyak pesanan, sila tunggu seketika.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Sistem reputasi dilumpuhkan.",
"downvoting-disabled": "Undi turun dilumpuhkan",
"not-enough-reputation-to-downvote": "Anda tidak mempunyai reputasi mencukupi untuk mengundi turun kiriman ini",

View File

@@ -12,6 +12,9 @@
"invited.none": "Tiada ahli yang dijemput buat masa ini",
"invited.uninvite": "Batalkan Jemputan",
"invited.search": "Cari pengguna untuk dijemput ke kumpulan ini",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Seret dan lepas gambar, lepas ke posisi, dan tekan <strong>Simpan</strong>",
"cover-change": "Ubah",
"cover-save": "Simpan",

View File

@@ -12,6 +12,7 @@
"delete_account": "Padam Akaun",
"delete_account_confirm": "Anda yakin untuk padam akaun anda? <br /><strong>Pebuatan ini tidak boleh diundur dan anda tidak boleh memulihkan sebarang data anda.</strong><br /><br />Masukkan nama pengguna anda untuk memastikan anda benar-benar ingin memadam akaun ini.",
"delete_this_account_confirm": "Anda yakin untuk padam akaum ini? <br /><strong>Pebuatan ini tidak boleh diundur dan anda tidak boleh memulihkan sebarang data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Nama penuh",
"website": "Laman Web",
"location": "Lokasi",
@@ -52,6 +53,7 @@
"username_taken_workaround": "Nama pengguna yang anda minta telah digunakan oleh orang lain, jadi kami telah mengubahsuaikannya sedikit. Anda kini dikenali sebagai <strong>%1</strong>",
"upload_picture": "Muatnaik gambar",
"upload_a_picture": "Muatnaik sekeping gambar",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Anda hanya boleh memuatnaikkan fail PNG, JPG atau GIF",
"settings": "Tetapan",
"show_email": "Tunjukkan emel saya",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Du kan ikke chatte med deg selv!",
"chat-restricted": "Denne brukeren har begrenset sine chat-meldinger. De må følge deg før du kan chatte med dem",
"too-many-messages": "Du har sendt for mange meldinger, vennligst vent en stund.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Ryktesystem er deaktivert.",
"downvoting-disabled": "Nedstemming av deaktivert",
"not-enough-reputation-to-downvote": "Du har ikke nok rykte til å nedstemme det innlegget",

View File

@@ -12,6 +12,9 @@
"invited.none": "Det er ingen inviterte medlemmer på dette tidspunktet",
"invited.uninvite": "Trekk tilbake invitasjon",
"invited.search": "Søk etter en bruker å invitere til denne gruppen",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Dra og slipp et bilde, dra til posisjon, og trykk <strong>Lagre</strong>",
"cover-change": "Endre",
"cover-save": "Lagre",

View File

@@ -12,6 +12,7 @@
"delete_account": "Slett konto",
"delete_account_confirm": "Er du sikker på at du vil slette kontoen din?<br /><strong>Dette kan ikke reverseres, og du vil ikke kunne hente tilbake dine data.</strong><br /><br />Skriv inn ditt brukernavn for å bekrefte at du vil tilintetgjøre denne kontoen.",
"delete_this_account_confirm": "Er du sikker på at du vil slette denne kontoen? <br /><strong>Denne handlingen kan ikke reverseres og du vil ikke kunne gjenopprette noe data</strong><br /><br />",
"account-deleted": "Account deleted",
"fullname": "Fullt navn",
"website": "Nettsted",
"location": "Plassering",
@@ -52,6 +53,7 @@
"username_taken_workaround": "Brukernavnet du ønsket er opptatt, så vi har endret ditt litt. Du er nå kjent som <strong>%1</string>",
"upload_picture": "Last opp bilde",
"upload_a_picture": "Last opp et bilde",
"remove_uploaded_picture": "Remove Uploaded Picture",
"image_spec": "Du kan bare laste opp PNG, JPG eller GIF-filer",
"settings": "Innstillinger",
"show_email": "Vis min e-post",

View File

@@ -77,6 +77,8 @@
"cant-chat-with-yourself": "Het is niet mogelijk met jezelf een chatgesprek te houden.",
"chat-restricted": "Deze gebruiker heeft beperkingen aan de chatfunctie opgelegd waardoor deze eerst iemand moet volgen voordat deze persoon een nieuwe chat mag initiëren.",
"too-many-messages": "Er zijn in korte tijd teveel berichten verzonden, een moment geduld.",
"invalid-chat-message": "Invalid chat message",
"chat-message-too-long": "Chat message is too long",
"reputation-system-disabled": "Reputatie systeem is uitgeschakeld.",
"downvoting-disabled": "Negatief stemmen staat uitgeschakeld.",
"not-enough-reputation-to-downvote": "Deze gebruikersaccount beschikt over onvoldoende reputatie om een negatieve stem uit te mogen brengen.",

View File

@@ -33,7 +33,7 @@
"header.notifications": "Notificaties",
"header.search": "Zoeken",
"header.profile": "Profiel",
"header.navigation": "Navigation",
"header.navigation": "Navigatie",
"notifications.loading": "Notificaties laden",
"chats.loading": "Chats laden",
"motd.welcome": "Welkom bij NodeBB, het discussie platform van de toekomst.",
@@ -68,7 +68,7 @@
"recentposts": "Recente berichten",
"recentips": "IP-adressen van recente gebruikers",
"away": "Afwezig",
"dnd": "Do not disturb",
"dnd": "Niet Storen",
"invisible": "Onzichtbaar",
"offline": "Offline",
"email": "E-mailadres",

View File

@@ -12,6 +12,9 @@
"invited.none": "Er zijn geen uitgenodigde leden op het moment",
"invited.uninvite": "Uitnodiging intrekken",
"invited.search": "Zoek naar een gebruiker om uit te nodigen voor deze groep",
"invited.notification_title": "You have been invited to join <strong>%1</strong>",
"request.notification_title": "Group Membership Request from <strong>%1</strong>",
"request.notification_text": "<strong>%1</strong> has requested to become a member of <strong>%2</strong>",
"cover-instructions": "Sleep een afbeelding, sleep om te positioneren en klik tenslotte op <strong>Opslaan</strong>",
"cover-change": "Bewerken",
"cover-save": "Opslaan",

View File

@@ -5,7 +5,7 @@
"chat.no_active": "Er zijn geen actieve chats.",
"chat.user_typing": "%1 is aan het typen ...",
"chat.user_has_messaged_you": "%1 heeft een bericht gestuurd",
"chat.see_all": "See all chats",
"chat.see_all": "Laat alle chats zien",
"chat.no-messages": "Selecteer een ontvanger om de chatgeschiedenis in te zien",
"chat.recent-chats": "Recent gevoerde gesprekken",
"chat.contacts": "Contacten",
@@ -24,6 +24,6 @@
"composer.submit_and_lock": "Plaats een bericht en vergrendel direct het onderwerp",
"composer.toggle_dropdown": "Keuzelijst schakelen",
"bootbox.ok": "OK",
"bootbox.cancel": "Cancel",
"bootbox.confirm": "Confirm"
"bootbox.cancel": "Anuleren",
"bootbox.confirm": "Bevestig"
}

View File

@@ -1,7 +1,7 @@
{
"title": "Notificaties",
"no_notifs": "Je hebt geen nieuwe notificaties",
"see_all": "See all notifications",
"see_all": "Laat alle notificaties zien",
"mark_all_read": "Markeer alles als gelezen",
"back_to_home": "Terug naar %1",
"outgoing_link": "Uitgaande Link",

View File

@@ -1,37 +1,37 @@
{
"home": "Home",
"unread": "Ongelezen onderwerpen",
"popular-day": "Popular topics today",
"popular-week": "Popular topics this week",
"popular-month": "Popular topics this month",
"popular-alltime": "All time popular topics",
"popular-day": "De populaire onderwerpen van vandaag",
"popular-week": "De populaire onderwerpen van deze week",
"popular-month": "De populaire onderwerpen van deze maand",
"popular-alltime": "De populaire onderwerpen",
"recent": "Recente onderwerpen",
"users/online": "Online Users",
"users/latest": "Latest Users",
"users/sort-posts": "Users with the most posts",
"users/sort-reputation": "Users with the most reputation",
"users/map": "User Map",
"users/search": "User Search",
"users/online": "Online Gebruikers",
"users/latest": "Meest recente gebruikers",
"users/sort-posts": "Gebruikers met de meeste berichten",
"users/sort-reputation": "Gebruikers met de meeste reputatie",
"users/map": "Gebruikersmap",
"users/search": "Zoek Gebruiker",
"notifications": "Notificaties",
"tags": "Tags",
"tag": "Onderwerpen geplaatst onder \"%1\"",
"register": "Register an account",
"login": "Login to your account",
"reset": "Reset your account password",
"categories": "Categories",
"groups": "Groups",
"group": "%1 group",
"register": "Registeer een gebruikersaccount",
"login": "Login met u gebruikersaccount in",
"reset": "Gebruikerswachtwoord opnieuw instellen",
"categories": "Categorieën",
"groups": "Groepen",
"group": "%1's groep",
"chats": "Chats",
"chat": "Chatting with %1",
"account/edit": "Editing \"%1\"",
"account/following": "People %1 follows",
"account/followers": "People who follow %1",
"account/posts": "Posts made by %1",
"account/topics": "Topics created by %1",
"account/groups": "%1's Groups",
"account/favourites": "%1's Favourite Posts",
"account/settings": "User Settings",
"account/watched": "Topics watched by %1",
"chat": "Chatten met %1",
"account/edit": "\"%1\" aanpassen",
"account/following": "Door %1 gevolgd",
"account/followers": "Die %1 volgen",
"account/posts": "Berichten geplaatst door %1",
"account/topics": "Onderwerpen begonnen door %1",
"account/groups": "%1's groepen",
"account/favourites": "Favoriete berichten van %1",
"account/settings": "Gebruikersinstellingen",
"account/watched": "Berichten die door %1 bekeken worden",
"maintenance.text": "%1 is momenteel in onderhoud. Excuses voor het ongemak en probeer het later nog eens",
"maintenance.messageIntro": "Daarnaast heeft de beheerder het volgende bericht achtergelaten:"
}

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