Merge remote-tracking branch 'upstream/master'
commit
d9ca95a5a3
@ -0,0 +1,76 @@
|
||||
"use strict";
|
||||
|
||||
var nconf = require('nconf'),
|
||||
fs = require('fs'),
|
||||
pidFilePath = __dirname + '/pidfile',
|
||||
start = function() {
|
||||
var fork = require('child_process').fork,
|
||||
nbb_start = function() {
|
||||
nbb = fork('./app', process.argv.slice(2), {
|
||||
env: {
|
||||
'NODE_ENV': process.env.NODE_ENV
|
||||
}
|
||||
});
|
||||
|
||||
nbb.on('message', function(cmd) {
|
||||
if (cmd === 'nodebb:restart') {
|
||||
nbb_restart();
|
||||
}
|
||||
});
|
||||
},
|
||||
nbb_stop = function() {
|
||||
nbb.kill();
|
||||
if (fs.existsSync(pidFilePath)) {
|
||||
var pid = parseInt(fs.readFileSync(pidFilePath, { encoding: 'utf-8' }), 10);
|
||||
if (process.pid === pid) {
|
||||
fs.unlinkSync(pidFilePath);
|
||||
}
|
||||
}
|
||||
},
|
||||
nbb_restart = function() {
|
||||
nbb.on('exit', function() {
|
||||
nbb_start();
|
||||
});
|
||||
nbb.kill();
|
||||
};
|
||||
|
||||
process.on('SIGINT', nbb_stop);
|
||||
process.on('SIGTERM', nbb_stop);
|
||||
process.on('SIGHUP', nbb_restart);
|
||||
|
||||
nbb_start();
|
||||
},
|
||||
nbb;
|
||||
|
||||
nconf.argv();
|
||||
|
||||
// Start the daemon!
|
||||
if (nconf.get('d')) {
|
||||
// Check for a still-active NodeBB process
|
||||
if (fs.existsSync(pidFilePath)) {
|
||||
try {
|
||||
var pid = fs.readFileSync(pidFilePath, { encoding: 'utf-8' });
|
||||
process.kill(pid, 0);
|
||||
console.log('\n Error: Another NodeBB is already running!');
|
||||
process.exit();
|
||||
} catch (e) {
|
||||
fs.unlinkSync(pidFilePath);
|
||||
}
|
||||
}
|
||||
|
||||
// Initialise logging streams
|
||||
var outputStream = fs.createWriteStream(__dirname + '/logs/output.log');
|
||||
outputStream.on('open', function(fd) {
|
||||
// Daemonize
|
||||
require('daemon')({
|
||||
stdout: fd
|
||||
});
|
||||
|
||||
// Write its pid to a pidfile
|
||||
fs.writeFile(__dirname + '/pidfile', process.pid);
|
||||
|
||||
start();
|
||||
});
|
||||
} else {
|
||||
start();
|
||||
}
|
@ -0,0 +1 @@
|
||||
*.log
|
@ -1,13 +1,14 @@
|
||||
{
|
||||
"home": "Home",
|
||||
"unread": "Unread Topics",
|
||||
"popular": "Popular Topics",
|
||||
"popular": "Beliebte Themen",
|
||||
"recent": "Recent Topics",
|
||||
"users": "Registered Users",
|
||||
"notifications": "Notifications",
|
||||
"user.edit": "Editing \"%1\"",
|
||||
"user.following": "People %1 Follows",
|
||||
"user.followers": "People who Follow %1",
|
||||
"user.posts": "Posts made by %1",
|
||||
"user.favourites": "%1's Favourite Posts",
|
||||
"user.settings": "User Settings"
|
||||
}
|
@ -1,14 +1,11 @@
|
||||
{
|
||||
"new_topic_button": "Nuevo Tema",
|
||||
"no_topics": "<strong>No hay temas en esta categoría.</strong><br />Por que no te animas y publicas uno?",
|
||||
"sidebar.recent_replies": "Respuestas recientes",
|
||||
"sidebar.active_participants": "Miembros más activos",
|
||||
"sidebar.moderators": "Moderadores",
|
||||
"posts": "respuestas",
|
||||
"views": "visitas",
|
||||
"posted": "posted",
|
||||
"browsing": "viendo ahora",
|
||||
"no_replies": "Nadie ha respondido aún",
|
||||
"replied": "respondio",
|
||||
"replied": "respondió",
|
||||
"last_edited_by": "ultima edición por"
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"chat.chatting_with": "Chatear con <span id='chat-with-name'></span>",
|
||||
"chat.placeholder": "ingresa tu mensaje aqui, y presiona enter para enviar",
|
||||
"chat.placeholder": "ingresa tu mensaje aquí, y presiona Intro para enviar",
|
||||
"chat.send": "Enviar",
|
||||
"chat.no_active": "No tiene conversaciones activas."
|
||||
}
|
@ -1,13 +1,14 @@
|
||||
{
|
||||
"home": "Home",
|
||||
"unread": "Unread Topics",
|
||||
"popular": "Popular Topics",
|
||||
"recent": "Recent Topics",
|
||||
"users": "Registered Users",
|
||||
"notifications": "Notifications",
|
||||
"user.edit": "Editing \"%1\"",
|
||||
"user.following": "People %1 Follows",
|
||||
"user.followers": "People who Follow %1",
|
||||
"user.favourites": "%1's Favourite Posts",
|
||||
"user.settings": "User Settings"
|
||||
"home": "Inicio",
|
||||
"unread": "Temas No Leídos",
|
||||
"popular": "Temas Populares",
|
||||
"recent": "Temas Recientes",
|
||||
"users": "Usuarios Registrado",
|
||||
"notifications": "Notificaciones",
|
||||
"user.edit": "Editando \"%1\"",
|
||||
"user.following": "Gente que sigue %1 ",
|
||||
"user.followers": "Seguidores de %1",
|
||||
"user.posts": "Posteos de %1",
|
||||
"user.favourites": "Publicaciones favoritas de %1 ",
|
||||
"user.settings": "Preferencias del Usuario"
|
||||
}
|
@ -1,13 +1,14 @@
|
||||
{
|
||||
"reset_password": "Resetear Contraseña",
|
||||
"reset_password": "Reiniciar Contraseña",
|
||||
"update_password": "Actualizar contraseña",
|
||||
"password_changed.title": "Contraseña editada",
|
||||
"password_changed.message": "<p>La contraseña fue modificada con exito, por favor <a href=\"/login\">conectate de nuevo</a>.",
|
||||
"wrong_reset_code.title": "Código de Reseteo Incorrecto",
|
||||
"wrong_reset_code.message": "El código de reseteo ingresado no es correcto. Por favor intentalo de nuevo o <a href=\"/reset\">pide un nuevo código</a>.",
|
||||
"password_changed.message": "<p>La contraseña fue modificada con éxito, por favor <a href=\"/login\">inicia sesión de nuevo</a>.",
|
||||
"wrong_reset_code.title": "Código de reinicio Incorrecto",
|
||||
"wrong_reset_code.message": "El código de reinicio ingresado no es correcto. Por favor inténtalo de nuevo o <a href=\"/reset\">pide un nuevo código</a>.",
|
||||
"new_password": "Nueva Contraseña",
|
||||
"repeat_password": "Confirmar Contraseña",
|
||||
"enter_email": "Por favor ingresa tu <strong>email</strong> y te enviaremos un email de como resetear tu cuenta.",
|
||||
"password_reset_sent": "Resteo de contraseña enviado",
|
||||
"invalid_email": "Email Invalido o no existe!"
|
||||
"enter_email": "Por favor ingresa tu <strong>correo electrónico</strong> y te enviaremos un correo con indicaciones para inicializar tu cuenta.",
|
||||
"enter_email_address": "Enter Email Address",
|
||||
"password_reset_sent": "Reinicio de contraseña enviado",
|
||||
"invalid_email": "Correo Electrónico no válido o inexistente!"
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"title": "No leeido",
|
||||
"title": "No leído",
|
||||
"no_unread_topics": "No hay temas nuevos para leer.",
|
||||
"mark_all_read": "Marcar todo como leeido",
|
||||
"mark_all_read": "Marcar todo como leído",
|
||||
"load_more": "Cargar más"
|
||||
}
|
@ -1,9 +1,9 @@
|
||||
{
|
||||
"latest_users": "Ultimos Miembros",
|
||||
"top_posters": "Top Posteadores",
|
||||
"latest_users": "Últimos Miembros",
|
||||
"top_posters": "Top Publicadores",
|
||||
"most_reputation": "Mayor Reputación",
|
||||
"online": "Conectados",
|
||||
"search": "Buscar",
|
||||
"enter_username": "Ingresa el nombre de usuario para buscar",
|
||||
"enter_username": "Ingresa el nombre de usuario que quieres buscar",
|
||||
"load_more": "Cargar más"
|
||||
}
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"stats.online": "Online",
|
||||
"stats.users": "Käyttäjää",
|
||||
"stats.topics": "Viestiketjua",
|
||||
"stats.topics": "Aihetta",
|
||||
"stats.posts": "Viestiä",
|
||||
"success": "onnistunut"
|
||||
}
|
@ -1,56 +1,59 @@
|
||||
{
|
||||
"home": "Etusivu",
|
||||
"search": "Etsi",
|
||||
"search": "Hae",
|
||||
"buttons.close": "Sulje",
|
||||
"403.title": "Pääsy kielletty",
|
||||
"403.message": "Olet päätynyt sivulle jolle sinulla ei ole tarvittavia oikeuksia. Ehkäpä sinun tulisi <a href='/login'>kirjaudu sisään</a>?",
|
||||
"404.title": "Sivua ei löydy",
|
||||
"404.message": "Olet päätynyt sivulle jota ei ole olemassa. Palaa <a href='/'>etusivulle</a>.",
|
||||
"403.message": "Olet päätynyt sivulle, johon sinulla ei ole tarvittavia oikeuksia. Sinun pitäisi kai <a href='/login'>kirjautua sisään</a>.",
|
||||
"404.title": "Ei löydy",
|
||||
"404.message": "Olet päätynyt sivulle, jota ei ole olemassa. Palaa <a href='/'>etusivulle</a>.",
|
||||
"500.title": "Sisäinen virhe.",
|
||||
"500.message": "Oho! Jotain meni pieleen!",
|
||||
"register": "Rekisteröidy",
|
||||
"login": "Kirjaudu",
|
||||
"welcome_back": "Welcome Back ",
|
||||
"you_have_successfully_logged_in": "You have successfully logged in",
|
||||
"please_log_in": "Kirjaudu, ole hyvä",
|
||||
"posting_restriction_info": "Kirjoittaminen on tällä hetkellä rajattu vain rekisteröityneille käyttäjille. Napsauta tätä kirjautuaksesi.",
|
||||
"welcome_back": "Tervetuloa takaisin",
|
||||
"you_have_successfully_logged_in": "Olet onnistuneesti kirjautunut sisään",
|
||||
"logout": "Kirjaudu ulos",
|
||||
"logout.title": "Olet nyt kirjaunut ulos.",
|
||||
"logout.title": "Olet nyt kirjautunut ulos.",
|
||||
"logout.message": "Olet onnistuneesti kirjautunut ulos NodeBB:stä",
|
||||
"save_changes": "Tallenna muutokset",
|
||||
"close": "Sulje",
|
||||
"pagination": "Pagination",
|
||||
"header.admin": "Admin",
|
||||
"pagination": "Sivutus",
|
||||
"header.admin": "Ylläpitäjä",
|
||||
"header.recent": "Viimeisimmät",
|
||||
"header.unread": "Lukemattomat",
|
||||
"header.popular": "Popular",
|
||||
"header.popular": "Suositut",
|
||||
"header.users": "Käyttäjät",
|
||||
"header.chats": "Chats",
|
||||
"header.notifications": "Notifications",
|
||||
"header.search": "Etsi",
|
||||
"header.chats": "Keskustelut",
|
||||
"header.notifications": "Ilmoitukset",
|
||||
"header.search": "Hae",
|
||||
"header.profile": "Profiili",
|
||||
"notifications.loading": "Ladataan ilmoituksia.",
|
||||
"notifications.loading": "Ladataan ilmoituksia",
|
||||
"chats.loading": "Ladataan keskusteluja",
|
||||
"motd.welcome": "Tervetuloa NodeBB:n, tulevaisuuden keskustelualustalle.",
|
||||
"motd.welcome": "Tervetuloa NodeBB:hen, tulevaisuuden keskustelualustalle.",
|
||||
"motd.get": "Hanki NodeBB",
|
||||
"motd.fork": "Fork",
|
||||
"motd.fork": "Forkkaa",
|
||||
"motd.like": "Tykkää",
|
||||
"motd.follow": "Seuraa",
|
||||
"previouspage": "Previous Page",
|
||||
"nextpage": "Next Page",
|
||||
"alert.success": "Success",
|
||||
"alert.error": "Error",
|
||||
"alert.banned": "Banned",
|
||||
"alert.banned.message": "You are banned you will be logged out!",
|
||||
"alert.unfollow": "You are no longer following %1!",
|
||||
"alert.follow": "You are now following %1!",
|
||||
"posts": "Posts",
|
||||
"views": "Views",
|
||||
"posted": "posted",
|
||||
"in": "in",
|
||||
"recentposts": "Recent Posts",
|
||||
"previouspage": "Edellinen sivu",
|
||||
"nextpage": "Seuraava sivu",
|
||||
"alert.success": "Onnistui",
|
||||
"alert.error": "Virhe",
|
||||
"alert.banned": "Estetty",
|
||||
"alert.banned.message": "Sinut on estetty ja kirjaudut ulos!",
|
||||
"alert.unfollow": "Et seuraa enää %1!",
|
||||
"alert.follow": "Seuraat nyt %1!",
|
||||
"posts": "Viestit",
|
||||
"views": "Katsottu",
|
||||
"posted": "kirjoitettu",
|
||||
"in": "alueelle",
|
||||
"recentposts": "Viimeisimmät viestit",
|
||||
"recentips": "Recently Logged In IPs",
|
||||
"online": "Online",
|
||||
"away": "Away",
|
||||
"dnd": "Do not Disturb",
|
||||
"invisible": "Invisible",
|
||||
"away": "Poissa",
|
||||
"dnd": "Älä häiritse",
|
||||
"invisible": "Näkymätön",
|
||||
"offline": "Offline",
|
||||
"privacy": "Privacy"
|
||||
"privacy": "Yksityisyys"
|
||||
}
|
@ -1,10 +1,10 @@
|
||||
{
|
||||
"login": "Kirjaudu sisään",
|
||||
"username": "Käyttäjän nimi",
|
||||
"username": "Käyttäjänimi",
|
||||
"password": "Salasana",
|
||||
"remember_me": "Muista minut?",
|
||||
"forgot_password": "Unohtuiko salasana?",
|
||||
"alternative_logins": "Vaihtoehtoiset sisäänkirjaantumistavat",
|
||||
"failed_login_attempt": "Sisäänkirjaantuminen epäonnistui, ole hyvä ja yritä uudestaan.",
|
||||
"forgot_password": "Unohditko salasanasi?",
|
||||
"alternative_logins": "Vaihtoehtoiset kirjautumistavat",
|
||||
"failed_login_attempt": "Kirjautumisyritys epäonnistui, ole hyvä ja yritä uudestaan.",
|
||||
"login_successful": "Olet onnistuneesti kirjautunut sisään!"
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"chat.chatting_with": "Juttele <span id=\"chat-with-name\"></span> kanssa",
|
||||
"chat.placeholder": "kirjoita viestisi tähän, paina enter lähettääksesi",
|
||||
"chat.chatting_with": "Keskustele käyttäjän <span id=\"chat-with-name\"></span> kanssa",
|
||||
"chat.placeholder": "kirjoita viestisi tähän ja paina enter lähettääksesi",
|
||||
"chat.send": "Lähetä",
|
||||
"chat.no_active": "Sinulla ei ole aktiivisiä keskusteluita."
|
||||
"chat.no_active": "Sinulla ei ole aktiivisia keskusteluita."
|
||||
}
|
@ -1,13 +1,14 @@
|
||||
{
|
||||
"home": "Home",
|
||||
"unread": "Unread Topics",
|
||||
"popular": "Popular Topics",
|
||||
"recent": "Recent Topics",
|
||||
"users": "Registered Users",
|
||||
"notifications": "Notifications",
|
||||
"user.edit": "Editing \"%1\"",
|
||||
"user.following": "People %1 Follows",
|
||||
"user.followers": "People who Follow %1",
|
||||
"user.favourites": "%1's Favourite Posts",
|
||||
"user.settings": "User Settings"
|
||||
"home": "Etusivu",
|
||||
"unread": "Lukemattomat aiheet",
|
||||
"popular": "Suositut aiheet",
|
||||
"recent": "Viimeisimmät aiheet",
|
||||
"users": "Rekisteröityneet käyttäjät",
|
||||
"notifications": "Ilmoitukset",
|
||||
"user.edit": "Muokataan \"%1\"",
|
||||
"user.following": "Käyttäjät, joita %1 seuraa",
|
||||
"user.followers": "Käyttäjät, jotka seuraavat käyttäjää %1",
|
||||
"user.posts": "Posts made by %1",
|
||||
"user.favourites": "Käyttäjän %1 suosikkiviestit",
|
||||
"user.settings": "Käyttäjän asetukset"
|
||||
}
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"title": "Recent",
|
||||
"title": "Viimeisimmät",
|
||||
"day": "Päivä",
|
||||
"week": "Viikko",
|
||||
"month": "Kuukausi",
|
||||
"no_recent_topics": "There are no recent topics."
|
||||
"no_recent_topics": "Ei viimeisimpiä aiheita."
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"register": "Rekisteröidy",
|
||||
"help.email": "Oletuksena sähköposti osoitettasi ei näytetä muille .",
|
||||
"help.username_restrictions": "Yksilöllinen käyttäjänimi, pitää olla %1 - %2 merkkiä pitkä. Toiset voivat mainita sinut @<span id='yourUsername'>käyttäjänimi</span>.",
|
||||
"help.email": "Oletuksena sähköpostiosoitettasi ei näytetä muille.",
|
||||
"help.username_restrictions": "Yksilöllisen käyttäjätunnuksen pitää olla %1-%2 merkkiä pitkä. Toiset voivat mainita sinut @<span id='yourUsername'>username</span>.",
|
||||
"help.minimum_password_length": "Salasanasi pitää olla vähintään %1 merkin mittainen.",
|
||||
"email_address": "Sähköposti",
|
||||
"email_address_placeholder": "Anna sähköpostiosoitteesi",
|
||||
"username": "Käyttäjänimi",
|
||||
"username_placeholder": "Syötä käyttäjänimesi",
|
||||
"email_address": "Sähköpostiosoite",
|
||||
"email_address_placeholder": "Syötä sähköpostiosoitteesi",
|
||||
"username": "Käyttäjätunnus",
|
||||
"username_placeholder": "Syötä käyttäjätunnuksesi",
|
||||
"password": "Salasana",
|
||||
"password_placeholder": "Syötä salasanasi",
|
||||
"confirm_password": "Vahvista salasana",
|
||||
"confirm_password_placeholder": "Vahvista salasana",
|
||||
"confirm_password": "Vahvista salasanasi",
|
||||
"confirm_password_placeholder": "Vahvista salasanasi",
|
||||
"register_now_button": "Rekisteröidy nyt",
|
||||
"alternative_registration": "Vaihtoehtoiset rekisteröitymistavat",
|
||||
"terms_of_use": "Terms of Use",
|
||||
"agree_to_terms_of_use": "I agree to the Terms of Use"
|
||||
"terms_of_use": "Käyttöehdot",
|
||||
"agree_to_terms_of_use": "Hyväksyn käyttöehdot"
|
||||
}
|
@ -1,65 +1,82 @@
|
||||
{
|
||||
"topic": "Keskustelu",
|
||||
"topics": "Keskustelut",
|
||||
"no_topics_found": "Keskusteluja ei löytynyt!",
|
||||
"no_posts_found": "No posts found!",
|
||||
"topic": "Aihe",
|
||||
"topics": "Aiheet",
|
||||
"no_topics_found": "Aiheita ei löytynyt!",
|
||||
"no_posts_found": "Viestejä ei löytynyt!",
|
||||
"profile": "Profiili",
|
||||
"posted_by": "Posted by",
|
||||
"chat": "Juttele",
|
||||
"notify_me": "Ilmoita uusista viesteistä tässä keskustelussa",
|
||||
"posted_by": "Kirjoittanut",
|
||||
"chat": "Keskustele",
|
||||
"notify_me": "Ilmoita, kun tähän keskusteluun tulee uusia viestejä",
|
||||
"quote": "Lainaa",
|
||||
"reply": "Vastaa",
|
||||
"edit": "Muokkaa",
|
||||
"delete": "Poista",
|
||||
"restore": "Restore",
|
||||
"move": "Siirrä",
|
||||
"fork": "Haaroita",
|
||||
"banned": "banned",
|
||||
"link": "Linkkaa",
|
||||
"banned": "estetty",
|
||||
"link": "Linkitä",
|
||||
"share": "Jaa",
|
||||
"tools": "Työkalut",
|
||||
"flag": "Flag",
|
||||
"flag_title": "Flag this post for moderation",
|
||||
"deleted_message": "This thread has been deleted. Only users with thread management privileges can see it.",
|
||||
"watch": "Watch",
|
||||
"share_this_post": "Share this Post",
|
||||
"thread_tools.title": "Ketjun työkalut",
|
||||
"thread_tools.markAsUnreadForAll": "Merkitse luetuiksi",
|
||||
"thread_tools.pin": "Pin Topic",
|
||||
"thread_tools.unpin": "Unpin Topic",
|
||||
"thread_tools.lock": "Lock Topic",
|
||||
"thread_tools.unlock": "Unlock Topic",
|
||||
"thread_tools.move": "Move Topic",
|
||||
"thread_tools.fork": "Fork Topic",
|
||||
"thread_tools.delete": "Delete Topic",
|
||||
"thread_tools.restore": "Restore Topic",
|
||||
"flag": "Ilmianna",
|
||||
"bookmark_instructions": "Click here to return to your last position or close to discard.",
|
||||
"flag_title": "Ilmianna tämä viesti moderaattoreille",
|
||||
"deleted_message": "Tämä viestiketju on poistettu. Vain käyttäjät, joilla on viestiketjujen hallintaoikeudet, voivat nähdä sen.",
|
||||
"following_topic.title": "Seurataan aihetta",
|
||||
"following_topic.message": "Saat nyt ilmoituksen, kun joku kirjoittaa tähän aiheeseen.",
|
||||
"not_following_topic.title": "Et seuraa aihetta",
|
||||
"not_following_topic.message": "Et saa enää ilmoituksia tästä aiheesta.",
|
||||
"login_to_subscribe": "Please register or log in in order to subscribe to this topic.",
|
||||
"markAsUnreadForAll.success": "Topic marked as unread for all.",
|
||||
"watch": "Tarkkaile",
|
||||
"share_this_post": "Jaa tämä viesti",
|
||||
"thread_tools.title": "Aiheen työkalut",
|
||||
"thread_tools.markAsUnreadForAll": "Merkitse lukemattomaksi",
|
||||
"thread_tools.pin": "Kiinnitä aihe",
|
||||
"thread_tools.unpin": "Poista aiheen kiinnitys",
|
||||
"thread_tools.lock": "Lukitse aihe",
|
||||
"thread_tools.unlock": "Poista aiheen lukitus",
|
||||
"thread_tools.move": "Siirrä aihe",
|
||||
"thread_tools.fork": "Haaroita aihe",
|
||||
"thread_tools.delete": "Poista aihe",
|
||||
"thread_tools.restore": "Palauta aihe",
|
||||
"load_categories": "Ladataan aihealueita",
|
||||
"disabled_categories_note": "Käytöstä poistetut aihealueetta ovat harmaina",
|
||||
"disabled_categories_note": "Käytöstä poistetut aihealueet ovat harmaina",
|
||||
"confirm_move": "Siirrä",
|
||||
"confirm_fork": "Haaroita",
|
||||
"favourite": "Suosikki",
|
||||
"favourite": "Lisää suosikiksi",
|
||||
"favourites": "Suosikit",
|
||||
"favourites.not_logged_in.title": "Ei kirjaantuneena sisään",
|
||||
"favourites.not_logged_in.message": "Kirjaudu sisään jotta voit lisätä tämän viestin suosikkeihisi.",
|
||||
"favourites.has_no_favourites": "Sinulla ei ole yhtään suosikkiviestiä.",
|
||||
"vote.not_logged_in.title": "Not Logged In",
|
||||
"vote.not_logged_in.message": "Please log in in order to vote",
|
||||
"vote.cant_vote_self.title": "Invalid Vote",
|
||||
"vote.cant_vote_self.message": "You cannot vote for your own post",
|
||||
"favourites.not_logged_in.title": "Et ole kirjautunut",
|
||||
"favourites.not_logged_in.message": "Kirjaudu sisään, jotta voit lisätä tämän viestin suosikkeihisi",
|
||||
"favourites.has_no_favourites": "Sinulla ei ole yhtään suosikkiviestiä. Lisää joitakin viestejä suosikeiksi nähdäksesi ne täällä!",
|
||||
"vote.not_logged_in.title": "Et ole kirjautunut",
|
||||
"vote.not_logged_in.message": "Kirjaudu sisään äänestääksesi",
|
||||
"vote.cant_vote_self.title": "Virheellinen ääni",
|
||||
"vote.cant_vote_self.message": "Et voi äänestää omaa viestiäsi",
|
||||
"loading_more_posts": "Ladataan lisää viestejä",
|
||||
"move_topic": "Siirrä keskustelu",
|
||||
"move_topic": "Siirrä aihe",
|
||||
"move_post": "Siirrä viesti",
|
||||
"fork_topic": "Haaroita keskustelu",
|
||||
"topic_will_be_moved_to": "Tämä keskustelu siirretään aihealueelle ",
|
||||
"fork_topic_instruction": "Klikkaa viestejä jotka haluat haaroittaa",
|
||||
"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_success": "Keskustelu haaroitettu onnistuneesti!",
|
||||
"reputation": "Maine",
|
||||
"posts": "Viestejä",
|
||||
"composer.title_placeholder": "Enter your topic title here...",
|
||||
"composer.write": "Write",
|
||||
"composer.preview": "Preview",
|
||||
"composer.discard": "Discard",
|
||||
"composer.submit": "Submit",
|
||||
"composer.replying_to": "Replying to",
|
||||
"composer.new_topic": "New Topic"
|
||||
"composer.title_placeholder": "Syötä aiheesi otsikko tähän...",
|
||||
"composer.write": "Kirjoita",
|
||||
"composer.preview": "Esikatsele",
|
||||
"composer.help": "Help",
|
||||
"composer.discard": "Hylkää",
|
||||
"composer.submit": "Lähetä",
|
||||
"composer.replying_to": "Vastataan aiheeseen",
|
||||
"composer.new_topic": "Uusi aihe",
|
||||
"composer.uploading": "uploading...",
|
||||
"composer.thumb_url_label": "Paste a topic thumbnail URL",
|
||||
"composer.thumb_title": "Add a thumbnail to this topic",
|
||||
"composer.thumb_url_placeholder": "http://example.com/thumb.png",
|
||||
"composer.thumb_file_label": "Or upload a file",
|
||||
"composer.thumb_remove": "Clear fields",
|
||||
"composer.drag_and_drop_images": "Vedä ja pudota kuvat tähän",
|
||||
"composer.upload_instructions": "Lataa kuvia vetämällä & pudottamalla ne."
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"title": "Unread",
|
||||
"no_unread_topics": "Ei lukemattomia keskusteluja.",
|
||||
"title": "Lukematon",
|
||||
"no_unread_topics": "Ei lukemattomia aiheita.",
|
||||
"mark_all_read": "Merkitse kaikki luetuiksi",
|
||||
"load_more": "Lataa lisää"
|
||||
}
|
@ -1,47 +1,47 @@
|
||||
{
|
||||
"banned": "Porttikiellossa",
|
||||
"banned": "Bannattu",
|
||||
"offline": "Offline",
|
||||
"username": "Käyttäjän nimi",
|
||||
"email": "Sähköposti",
|
||||
"fullname": "Kokonimi",
|
||||
"fullname": "Koko nimi",
|
||||
"website": "Kotisivu",
|
||||
"location": "Sijainti",
|
||||
"age": "Ikä",
|
||||
"joined": "Liittynyt",
|
||||
"lastonline": "Viimeksi online",
|
||||
"profile": "Profile",
|
||||
"profile_views": "Profiilin katselukerrat",
|
||||
"profile": "Profiili",
|
||||
"profile_views": "Profiilia katsottu",
|
||||
"reputation": "Maine",
|
||||
"posts": "Viestit",
|
||||
"favourites": "Favourites",
|
||||
"favourites": "Suosikit",
|
||||
"followers": "Seuraajat",
|
||||
"following": "Seuraa",
|
||||
"following": "Seuratut",
|
||||
"signature": "Allekirjoitus",
|
||||
"gravatar": "Gravatar",
|
||||
"birthday": "Syntymäpäivä",
|
||||
"chat": "Chat",
|
||||
"follow": "Follow",
|
||||
"unfollow": "Unfollow",
|
||||
"change_picture": "Vaihda kuvaa",
|
||||
"chat": "Keskustele",
|
||||
"follow": "Seuraa",
|
||||
"unfollow": "Älä seuraa",
|
||||
"change_picture": "Vaihda kuva",
|
||||
"edit": "Muokkaa",
|
||||
"uploaded_picture": "Siirretty kuva",
|
||||
"upload_new_picture": "Siirrä uusi kuva",
|
||||
"current_password": "Current Password",
|
||||
"change_password": "Vaihda salasanaa",
|
||||
"confirm_password": "Vahvista salasanaa",
|
||||
"uploaded_picture": "Ladattu kuva",
|
||||
"upload_new_picture": "Lataa uusi kuva",
|
||||
"current_password": "Nykyinen salasana",
|
||||
"change_password": "Vaihda salasana",
|
||||
"confirm_password": "Vahvista salasana",
|
||||
"password": "Salasana",
|
||||
"upload_picture": "Siirrä kuva",
|
||||
"upload_a_picture": "Siirrä kuva",
|
||||
"image_spec": "You may only upload PNG, JPG, or GIF files",
|
||||
"upload_picture": "Lataa kuva",
|
||||
"upload_a_picture": "Lataa kuva",
|
||||
"image_spec": "Voit ladata vain PNG-, JPG- tai GIF-tiedostoja",
|
||||
"max": "max.",
|
||||
"settings": "Settings",
|
||||
"settings": "Asetukset",
|
||||
"show_email": "Näytä sähköpostiosoitteeni",
|
||||
"has_no_follower": "Tällä käyttäjällä ei ole yhtään seuraaja :(",
|
||||
"has_no_follower": "Kukaan ei seuraa tätä käyttäjää :(",
|
||||
"follows_no_one": "Tämä käyttäjä ei seuraa ketään :(",
|
||||
"has_no_posts": "This user didn't post anything yet.",
|
||||
"has_no_posts": "Tämä käyttäjä ei ole kirjoittanut vielä mitään.",
|
||||
"email_hidden": "Sähköposti piilotettu",
|
||||
"hidden": "piilotettu",
|
||||
"paginate_description": "Paginate topics and posts instead of using infinite scroll.",
|
||||
"topics_per_page": "Topics per Page",
|
||||
"posts_per_page": "Posts per Page"
|
||||
"paginate_description": "Sivuta aiheet ja viestit loputtoman vierittämisen sijaan.",
|
||||
"topics_per_page": "Aihetta per sivu",
|
||||
"posts_per_page": "Viestiä per sivu"
|
||||
}
|
@ -1,9 +1,9 @@
|
||||
{
|
||||
"latest_users": "Viimeisimmät Käyttäjät",
|
||||
"latest_users": "Viimeisimmät käyttäjät",
|
||||
"top_posters": "Aktiivisimmat viestittelijät",
|
||||
"most_reputation": "Eniten mainetta",
|
||||
"online": "Online",
|
||||
"search": "Etsi",
|
||||
"enter_username": "Syötä käyttäjänimi etsiäksesi",
|
||||
"search": "Hae",
|
||||
"enter_username": "Syötä käyttäjätunnus hakeaksesi",
|
||||
"load_more": "Lataa lisää"
|
||||
}
|
@ -1,13 +1,14 @@
|
||||
{
|
||||
"home": "Accueil",
|
||||
"unread": "Sujets non lus",
|
||||
"popular": "Popular Topics",
|
||||
"popular": "Sujets Populaires",
|
||||
"recent": "Sujets Récents",
|
||||
"users": "Utilisateurs enregistrés",
|
||||
"notifications": "Notifications",
|
||||
"user.edit": "Edite \"%1\"",
|
||||
"user.following": "Personnes que %1 suit",
|
||||
"user.followers": "Personnes qui suivent %1",
|
||||
"user.posts": "Message écrit par %1",
|
||||
"user.favourites": "Messages favoris de %1",
|
||||
"user.settings": "Préférences Utilisateur"
|
||||
}
|
@ -1,14 +1,11 @@
|
||||
{
|
||||
"new_topic_button": "Nuova Discussione",
|
||||
"new_topic_button": "Nuovo Argomento",
|
||||
"no_topics": "<strong>Non ci sono discussioni in questa categoria.</strong><br />Perché non ne inizi una?",
|
||||
"sidebar.recent_replies": "Risposte Recenti",
|
||||
"sidebar.active_participants": "Partecipanti Attivi",
|
||||
"sidebar.moderators": "Moderatori",
|
||||
"posts": "post",
|
||||
"views": "visualizzazioni",
|
||||
"posted": "inserito",
|
||||
"browsing": "navigazione",
|
||||
"no_replies": "Non ha ancora risposto nessuno",
|
||||
"posted": "postato",
|
||||
"browsing": "visualizzando",
|
||||
"no_replies": "Nessuno ha risposto",
|
||||
"replied": "risposto",
|
||||
"last_edited_by": "ultima modifica di"
|
||||
}
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"stats.online": "Online",
|
||||
"stats.users": "Utenti",
|
||||
"stats.topics": "Discussioni",
|
||||
"stats.topics": "Argomenti",
|
||||
"stats.posts": "Post",
|
||||
"success": "successo"
|
||||
}
|
@ -1,10 +1,10 @@
|
||||
{
|
||||
"login": "Login",
|
||||
"login": "Accedi",
|
||||
"username": "Nome utente",
|
||||
"password": "Password",
|
||||
"remember_me": "Memorizzami?",
|
||||
"forgot_password": "Password dimenticata?",
|
||||
"alternative_logins": "Login Alternativi",
|
||||
"failed_login_attempt": "Tentativo di login fallito; prova ancora.",
|
||||
"login_successful": "Login avvenuto con successo!"
|
||||
"alternative_logins": "Accessi Alternativi",
|
||||
"failed_login_attempt": "Tentativo di accesso fallito, prova ancora.",
|
||||
"login_successful": "Sei entrato con successo!"
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"chat.chatting_with": "Chatta con <span id=\"chat-with-name\"></span>",
|
||||
"chat.placeholder": "scrivi un messaggio qui e premi Invio",
|
||||
"chat.placeholder": "scrivi un messaggio qui, poi premi Invio",
|
||||
"chat.send": "Invia",
|
||||
"chat.no_active": "Non hai le chat attive."
|
||||
"chat.no_active": "Non hai discussioni attive."
|
||||
}
|
@ -1,10 +1,10 @@
|
||||
{
|
||||
"title": "Notifiche",
|
||||
"no_notifs": "You have no new notifications",
|
||||
"see_all": "See all Notifications",
|
||||
"no_notifs": "Non hai nuove notifiche",
|
||||
"see_all": "Vedi tutte le Notifiche",
|
||||
"back_to_home": "Torna alla pagina iniziale",
|
||||
"outgoing_link": "Link in uscita",
|
||||
"outgoing_link_message": "Ci stai abbandonando",
|
||||
"outgoing_link_message": "Stai lasciando",
|
||||
"continue_to": "Continua verso",
|
||||
"return_to": "Ritorna a "
|
||||
}
|
@ -1,13 +1,14 @@
|
||||
{
|
||||
"home": "Home",
|
||||
"unread": "Unread Topics",
|
||||
"popular": "Popular Topics",
|
||||
"recent": "Recent Topics",
|
||||
"users": "Registered Users",
|
||||
"notifications": "Notifications",
|
||||
"user.edit": "Editing \"%1\"",
|
||||
"user.following": "People %1 Follows",
|
||||
"user.followers": "People who Follow %1",
|
||||
"user.favourites": "%1's Favourite Posts",
|
||||
"user.settings": "User Settings"
|
||||
"unread": "Argomenti non letti",
|
||||
"popular": "Argomenti Popolari",
|
||||
"recent": "Argomenti Recenti",
|
||||
"users": "Utenti Registrati",
|
||||
"notifications": "Notifiche",
|
||||
"user.edit": "Modificando \"%1\"",
|
||||
"user.following": "%1 Persone seguono",
|
||||
"user.followers": "Persone che seguono %1",
|
||||
"user.posts": "Posts made by %1",
|
||||
"user.favourites": "Post Favoriti di %1",
|
||||
"user.settings": "Impostazioni Utente"
|
||||
}
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"title": "Recent",
|
||||
"title": "Recenti",
|
||||
"day": "Giorno",
|
||||
"week": "Settimana",
|
||||
"month": "Mese",
|
||||
"no_recent_topics": "There are no recent topics."
|
||||
"no_recent_topics": "Non ci sono discussioni recenti."
|
||||
}
|
@ -1,65 +1,82 @@
|
||||
{
|
||||
"topic": "Discussione",
|
||||
"topics": "Discussioni",
|
||||
"topic": "Argomento",
|
||||
"topics": "Argomenti",
|
||||
"no_topics_found": "Nessuna discussione trovata!",
|
||||
"no_posts_found": "No posts found!",
|
||||
"no_posts_found": "Nessun post trovato!",
|
||||
"profile": "Profilo",
|
||||
"posted_by": "Posted by",
|
||||
"posted_by": "Inviato da",
|
||||
"chat": "Chat",
|
||||
"notify_me": "Ricevi notifiche di nuove risposte in questa discussione",
|
||||
"quote": "Citazione",
|
||||
"reply": "Rispondi",
|
||||
"edit": "Modifica",
|
||||
"delete": "Cancella",
|
||||
"restore": "Restore",
|
||||
"move": "Muovi",
|
||||
"fork": "Fork",
|
||||
"fork": "Dividi",
|
||||
"banned": "bannato",
|
||||
"link": "Link",
|
||||
"share": "Share",
|
||||
"tools": "Tools",
|
||||
"flag": "Flag",
|
||||
"flag_title": "Flag this post for moderation",
|
||||
"deleted_message": "This thread has been deleted. Only users with thread management privileges can see it.",
|
||||
"watch": "Watch",
|
||||
"share_this_post": "Share this Post",
|
||||
"share": "Condividi",
|
||||
"tools": "Strumenti",
|
||||
"flag": "Segnala",
|
||||
"bookmark_instructions": "Click here to return to your last position or close to discard.",
|
||||
"flag_title": "Segnala questo post per la moderazione",
|
||||
"deleted_message": "Questo argomento è stato cancellato. Solo gli utenti che possono gestire gli argomenti riescono a vederlo.",
|
||||
"following_topic.title": "Stai seguendo questa Discussione",
|
||||
"following_topic.message": "Da ora riceverai notifiche quando qualcuno posterà in questa discussione.",
|
||||
"not_following_topic.title": "Non stai seguendo questa Discussione",
|
||||
"not_following_topic.message": "Non riceverai più notifiche da questa discussione.",
|
||||
"login_to_subscribe": "Please register or log in in order to subscribe to this topic.",
|
||||
"markAsUnreadForAll.success": "Topic marked as unread for all.",
|
||||
"watch": "Osserva",
|
||||
"share_this_post": "Condividi questo Post",
|
||||
"thread_tools.title": "Strumenti per il Thread",
|
||||
"thread_tools.markAsUnreadForAll": "Mark Unread",
|
||||
"thread_tools.pin": "Pin Topic",
|
||||
"thread_tools.unpin": "Unpin Topic",
|
||||
"thread_tools.lock": "Lock Topic",
|
||||
"thread_tools.unlock": "Unlock Topic",
|
||||
"thread_tools.move": "Move Topic",
|
||||
"thread_tools.fork": "Fork Topic",
|
||||
"thread_tools.delete": "Delete Topic",
|
||||
"thread_tools.restore": "Restore Topic",
|
||||
"load_categories": "Caricamento delle Categorie",
|
||||
"thread_tools.markAsUnreadForAll": "Segna come non letto",
|
||||
"thread_tools.pin": "Pinna Argomento",
|
||||
"thread_tools.unpin": "Unpin Argomento",
|
||||
"thread_tools.lock": "Blocca Discussione",
|
||||
"thread_tools.unlock": "Sblocca Discussione",
|
||||
"thread_tools.move": "Sposta Discussione",
|
||||
"thread_tools.fork": "Dividi Discussione",
|
||||
"thread_tools.delete": "Elimina Discussione",
|
||||
"thread_tools.restore": "Ripristina Discussione",
|
||||
"load_categories": "Caricamento Categorie",
|
||||
"disabled_categories_note": "Le Categorie disabilitate sono in grigio",
|
||||
"confirm_move": "Sposta",
|
||||
"confirm_fork": "Fork",
|
||||
"confirm_fork": "Dividi",
|
||||
"favourite": "Preferito",
|
||||
"favourites": "Preferiti",
|
||||
"favourites.not_logged_in.title": "Non collegato/a",
|
||||
"favourites.not_logged_in.message": "Log in per aggiungere questo post ai preferiti",
|
||||
"favourites.not_logged_in.message": "Accedi per aggiungere questo post ai preferiti",
|
||||
"favourites.has_no_favourites": "Non hai ancun post preferito; aggiungi qualche post ai preferiti per vederli qui!",
|
||||
"vote.not_logged_in.title": "Not Logged In",
|
||||
"vote.not_logged_in.message": "Please log in in order to vote",
|
||||
"vote.cant_vote_self.title": "Invalid Vote",
|
||||
"vote.cant_vote_self.message": "You cannot vote for your own post",
|
||||
"vote.not_logged_in.title": "Non loggato",
|
||||
"vote.not_logged_in.message": "Accedi per poter votare",
|
||||
"vote.cant_vote_self.title": "Voto non valido",
|
||||
"vote.cant_vote_self.message": "Non puoi votare per i tuoi post",
|
||||
"loading_more_posts": "Caricamento altri post",
|
||||
"move_topic": "Spsota Discussione",
|
||||
"move_topic": "Sposta Discussione",
|
||||
"move_post": "Sposta Post",
|
||||
"fork_topic": "Fork Topic",
|
||||
"fork_topic": "Dividi il Topic",
|
||||
"topic_will_be_moved_to": "Questa discussione verrà spostata nella categoria",
|
||||
"fork_topic_instruction": "Clicca sui post che vuoi forkare",
|
||||
"fork_topic_instruction": "Clicca sui post che vuoi dividere",
|
||||
"fork_no_pids": "Nessun post selezionato!",
|
||||
"fork_success": "Discussione forkata con successo!",
|
||||
"fork_success": "Discussione divisa con successo!",
|
||||
"reputation": "Reputazione",
|
||||
"posts": "Post",
|
||||
"composer.title_placeholder": "Enter your topic title here...",
|
||||
"composer.write": "Write",
|
||||
"composer.preview": "Preview",
|
||||
"composer.discard": "Discard",
|
||||
"composer.submit": "Submit",
|
||||
"composer.replying_to": "Replying to",
|
||||
"composer.new_topic": "New Topic"
|
||||
"composer.title_placeholder": "Inserisci qui il titolo della discussione...",
|
||||
"composer.write": "Scrivi",
|
||||
"composer.preview": "Anteprima",
|
||||
"composer.help": "Help",
|
||||
"composer.discard": "Annulla",
|
||||
"composer.submit": "Invia",
|
||||
"composer.replying_to": "Rispondendo a",
|
||||
"composer.new_topic": "Nuovo Argomento",
|
||||
"composer.uploading": "uploading...",
|
||||
"composer.thumb_url_label": "Paste a topic thumbnail URL",
|
||||
"composer.thumb_title": "Add a thumbnail to this topic",
|
||||
"composer.thumb_url_placeholder": "http://example.com/thumb.png",
|
||||
"composer.thumb_file_label": "Or upload a file",
|
||||
"composer.thumb_remove": "Clear fields",
|
||||
"composer.drag_and_drop_images": "Trascina e rilascia le immagini qui",
|
||||
"composer.upload_instructions": "Carica immagini trascinandole e rilasciandole."
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"title": "Unread",
|
||||
"title": "Non letto",
|
||||
"no_unread_topics": "Non ci sono discussioni non lette.",
|
||||
"mark_all_read": "Segna tutto come già letto",
|
||||
"load_more": "Carica Altro"
|
||||
|
@ -1,13 +1,14 @@
|
||||
{
|
||||
"home": "Hjem",
|
||||
"unread": "Uleste emner",
|
||||
"popular": "Popular Topics",
|
||||
"popular": "Populære tråder",
|
||||
"recent": "Seneste emner",
|
||||
"users": "Registrerte brukere",
|
||||
"notifications": "Varsler",
|
||||
"user.edit": "Endrer \"%1\"",
|
||||
"user.following": "Personer %1 følger",
|
||||
"user.followers": "Personer som følger %1",
|
||||
"user.posts": "Innlegg laget av %1",
|
||||
"user.favourites": "%1 sine favoritt-innlegg",
|
||||
"user.settings": "Brukerinnstillinger"
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
{
|
||||
"new_topic_button": "Nieuw onderwerp",
|
||||
"no_topics": "<strong>Er zijn geen onderwerpen in deze categorie.</strong><br />Waarom maak je er niet een aan?",
|
||||
"posts": "berichten",
|
||||
"views": "weergaven",
|
||||
"posted": "geplaatst",
|
||||
"browsing": "verkennen",
|
||||
"no_replies": "Niemand heeft gereageerd",
|
||||
"replied": "gereageerd",
|
||||
"last_edited_by": "voor het laatst aangepast door"
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
{
|
||||
"stats.online": "Online",
|
||||
"stats.users": "Gebruikers",
|
||||
"stats.topics": "Onderwerpen",
|
||||
"stats.posts": "Berichten",
|
||||
"success": "succes"
|
||||
}
|
@ -0,0 +1,59 @@
|
||||
{
|
||||
"home": "Home",
|
||||
"search": "Zoeken",
|
||||
"buttons.close": "Sluiten",
|
||||
"403.title": "Toegang Geweigerd",
|
||||
"403.message": "Het lijkt erop dat je op een pagina beland bent waar je geen toegang tot hebt. Misschien moet je <a href='/login'>inloggen</a>?",
|
||||
"404.title": "Niet Gevonden",
|
||||
"404.message": "Het lijkt erop dat je op een pagina beland bent die niet bestaat. Ga terug naar de <a href='/'>home pagina</a>.",
|
||||
"500.title": "Interne fout.",
|
||||
"500.message": "Oeps! Het lijkt erop dat iets is fout gegaan!",
|
||||
"register": "Registeren",
|
||||
"login": "Inloggen",
|
||||
"please_log_in": "Log a.u.b. In",
|
||||
"posting_restriction_info": "Reageren is momenteel beperkt tot geregistreerde leden, klik hier om in te loggen.",
|
||||
"welcome_back": "Welkom Terug!",
|
||||
"you_have_successfully_logged_in": "Je bent succesvol ingelogd",
|
||||
"logout": "Uitloggen",
|
||||
"logout.title": "Je bent nu uitgelogd.",
|
||||
"logout.message": "Je bent met succes uitgelogd van NodeBB",
|
||||
"save_changes": "Aanpassingen Opslaan",
|
||||
"close": "Sluiten",
|
||||
"pagination": "Paginering",
|
||||
"header.admin": "Admin",
|
||||
"header.recent": "Recent",
|
||||
"header.unread": "Ongelezen",
|
||||
"header.popular": "Populair",
|
||||
"header.users": "Gebruikers",
|
||||
"header.chats": "Chats",
|
||||
"header.notifications": "Notificaties",
|
||||
"header.search": "Zoeken",
|
||||
"header.profile": "Profiel",
|
||||
"notifications.loading": "Notificaties Laden",
|
||||
"chats.loading": "Chats Laden",
|
||||
"motd.welcome": "Welkom bij NodeBB, het discussie platform van de toekomst.",
|
||||
"motd.get": "Verkrijg NodeBB",
|
||||
"motd.fork": "Fork",
|
||||
"motd.like": "Like",
|
||||
"motd.follow": "Volgen",
|
||||
"previouspage": "Vorige Pagina",
|
||||
"nextpage": "Volgende Pagina",
|
||||
"alert.success": "Succes",
|
||||
"alert.error": "Fout",
|
||||
"alert.banned": "Verbannen",
|
||||
"alert.banned.message": "Je bent verbannen en zal uitgelogd worden!",
|
||||
"alert.unfollow": "Je volgt niet langer %1!",
|
||||
"alert.follow": "Je volgt nu %1!",
|
||||
"posts": "Berichten",
|
||||
"views": "Weergaven",
|
||||
"posted": "geplaatst",
|
||||
"in": "in",
|
||||
"recentposts": "Recente Berichten",
|
||||
"recentips": "Recente Ingelogde IPs",
|
||||
"online": "Online",
|
||||
"away": "Afwezig",
|
||||
"dnd": "Niet Storen",
|
||||
"invisible": "Onzichtbaar",
|
||||
"offline": "Offline",
|
||||
"privacy": "Privacy"
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
{
|
||||
"name": "Nederlands",
|
||||
"code": "nl",
|
||||
"dir": "ltr"
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
{
|
||||
"login": "Inloggen",
|
||||
"username": "Gebruikersnaam",
|
||||
"password": "Wachtwoord",
|
||||
"remember_me": "Mij Onthouden?",
|
||||
"forgot_password": "Wachtwoord Vergeten?",
|
||||
"alternative_logins": "Alternatieve Logins",
|
||||
"failed_login_attempt": "Mislukte inlog poging, probeer het later opnieuw.",
|
||||
"login_successful": "Je bent succesvol ingelogd!"
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"chat.chatting_with": "Chat met <span id=\"chat-with-name\"></span>",
|
||||
"chat.placeholder": "type chat bericht hier, druk op enter om te verzenden",
|
||||
"chat.send": "Verzenden",
|
||||
"chat.no_active": "Je hebt geen actieve chats."
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
{
|
||||
"title": "Notificaties",
|
||||
"no_notifs": "Je hebt geen nieuwe notificaties",
|
||||
"see_all": "Bekijk alle Notificaties",
|
||||
"back_to_home": "Terug naar NodeBB",
|
||||
"outgoing_link": "Uitgaande Link",
|
||||
"outgoing_link_message": "Je verlaat nu",
|
||||
"continue_to": "Doorgaan naar",
|
||||
"return_to": "Teruggaan naar"
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
{
|
||||
"home": "Home",
|
||||
"unread": "Ongelezen Onderwerpen",
|
||||
"popular": "Populaire Onderwerpen",
|
||||
"recent": "Recente Onderwerpen",
|
||||
"users": "Geregistreerde Gebruikers",
|
||||
"notifications": "Notificaties",
|
||||
"user.edit": "\"%1\" aanpassen",
|
||||
"user.following": "Mensen %1 Volgt",
|
||||
"user.followers": "Mensen die %1 Volgen",
|
||||
"user.posts": "Berichten geplaatst door %1",
|
||||
"user.favourites": "%1's Favoriete Berichten",
|
||||
"user.settings": "Gebruikersinstellingen"
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
{
|
||||
"title": "Recent",
|
||||
"day": "Dag",
|
||||
"week": "Week",
|
||||
"month": "Maand",
|
||||
"no_recent_topics": "Er zijn geen recente reacties."
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
{
|
||||
"register": "Registreren",
|
||||
"help.email": "Je email is standaard verborgen voor andere gebruikers.",
|
||||
"help.username_restrictions": "Een unieke gebruikersnaam tussen %1 en %2 karakters. Anderen kunnen je vermelden met @<span id='yourUsername'>gebruikersnaam</span>.",
|
||||
"help.minimum_password_length": "Je wachtwoord moet tenminste %1 karakters lang zijn.",
|
||||
"email_address": "Email Adres",
|
||||
"email_address_placeholder": "Vul Email Adres in",
|
||||
"username": "Gebruikersnaam",
|
||||
"username_placeholder": "Vul Gebruikersnaam in",
|
||||
"password": "Wachtwoord",
|
||||
"password_placeholder": "Vul Wachtwoord in",
|
||||
"confirm_password": "Bevestig Wachtwoord",
|
||||
"confirm_password_placeholder": "Bevestig Wachtwoord",
|
||||
"register_now_button": "Nu Registreren",
|
||||
"alternative_registration": "Alternatieve Registratie",
|
||||
"terms_of_use": "Gebruiksvoorwaarden",
|
||||
"agree_to_terms_of_use": "Ik ga akkoord van de Gebruiksvoorwaarden"
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
{
|
||||
"reset_password": "Wachtwoord opnieuw instellen",
|
||||
"update_password": "Wachtwoord Updaten",
|
||||
"password_changed.title": "Wachtwoord Veranderd",
|
||||
"password_changed.message": "<p>Wachtwoord is met succes gereset, log a.u.b. <a href=\"/login\">opnieuw in</a>.",
|
||||
"wrong_reset_code.title": "Incorrecte Reset Code",
|
||||
"wrong_reset_code.message": "De ontvangen reset code is incorrect. Probeer het opnieuw, of <a href=\"/reset\">vraag een nieuwe code aan</a>.",
|
||||
"new_password": "Nieuw Wachtwoord",
|
||||
"repeat_password": "Bevestig Wachtwoord",
|
||||
"enter_email": "Vul a.u.b. je <strong>email address</strong> in en we versturen je een email met de stappen hoe je je account reset.",
|
||||
"enter_email_address": "Enter Email Address",
|
||||
"password_reset_sent": "Wachtwoord Reset Verzonden",
|
||||
"invalid_email": "Fout Email Adres / Email Adres bestaat niet!"
|
||||
}
|
@ -0,0 +1,82 @@
|
||||
{
|
||||
"topic": "Onderwerp",
|
||||
"topics": "Onderwerpen",
|
||||
"no_topics_found": "Geen onderwerpen gevonden!",
|
||||
"no_posts_found": "Geen berichten gevonden!",
|
||||
"profile": "Profiel",
|
||||
"posted_by": "Geplaatst door",
|
||||
"chat": "Chat",
|
||||
"notify_me": "Krijg notificaties van nieuwe reacties op dit onderwerp",
|
||||
"quote": "Citeren",
|
||||
"reply": "Reageren",
|
||||
"edit": "Aanpassen",
|
||||
"delete": "Verwijderen",
|
||||
"restore": "Herstellen",
|
||||
"move": "Verplaatsen",
|
||||
"fork": "Fork",
|
||||
"banned": "verbannen",
|
||||
"link": "Link",
|
||||
"share": "Delen",
|
||||
"tools": "Gereedschap",
|
||||
"flag": "Markeren",
|
||||
"bookmark_instructions": "Klik hier om terug te gaan naar je laatste positie of sluiten om te annuleren.",
|
||||
"flag_title": "Dit bericht markeren voor moderatie",
|
||||
"deleted_message": "Dit onderwerp is verwijderd. Alleen gebruikers met onderwerp management privileges kunnen dit onderwerp zien.",
|
||||
"following_topic.title": "Volg Onderwerp",
|
||||
"following_topic.message": "Je zult nu notificaties ontvangen wanneer iemand reageert op dit onderwerp.",
|
||||
"not_following_topic.title": "Volgt Onderwerp Niet",
|
||||
"not_following_topic.message": "Je zult niet langer notificaties ontvangen van dit onderwerp.",
|
||||
"login_to_subscribe": "Log a.u.b. in om op dit onderwerp te abonneren.",
|
||||
"markAsUnreadForAll.success": "Onderwerp gemarkeerd als gelezen voor iedereen.",
|
||||
"watch": "Volgen",
|
||||
"share_this_post": "Deel dit Bericht",
|
||||
"thread_tools.title": "Thread Gereedschap",
|
||||
"thread_tools.markAsUnreadForAll": "Ongelezen Markeren",
|
||||
"thread_tools.pin": "Onderwerp Vastmaken",
|
||||
"thread_tools.unpin": "Onderwerp Losmaken",
|
||||
"thread_tools.lock": "Onderwerp Sluiten",
|
||||
"thread_tools.unlock": "Onderwerp Openen",
|
||||
"thread_tools.move": "Onderwerp Verplaatsen",
|
||||
"thread_tools.fork": "Onderwerp Forken",
|
||||
"thread_tools.delete": "Onderwerp Verwijderen",
|
||||
"thread_tools.restore": "Onderwerp Herstellen",
|
||||
"load_categories": "Categorieën Laden",
|
||||
"disabled_categories_note": "Uitgeschakelde Categorieën zijn grijs",
|
||||
"confirm_move": "Verplaatsen",
|
||||
"confirm_fork": "Fork",
|
||||
"favourite": "Favoriet",
|
||||
"favourites": "Favorieten",
|
||||
"favourites.not_logged_in.title": "Niet Ingelogd",
|
||||
"favourites.not_logged_in.message": "Log a.u.b. in om dit bericht als Favoriet op te slaan",
|
||||
"favourites.has_no_favourites": "Je hebt geen favorieten, sla een aantal berichten op als favoriet om ze hier te zien!",
|
||||
"vote.not_logged_in.title": "Niet Ingelogd",
|
||||
"vote.not_logged_in.message": "Log a.u.b. in om te kunnen stemmen",
|
||||
"vote.cant_vote_self.title": "Ongeldige Stem",
|
||||
"vote.cant_vote_self.message": "Je kan niet op je eigen berichten stemmen",
|
||||
"loading_more_posts": "Meer Berichten Laden",
|
||||
"move_topic": "Onderwerp Verplaatsen",
|
||||
"move_post": "Bericht Verplaatsen",
|
||||
"fork_topic": "Onderwerp Forken",
|
||||
"topic_will_be_moved_to": "Dit onderwerp zal verplaatst worden naar de categorie",
|
||||
"fork_topic_instruction": "Klik op de berichten die je wilt forken",
|
||||
"fork_no_pids": "Geen berichten geselecteerd!",
|
||||
"fork_success": "Onderwerp is met succes geforkt!",
|
||||
"reputation": "Reputatie",
|
||||
"posts": "Berichten",
|
||||
"composer.title_placeholder": "Vul de titel voor het onderwerp hier in...",
|
||||
"composer.write": "Schrijven",
|
||||
"composer.preview": "Voorbeeld",
|
||||
"composer.help": "Help",
|
||||
"composer.discard": "Annuleren",
|
||||
"composer.submit": "Opslaan",
|
||||
"composer.replying_to": "Reageren op",
|
||||
"composer.new_topic": "Nieuw Onderwerp",
|
||||
"composer.uploading": "uploaden...",
|
||||
"composer.thumb_url_label": "Plak een onderwerp thumbnail URL",
|
||||
"composer.thumb_title": "Voeg een thumbnail toe aan dit onderwerp",
|
||||
"composer.thumb_url_placeholder": "http://example.com/thumb.png",
|
||||
"composer.thumb_file_label": "Of upload een bestand",
|
||||
"composer.thumb_remove": "Velden leegmaken",
|
||||
"composer.drag_and_drop_images": "Sleep en Zet Afbeeldingen Hier",
|
||||
"composer.upload_instructions": "Upload afbeeldingen door ze te slepen."
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue