Merge remote-tracking branch 'upstream/master'

Conflicts:
	src/favourites.js
v1.18.x
Andrea Cardinale 10 years ago
commit da800a9016

@ -12,18 +12,26 @@ Additional functionality is enabled through the use of third-party plugins.
* [Get NodeBB](http://www.nodebb.org/ "NodeBB") * [Get NodeBB](http://www.nodebb.org/ "NodeBB")
* [Demo & Meta Discussion](http://community.nodebb.org) * [Demo & Meta Discussion](http://community.nodebb.org)
* [NodeBB Blog](http://blog.nodebb.org)
* [Documentation & Installation Instructions](http://docs.nodebb.org) * [Documentation & Installation Instructions](http://docs.nodebb.org)
* [Help translate NodeBB](https://www.transifex.com/projects/p/nodebb/)
* [NodeBB Blog](http://blog.nodebb.org)
* [Join us on IRC](https://kiwiirc.com/client/irc.freenode.net/nodebb) - #nodebb on Freenode * [Join us on IRC](https://kiwiirc.com/client/irc.freenode.net/nodebb) - #nodebb on Freenode
* [Follow us on Twitter](http://www.twitter.com/NodeBB/ "NodeBB Twitter") * [Follow us on Twitter](http://www.twitter.com/NodeBB/ "NodeBB Twitter")
* [Like us on Facebook](http://www.facebook.com/NodeBB/ "NodeBB Facebook") * [Like us on Facebook](http://www.facebook.com/NodeBB/ "NodeBB Facebook")
* [Get Plugins](http://community.nodebb.org/category/7/nodebb-plugins "NodeBB Plugins")
* [Get Themes](http://community.nodebb.org/category/10/nodebb-themes "NodeBB Themes")
* [Help translate NodeBB](https://www.transifex.com/projects/p/nodebb/)
## Screenshots ## Screenshots
[<img src="http://i.imgur.com/FLOUuIqb.png" />](http://i.imgur.com/FLOUuIq.png)&nbsp;[<img src="http://i.imgur.com/Ud1LrfIb.png" />](http://i.imgur.com/Ud1LrfI.png)&nbsp;[<img src="http://i.imgur.com/ZC8W39ab.png" />](http://i.imgur.com/ZC8W39a.png)&nbsp;[<img src="http://i.imgur.com/o90kVPib.png" />](http://i.imgur.com/o90kVPi.png)&nbsp;[<img src="http://i.imgur.com/AaRRrU2b.png" />](http://i.imgur.com/AaRRrU2.png)&nbsp;[<img src="http://i.imgur.com/LmHtPhob.png" />](http://i.imgur.com/LmHtPho.png)&nbsp;[<img src="http://i.imgur.com/paiJPJkb.jpg" />](http://i.imgur.com/paiJPJk.jpg)&nbsp;[<img src="http://i.imgur.com/ZfavPHDb.png" />](http://i.imgur.com/ZfavPHD.png)&nbsp;[<img src="http://i.imgur.com/8OLssij.png" />](http://i.imgur.com/8OLssij.png)&nbsp;[<img src="http://i.imgur.com/JKOc0LZ.png"/>](http://i.imgur.com/JKOc0LZ.png) [![](http://i.imgur.com/VCoOFyqb.png)](http://i.imgur.com/VCoOFyq.png)
[![](http://i.imgur.com/FLOUuIqb.png)](http://i.imgur.com/FLOUuIq.png)
[![](http://i.imgur.com/Ud1LrfIb.png)](http://i.imgur.com/Ud1LrfI.png)
[![](http://i.imgur.com/h6yZ66sb.png)](http://i.imgur.com/h6yZ66s.png)
[![](http://i.imgur.com/o90kVPib.png)](http://i.imgur.com/o90kVPi.png)
[![](http://i.imgur.com/AaRRrU2b.png)](http://i.imgur.com/AaRRrU2.png)
[![](http://i.imgur.com/LmHtPhob.png)](http://i.imgur.com/LmHtPho.png)
[![](http://i.imgur.com/paiJPJkb.jpg)](http://i.imgur.com/paiJPJk.jpg)
[![](http://i.imgur.com/8OLssij.png)](http://i.imgur.com/8OLssij.png)
[![](http://i.imgur.com/JKOc0LZ.png)](http://i.imgur.com/JKOc0LZ.png)
## How can I follow along/contribute? ## How can I follow along/contribute?
@ -38,7 +46,7 @@ Additional functionality is enabled through the use of third-party plugins.
NodeBB requires the following software to be installed: NodeBB requires the following software to be installed:
* A version of Node.js at least 0.10 or greater * A version of Node.js at least 0.10 or greater
* Redis, version 2.6 or greater **or** MongoDB, version 2.6 or greater * Redis, version 2.8.9 or greater **or** MongoDB, version 2.6 or greater
* nginx, version 1.3.13 or greater (**only if** intending to use nginx to proxy requests to a NodeBB) * nginx, version 1.3.13 or greater (**only if** intending to use nginx to proxy requests to a NodeBB)
## Installation ## Installation
@ -62,4 +70,6 @@ Detailed upgrade instructions are listed in [Upgrading NodeBB](https://docs.node
## License ## License
NodeBB is licensed under the **GNU General Public License v3 (GPL-3)** (http://www.gnu.org/copyleft/gpl.html) 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.

@ -29,11 +29,11 @@ var fs = require('fs'),
async = require('async'), async = require('async'),
semver = require('semver'), semver = require('semver'),
winston = require('winston'), winston = require('winston'),
colors = require('colors'),
path = require('path'), path = require('path'),
pkg = require('./package.json'), pkg = require('./package.json'),
utils = require('./public/src/utils.js'); utils = require('./public/src/utils.js');
global.env = process.env.NODE_ENV || 'production'; global.env = process.env.NODE_ENV || 'production';
winston.remove(winston.transports.Console); winston.remove(winston.transports.Console);
@ -108,6 +108,7 @@ function loadConfig() {
function start() { function start() {
loadConfig(); loadConfig();
var db = require('./src/database');
// nconf defaults, if not set in config // nconf defaults, if not set in config
if (!nconf.get('upload_path')) { if (!nconf.get('upload_path')) {
@ -116,6 +117,7 @@ function start() {
// Parse out the relative_url and other goodies from the configured URL // Parse out the relative_url and other goodies from the configured URL
var urlObject = url.parse(nconf.get('url')); var urlObject = url.parse(nconf.get('url'));
var relativePath = urlObject.pathname !== '/' ? urlObject.pathname : ''; var relativePath = urlObject.pathname !== '/' ? urlObject.pathname : '';
nconf.set('base_url', urlObject.protocol + '//' + urlObject.host);
nconf.set('use_port', !!urlObject.port); nconf.set('use_port', !!urlObject.port);
nconf.set('relative_path', relativePath); nconf.set('relative_path', relativePath);
nconf.set('port', urlObject.port || nconf.get('port') || nconf.get('PORT') || 4567); nconf.set('port', urlObject.port || nconf.get('port') || nconf.get('PORT') || 4567);
@ -175,9 +177,8 @@ function start() {
}); });
async.waterfall([ async.waterfall([
function(next) { async.apply(db.init),
require('./src/database').init(next); async.apply(db.checkCompatibility),
},
function(next) { function(next) {
require('./src/meta').configs.init(next); require('./src/meta').configs.init(next);
}, },
@ -203,7 +204,12 @@ function start() {
} }
], function(err) { ], function(err) {
if (err) { if (err) {
if (err.stacktrace !== false) {
winston.error(err.stack); winston.error(err.stack);
} else {
winston.error(err.message);
}
process.exit(); process.exit();
} }
}); });
@ -274,17 +280,19 @@ function reset() {
process.exit(); process.exit();
} }
if (nconf.get('theme')) { if (nconf.get('t')) {
resetThemes(); resetThemes();
} else if (nconf.get('plugin')) { } else if (nconf.get('p')) {
resetPlugin(nconf.get('plugin')); if (nconf.get('p') === true) {
} else if (nconf.get('plugins')) {
resetPlugins(); resetPlugins();
} else if (nconf.get('widgets')) { } else {
resetPlugin(nconf.get('p'));
}
} else if (nconf.get('w')) {
resetWidgets(); resetWidgets();
} else if (nconf.get('settings')) { } else if (nconf.get('s')) {
resetSettings(); resetSettings();
} else if (nconf.get('all')) { } else if (nconf.get('a')) {
require('async').series([resetWidgets, resetThemes, resetPlugins, resetSettings], function(err) { require('async').series([resetWidgets, resetThemes, resetPlugins, resetSettings], function(err) {
if (!err) { if (!err) {
winston.info('[reset] Reset complete.'); winston.info('[reset] Reset complete.');
@ -294,10 +302,17 @@ function reset() {
process.exit(); process.exit();
}); });
} else { } else {
winston.warn('[reset] Nothing reset.'); process.stdout.write('\nNodeBB Reset\n'.bold);
winston.info('Use ./nodebb reset {theme|plugins|widgets|settings|all}'); process.stdout.write('No arguments passed in, so nothing was reset.\n\n'.yellow);
winston.info(' or'); process.stdout.write('Use ./nodebb reset ' + '{-t|-p|-w|-s|-a}\n'.red);
winston.info('Use ./nodebb reset plugin="nodebb-plugin-pluginName"'); process.stdout.write(' -t\tthemes\n');
process.stdout.write(' -p\tplugins\n');
process.stdout.write(' -w\twidgets\n');
process.stdout.write(' -s\tsettings\n');
process.stdout.write(' -a\tall of the above\n');
process.stdout.write('\nPlugin reset flag (-p) can take a single argument\n');
process.stdout.write(' e.g. ./nodebb reset -p nodebb-plugin-mentions\n');
process.exit(); process.exit();
} }
}); });

@ -1,106 +1,28 @@
[
{ {
"field": "title", "title": "NodeBB",
"value": "NodeBB" "showSiteTitle": 1,
}, "postDelay": 10,
{ "initialPostDelay": 10,
"field": "showSiteTitle", "newbiePostDelay": 120,
"value": "1" "newbiePostDelayThreshold": 3,
}, "minimumPostLength": 8,
{ "maximumPostLength": 32767,
"field": "postDelay", "allowGuestSearching": 0,
"value": 10 "allowTopicsThumbnail": 0,
}, "registrationType": "normal",
{ "allowLocalLogin": 1,
"field": "initialPostDelay", "allowAccountDelete": 1,
"value": 10 "allowFileUploads": 0,
}, "maximumFileSize": 2048,
{ "minimumTitleLength": 3,
"field": "newbiePostDelay", "maximumTitleLength": 255,
"value": 120 "minimumUsernameLength": 2,
}, "maximumUsernameLength": 16,
{ "minimumPasswordLength": 6,
"field": "newbiePostDelayThreshold", "maximumSignatureLength": 255,
"value": 3 "maximumAboutMeLength": 1000,
}, "maximumProfileImageSize": 256,
{ "profileImageDimension": 128,
"field": "minimumPostLength", "requireEmailConfirmation": 0,
"value": 8 "profile:allowProfileImageUploads": 1
},
{
"field": "maximumPostLength",
"value": 32767
},
{
"field": "allowGuestSearching",
"value": 0
},
{
"field": "allowTopicsThumbnail",
"value": 0
},
{
"field": "allowRegistration",
"value": 1
},
{
"field": "allowLocalLogin",
"value": 1
},
{
"field": "allowAccountDelete",
"value": 1
},
{
"field": "allowFileUploads",
"value": 0
},
{
"field": "maximumFileSize",
"value": 2048
},
{
"field": "minimumTitleLength",
"value": 3
},
{
"field": "maximumTitleLength",
"value": 255
},
{
"field": "minimumUsernameLength",
"value": 2
},
{
"field": "maximumUsernameLength",
"value": 16
},
{
"field": "minimumPasswordLength",
"value": 6
},
{
"field": "maximumSignatureLength",
"value": 255
},
{
"field": "maximumAboutMeLength",
"value": 1000
},
{
"field": "maximumProfileImageSize",
"value": 256
},
{
"field": "profileImageDimension",
"value": 128
},
{
"field": "requireEmailConfirmation",
"value": 0
},
{
"field": "profile:allowProfileImageUploads",
"value": 1
} }
]

@ -41,8 +41,7 @@ web.install = function(port) {
function launchExpress(port) { function launchExpress(port) {
server = app.listen(port, function() { server = app.listen(port, function() {
var host = server.address().address; winston.info('Web installer listening on http://%s:%s', '0.0.0.0', port);
winston.info('Web installer listening on http://%s:%s', host, port);
}); });
} }
@ -104,6 +103,10 @@ function launch(req, res) {
stdio: ['ignore', 'ignore', 'ignore'] stdio: ['ignore', 'ignore', 'ignore']
}); });
process.stdout.write('\nStarting NodeBB\n');
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(); child.unref();
process.exit(0); process.exit(0);

@ -17,7 +17,7 @@ nconf.argv().env().file({
var pidFilePath = __dirname + '/pidfile', var pidFilePath = __dirname + '/pidfile',
output = logrotate({ file: __dirname + '/logs/output.log', size: '1m', keep: 3, compress: true }), output = logrotate({ file: __dirname + '/logs/output.log', size: '1m', keep: 3, compress: true }),
silent = nconf.get('silent') !== false, silent = nconf.get('silent') === 'false' ? false : nconf.get('silent') !== false,
numProcs, numProcs,
workers = [], workers = [],
@ -248,7 +248,7 @@ Loader.notifyWorkers = function(msg, worker_pid) {
fs.open(path.join(__dirname, 'config.json'), 'r', function(err) { fs.open(path.join(__dirname, 'config.json'), 'r', function(err) {
if (!err) { if (!err) {
if (nconf.get('daemon') !== false) { if (nconf.get('daemon') !== 'false' && nconf.get('daemon') !== false) {
if (fs.existsSync(pidFilePath)) { if (fs.existsSync(pidFilePath)) {
try { try {
var pid = fs.readFileSync(pidFilePath, { encoding: 'utf-8' }); var pid = fs.readFileSync(pidFilePath, { encoding: 'utf-8' });

300
nodebb

@ -1,137 +1,167 @@
#!/bin/bash #!/usr/bin/env node
# $0 script path var colors = require('colors'),
# $1 action cproc = require('child_process'),
# $2 subaction argv = require('minimist')(process.argv.slice(2)),
fs = require('fs'),
node="$(which nodejs 2>/dev/null)"; async = require('async'),
if [ $? -gt 0 ]; touch = require('touch'),
then node="$(which node)"; npm = require('npm');
fi
var getRunningPid = function(callback) {
function pidExists() { fs.readFile(__dirname + '/pidfile', {
if [ -e "pidfile" ]; encoding: 'utf-8'
then }, function(err, pid) {
if ps -p $(cat pidfile) > /dev/null if (err) {
then return 1; return callback(err);
else
rm ./pidfile;
return 0;
fi
else
return 0;
fi
} }
case "$1" in try {
start) process.kill(parseInt(pid, 10), 0);
echo "Starting NodeBB"; callback(null, parseInt(pid, 10));
echo " \"./nodebb stop\" to stop the NodeBB server"; } catch(e) {
echo " \"./nodebb log\" to view server output"; callback(e);
}
# Start the loader daemon });
"$node" loader "$@" };
;;
switch(process.argv[2]) {
stop) case 'status':
pidExists; getRunningPid(function(err, pid) {
if [ 0 -eq $? ]; if (!err) {
then process.stdout.write('\nNodeBB Running '.bold + '(pid '.cyan + pid.toString().cyan + ')\n'.cyan);
echo "NodeBB is already stopped."; process.stdout.write('\t"' + './nodebb stop'.yellow + '" to stop the NodeBB server\n');
else process.stdout.write('\t"' + './nodebb log'.yellow + '" to view server output\n');
echo "Stopping NodeBB. Goodbye!"; process.stdout.write('\t"' + './nodebb restart'.yellow + '" to restart NodeBB\n\n');
kill $(cat pidfile); } else {
fi process.stdout.write('\nNodeBB is not running\n'.bold);
;; process.stdout.write('\t"' + './nodebb start'.yellow + '" to launch the NodeBB server\n\n');
}
restart) })
pidExists; break;
if [ 0 -eq $? ];
then case 'start':
echo "NodeBB could not be restarted, as a running instance could not be found."; process.stdout.write('\nStarting NodeBB\n'.bold);
else process.stdout.write(' "' + './nodebb stop'.yellow + '" to stop the NodeBB server\n');
echo "Restarting NodeBB."; process.stdout.write(' "' + './nodebb log'.yellow + '" to view server output\n');
kill -1 $(cat pidfile); process.stdout.write(' "' + './nodebb restart'.yellow + '" to restart NodeBB\n\n');
fi
;; // Spawn a new NodeBB process
cproc.fork(__dirname + '/loader.js', {
reload) env: process.env
pidExists; });
if [ 0 -eq $? ]; break;
then
echo "NodeBB could not be reloaded, as a running instance could not be found."; case 'stop':
else getRunningPid(function(err, pid) {
echo "Reloading NodeBB."; if (!err) {
kill -12 $(cat pidfile); process.kill(pid, 'SIGTERM');
fi process.stdout.write('Stopping NodeBB. Goodbye!\n')
;; } else {
process.stdout.write('NodeBB is already stopped.\n');
status) }
pidExists; });
if [ 0 -eq $? ]; break;
then
echo "NodeBB is not running"; case 'restart':
echo " \"./nodebb start\" to launch the NodeBB server"; getRunningPid(function(err, pid) {
else if (!err) {
echo "NodeBB Running (pid $(cat pidfile))"; process.kill(pid, 'SIGHUP');
echo " \"./nodebb stop\" to stop the NodeBB server"; } else {
echo " \"./nodebb log\" to view server output"; process.stdout.write('NodeBB could not be restarted, as a running instance could not be found.');
echo " \"./nodebb restart\" to restart NodeBB"; }
fi });
;; break;
log) case 'reload':
clear; getRunningPid(function(err, pid) {
tail -F ./logs/output.log; if (!err) {
;; process.kill(pid, 'SIGUSR2');
} else {
upgrade) process.stdout.write('NodeBB could not be reloaded, as a running instance could not be found.');
npm install }
# ls -d node_modules/nodebb* | xargs -n1 basename | xargs npm install });
# ls -d node_modules/nodebb* | xargs -n1 basename | xargs npm update break;
npm i nodebb-theme-vanilla nodebb-theme-lavender nodebb-widget-essentials
"$node" app --upgrade case 'dev':
touch package.json process.env.NODE_ENV = 'development';
;; cproc.fork(__dirname + '/loader.js', ['--no-daemon', '--no-silent'], {
env: process.env
setup) });
"$node" app --setup "$@" break;
;;
case 'log':
reset) process.stdout.write('\nType '.red + 'Ctrl-C '.bold + 'to exit\n\n'.red);
"$node" app --reset --$2 cproc.spawn('tail', ['-F', './logs/output.log'], {
;; cwd: __dirname,
stdio: 'inherit'
dev) });
echo "Launching NodeBB in \"development\" mode." break;
echo "To run the production build of NodeBB, please use \"forever\"."
echo "More Information: https://docs.nodebb.org/en/latest/running/index.html" case 'setup':
NODE_ENV=development "$node" loader --no-daemon --no-silent "$@" cproc.fork('app.js', ['--setup'], {
;; cwd: __dirname,
silent: false
watch) });
echo "***************************************************************************" break;
echo "WARNING: ./nodebb watch will be deprecated soon. Please use grunt: "
echo "https://docs.nodebb.org/en/latest/running/index.html#grunt-development" case 'reset':
echo "***************************************************************************" var args = process.argv.slice(0);
NODE_ENV=development supervisor -q --ignore public/templates,public/nodebb.min.js,public/nodebb.min.js.map --extensions 'node|js|tpl|less' -- app "$@" args.unshift('--reset');
;;
cproc.fork('app.js', args, {
*) cwd: __dirname,
echo "Welcome to NodeBB" silent: false
echo $"Usage: $0 {start|stop|reload|restart|log|setup|reset|upgrade|dev|watch}" });
echo '' break;
column -s ' ' -t <<< '
start Start the NodeBB server case 'upgrade':
stop Stops the NodeBB server async.series([
reload Restarts NodeBB function(next) {
restart Restarts NodeBB process.stdout.write('1. '.bold + 'Bringing base dependencies up to date\n'.yellow);
log Opens the logging interface (useful for debugging) npm.load({
setup Runs the NodeBB setup script loglevel: 'silent'
reset Disables all plugins, restores the default theme. }, function() {
upgrade Run NodeBB upgrade scripts, ensure packages are up-to-date npm.commands.install(next);
dev Start NodeBB in interactive development mode });
watch Start NodeBB in development mode and watch for changes },
' function(next) {
exit 1 process.stdout.write('2. '.bold + 'Updating NodeBB data store schema\n'.yellow);
esac var upgradeProc = cproc.fork('app.js', ['--upgrade'], {
cwd: __dirname,
silent: false
});
upgradeProc.on('close', next)
},
function(next) {
process.stdout.write('3. '.bold + 'Storing upgrade date in "package.json"\n'.yellow);
touch(__dirname + '/package.json', {}, next);
}
], function(err) {
if (err) {
process.stdout.write('\nError'.red + ': ' + err.message + '\n');
} else {
var message = 'NodeBB Upgrade Complete!',
spaces = new Array(Math.floor(process.stdout.columns / 2) - (message.length / 2) + 1).join(' ');
process.stdout.write('\n' + spaces + message.green.bold + '\n\n');
}
});
break;
default:
process.stdout.write('\nWelcome to NodeBB\n\n'.bold);
process.stdout.write('Usage: ./nodebb {start|stop|reload|restart|log|setup|reset|upgrade|dev}\n\n');
process.stdout.write('\t' + 'start'.yellow + '\tStart the NodeBB server\n');
process.stdout.write('\t' + 'stop'.yellow + '\tStops the NodeBB server\n');
process.stdout.write('\t' + 'reload'.yellow + '\tRestarts NodeBB\n');
process.stdout.write('\t' + 'restart'.yellow + '\tRestarts NodeBB\n');
process.stdout.write('\t' + 'log'.yellow + '\tOpens the logging interface (useful for debugging)\n');
process.stdout.write('\t' + 'setup'.yellow + '\tRuns the NodeBB setup script\n');
process.stdout.write('\t' + 'reset'.yellow + '\tDisables all plugins, restores the default theme.\n');
process.stdout.write('\t' + 'upgrade'.yellow + '\tRun NodeBB upgrade scripts, ensure packages are up-to-date\n');
process.stdout.write('\t' + 'dev'.yellow + '\tStart NodeBB in interactive development mode\n');
process.stdout.write('\t' + 'watch'.yellow + '\tStart NodeBB in development mode and watch for changes\n');
process.stdout.write('\n');
break;
}

@ -1,8 +1,8 @@
{ {
"name": "nodebb", "name": "nodebb",
"license": "GPLv3 or later", "license": "GPL-3.0",
"description": "NodeBB Forum", "description": "NodeBB Forum",
"version": "0.7.0-dev", "version": "0.7.1-dev",
"homepage": "http://www.nodebb.org", "homepage": "http://www.nodebb.org",
"repository": { "repository": {
"type": "git", "type": "git",
@ -17,6 +17,7 @@
"async": "~0.9.0", "async": "~0.9.0",
"bcryptjs": "~2.1.0", "bcryptjs": "~2.1.0",
"body-parser": "^1.9.0", "body-parser": "^1.9.0",
"colors": "^1.1.0",
"compression": "^1.1.0", "compression": "^1.1.0",
"connect-ensure-login": "^0.1.1", "connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1", "connect-flash": "^0.1.1",
@ -27,28 +28,29 @@
"daemon": "~1.1.0", "daemon": "~1.1.0",
"express": "^4.9.5", "express": "^4.9.5",
"express-session": "^1.8.2", "express-session": "^1.8.2",
"gm": "1.17.0", "lwip": "0.0.7",
"gravatar": "^1.1.0", "gravatar": "^1.1.0",
"heapdump": "^0.3.0", "heapdump": "^0.3.0",
"less": "^2.0.0", "less": "^2.0.0",
"logrotate-stream": "^0.2.3", "logrotate-stream": "^0.2.3",
"lru-cache": "^2.6.1", "lru-cache": "^2.6.1",
"mime": "^1.3.4", "mime": "^1.3.4",
"minimist": "^1.1.1",
"mkdirp": "~0.5.0", "mkdirp": "~0.5.0",
"mmmagic": "^0.3.13", "mmmagic": "^0.3.13",
"morgan": "^1.3.2", "morgan": "^1.3.2",
"nconf": "~0.7.1", "nconf": "~0.7.1",
"nodebb-plugin-dbsearch": "^0.2.5", "nodebb-plugin-dbsearch": "^0.2.12",
"nodebb-plugin-emoji-extended": "^0.4.1-4", "nodebb-plugin-emoji-extended": "^0.4.8",
"nodebb-plugin-markdown": "^2.1.0", "nodebb-plugin-markdown": "^3.0.0",
"nodebb-plugin-mentions": "^0.11.0", "nodebb-plugin-mentions": "^0.11.4",
"nodebb-plugin-soundpack-default": "~0.1.1", "nodebb-plugin-soundpack-default": "^0.1.1",
"nodebb-plugin-spam-be-gone": "^0.4.0", "nodebb-plugin-spam-be-gone": "^0.4.0",
"nodebb-theme-lavender": "^1.0.28",
"nodebb-theme-vanilla": "^1.0.120",
"nodebb-theme-persona": "^0.1.39",
"nodebb-widget-essentials": "^1.0.0",
"nodebb-rewards-essentials": "^0.0.1", "nodebb-rewards-essentials": "^0.0.1",
"nodebb-theme-lavender": "^1.0.42",
"nodebb-theme-persona": "^0.2.0",
"nodebb-theme-vanilla": "^1.1.0",
"nodebb-widget-essentials": "^1.0.2",
"npm": "^2.1.4", "npm": "^2.1.4",
"passport": "^0.2.1", "passport": "^0.2.1",
"passport-local": "1.0.0", "passport-local": "1.0.0",
@ -64,9 +66,11 @@
"socket.io-redis": "^0.1.3", "socket.io-redis": "^0.1.3",
"socketio-wildcard": "~0.1.1", "socketio-wildcard": "~0.1.1",
"string": "^3.0.0", "string": "^3.0.0",
"templates.js": "^0.2.2", "templates.js": "^0.2.6",
"touch": "0.0.3",
"uglify-js": "git+https://github.com/julianlam/UglifyJS2.git", "uglify-js": "git+https://github.com/julianlam/UglifyJS2.git",
"underscore": "~1.8.3", "underscore": "~1.8.3",
"underscore.deep": "^0.5.1",
"validator": "^3.30.0", "validator": "^3.30.0",
"winston": "^0.9.0", "winston": "^0.9.0",
"xregexp": "~2.0.0" "xregexp": "~2.0.0"

@ -1,11 +1,11 @@
{ {
"new_topic_button": "موضوع جديد", "new_topic_button": "موضوع جديد",
"guest-login-post": "المرجو تسجيل الدخول أوَّلا", "guest-login-post": "يجب عليك تسجيل الدخول للرد",
"no_topics": "<strong>لا توجد مواضيع في هذه الفئة</strong>لم لا تحاول إنشاء موضوع؟<br />", "no_topics": "<strong>لا توجد مواضيع في هذه الفئة</strong>لم لا تحاول إنشاء موضوع؟<br />",
"browsing": "تصفح", "browsing": "تصفح",
"no_replies": "لم يرد أحد", "no_replies": "لم يرد أحد",
"share_this_category": "انشر هذه الفئة", "share_this_category": "انشر هذه الفئة",
"watch": "Watch", "watch": "متابعة",
"ignore": "تجاهل", "ignore": "تجاهل",
"watch.message": "You are now watching updates from this category", "watch.message": "You are now watching updates from this category",
"ignore.message": "You are now ignoring updates from this category" "ignore.message": "You are now ignoring updates from this category"

@ -1,5 +1,5 @@
{ {
"password-reset-requested": "تم طلب إعادة تعيين كلمة السر - %1!", "password-reset-requested": "تم طلب إعادة تعيين كلمة المرور - %1!",
"welcome-to": "مرحبًا بك في %1", "welcome-to": "مرحبًا بك في %1",
"greeting_no_name": "مرحبًا", "greeting_no_name": "مرحبًا",
"greeting_with_name": "مرحبًا بك يا %1", "greeting_with_name": "مرحبًا بك يا %1",

@ -1,8 +1,8 @@
{ {
"invalid-data": "بيانات غير صالحة", "invalid-data": "بيانات غير صالحة",
"not-logged-in": "لم تقم بتسجيل الدخول", "not-logged-in": "لم تقم بتسجيل الدخول",
"account-locked": "تم إقفال حسابكم مؤقتًا.", "account-locked": "تم حظر حسابك مؤقتًا.",
"search-requires-login": "البحث في المنتدى يستلزم توفرك على حساب! المرجو تسجيل دخولك أو إنشاء حساب!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "قائمة غير موجودة", "invalid-cid": "قائمة غير موجودة",
"invalid-tid": "موضوع غير متواجد", "invalid-tid": "موضوع غير متواجد",
"invalid-pid": "رد غير موجود", "invalid-pid": "رد غير موجود",
@ -25,7 +25,7 @@
"username-too-short": "اسم المستخدم قصير.", "username-too-short": "اسم المستخدم قصير.",
"username-too-long": "اسم المستخدم طويل", "username-too-long": "اسم المستخدم طويل",
"user-banned": "المستخدم محظور", "user-banned": "المستخدم محظور",
"user-too-new": "Sorry, you are required to wait %1 second(s) before making your first post", "user-too-new": "عذرا, يجب أن تنتظر 1% ثواني قبل قيامك بأول مشاركة",
"no-category": "قائمة غير موجودة", "no-category": "قائمة غير موجودة",
"no-topic": "موضوع غير موجود", "no-topic": "موضوع غير موجود",
"no-post": "رد غير موجود", "no-post": "رد غير موجود",
@ -68,9 +68,10 @@
"invalid-file": "ملف غير مقبول", "invalid-file": "ملف غير مقبول",
"uploads-are-disabled": "رفع الملفات غير مفعل", "uploads-are-disabled": "رفع الملفات غير مفعل",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "لايمكنك فتح محادثة مع نفسك", "cant-chat-with-yourself": "لايمكنك فتح محادثة مع نفسك",
"chat-restricted": "هذا المستخدم عطل المحادثات الواردة عليه. يجب أن يتبعك حتى تتمكن من فتح محادثة معه.", "chat-restricted": "هذا المستخدم عطل المحادثات الواردة عليه. يجب أن يتبعك حتى تتمكن من فتح محادثة معه.",
"too-many-messages": "You have sent too many messages, please wait awhile.", "too-many-messages": "لقد أرسلت الكثير من الرسائل، الرجاء اﻹنتظار قليلاً",
"reputation-system-disabled": "نظام السمعة معطل", "reputation-system-disabled": "نظام السمعة معطل",
"downvoting-disabled": "التصويتات السلبية معطلة", "downvoting-disabled": "التصويتات السلبية معطلة",
"not-enough-reputation-to-downvote": "ليس لديك سمعة تكفي لإضافة صوت سلبي لهذا الموضوع", "not-enough-reputation-to-downvote": "ليس لديك سمعة تكفي لإضافة صوت سلبي لهذا الموضوع",
@ -78,6 +79,6 @@
"reload-failed": "المنتدى واجه مشكلة أثناء إعادة التحميل: \"%1\". سيواصل المنتدى خدمة العملاء السابقين لكن يجب عليك إلغاء أي تغيير قمت به قبل إعادة التحميل.", "reload-failed": "المنتدى واجه مشكلة أثناء إعادة التحميل: \"%1\". سيواصل المنتدى خدمة العملاء السابقين لكن يجب عليك إلغاء أي تغيير قمت به قبل إعادة التحميل.",
"registration-error": "حدث خطأ أثناء التسجيل", "registration-error": "حدث خطأ أثناء التسجيل",
"parse-error": "Something went wrong while parsing server response", "parse-error": "Something went wrong while parsing server response",
"wrong-login-type-email": "Please use your email to login", "wrong-login-type-email": "الرجاء استعمال بريدك اﻹلكتروني للدخول",
"wrong-login-type-username": "Please use your username to login" "wrong-login-type-username": "الرجاء استعمال اسم المستخدم الخاص بك للدخول"
} }

@ -27,7 +27,7 @@
"header.tags": "وسم", "header.tags": "وسم",
"header.popular": "الأكثر شهرة", "header.popular": "الأكثر شهرة",
"header.users": "المستخدمين", "header.users": "المستخدمين",
"header.groups": "Groups", "header.groups": "المجموعات",
"header.chats": "المحادثات", "header.chats": "المحادثات",
"header.notifications": "التنبيهات", "header.notifications": "التنبيهات",
"header.search": "بحث", "header.search": "بحث",
@ -75,7 +75,7 @@
"updated.title": "تم تحديث المنتدى", "updated.title": "تم تحديث المنتدى",
"updated.message": "لقد تم تحديث المنتدى إلى آخر نسخة للتو. المرجو إعادة تحميل الصفحة.", "updated.message": "لقد تم تحديث المنتدى إلى آخر نسخة للتو. المرجو إعادة تحميل الصفحة.",
"privacy": "الخصوصية", "privacy": "الخصوصية",
"follow": "Follow", "follow": "متابعة",
"unfollow": "Unfollow", "unfollow": "إلغاء المتابعة",
"delete_all": "حذف الكل" "delete_all": "حذف الكل"
} }

@ -18,10 +18,10 @@
"details.private": "خاص", "details.private": "خاص",
"details.grant": "منح/سحب المِلكية", "details.grant": "منح/سحب المِلكية",
"details.kick": "طرد", "details.kick": "طرد",
"details.owner_options": "تدبير المجموعة", "details.owner_options": "إدارة المجموعة",
"details.group_name": "اسم المجموعة", "details.group_name": "اسم المجموعة",
"details.member_count": "Member Count", "details.member_count": "عدد اﻷعضاء",
"details.creation_date": "Creation Date", "details.creation_date": "تاريخ الإنشاء",
"details.description": "الوصف", "details.description": "الوصف",
"details.badge_preview": "معاينة الوسام", "details.badge_preview": "معاينة الوسام",
"details.change_icon": "تغيير الأيقونة", "details.change_icon": "تغيير الأيقونة",

@ -7,5 +7,5 @@
"alternative_logins": "تسجيلات الدخول البديلة", "alternative_logins": "تسجيلات الدخول البديلة",
"failed_login_attempt": "فشلت محاولة تسجيل الدخول، يرجى المحاولة مرة أخرى.", "failed_login_attempt": "فشلت محاولة تسجيل الدخول، يرجى المحاولة مرة أخرى.",
"login_successful": "قمت بتسجيل الدخول بنجاح!", "login_successful": "قمت بتسجيل الدخول بنجاح!",
"dont_have_account": م تفتح حسابك بعد؟" "dont_have_account": ا تملك حساب؟"
} }

@ -16,8 +16,8 @@
"chat.thirty_days": "30 يومًا", "chat.thirty_days": "30 يومًا",
"chat.three_months": "3 أشهر", "chat.three_months": "3 أشهر",
"composer.compose": "Compose", "composer.compose": "Compose",
"composer.show_preview": "Show Preview", "composer.show_preview": "عرض المعاينة",
"composer.hide_preview": "Hide Preview", "composer.hide_preview": "إخفاء المعاينة",
"composer.user_said_in": "%1 كتب في %2", "composer.user_said_in": "%1 كتب في %2",
"composer.user_said": "%1 كتب:", "composer.user_said": "%1 كتب:",
"composer.discard": "هل أنت متأكد أنك تريد التخلي عن التغييرات؟", "composer.discard": "هل أنت متأكد أنك تريد التخلي عن التغييرات؟",

@ -1,5 +1,5 @@
{ {
"title": "تنبيهات", "title": "التنبيهات",
"no_notifs": "ليس لديك أية تنبيهات جديدة", "no_notifs": "ليس لديك أية تنبيهات جديدة",
"see_all": "معاينة كل التنبيهات", "see_all": "معاينة كل التنبيهات",
"mark_all_read": "اجعل كل التنبيهات مقروءة", "mark_all_read": "اجعل كل التنبيهات مقروءة",

@ -1,11 +1,11 @@
{ {
"home": "الصفحة الرئيسية", "home": "الصفحة الرئيسية",
"unread": "المواضيع غير المقروءة", "unread": "المواضيع الغير مقروءة",
"popular": "المواضيع الأكثر شهرة", "popular": "المواضيع الأكثر شهرة",
"recent": "المواضيع الحديثة", "recent": "المواضيع الحديثة",
"users": "المستخدمون المسجلون", "users": "اﻷعضاء المسجلون",
"notifications": "التنبيهات", "notifications": "التنبيهات",
"tags": "Tags", "tags": "الكلمات الدلالية",
"tag": "Topics tagged under \"%1\"", "tag": "Topics tagged under \"%1\"",
"user.edit": "تعديل \"%1\"", "user.edit": "تعديل \"%1\"",
"user.following": "المستخدمون الذين يتبعهم %1", "user.following": "المستخدمون الذين يتبعهم %1",
@ -15,7 +15,7 @@
"user.groups": "%1's Groups", "user.groups": "%1's Groups",
"user.favourites": "مفضلات %1", "user.favourites": "مفضلات %1",
"user.settings": "خيارات المستخدم", "user.settings": "خيارات المستخدم",
"user.watched": "Topics watched by %1", "user.watched": "المواضيع المتابعة من قبل %1 ",
"maintenance.text": "جاري صيانة %1. المرجو العودة لاحقًا.", "maintenance.text": "جاري صيانة %1. المرجو العودة لاحقًا.",
"maintenance.messageIntro": "بالإضافة إلى ذلك، قام مدبر النظام بترك هذه الرسالة:" "maintenance.messageIntro": "بالإضافة إلى ذلك، قام مدبر النظام بترك هذه الرسالة:"
} }

@ -5,15 +5,15 @@
"month": "شهر", "month": "شهر",
"year": "سنة", "year": "سنة",
"alltime": "دائمًا", "alltime": "دائمًا",
"no_recent_topics": "لاوجود لمشاركات جديدة", "no_recent_topics": "لايوجد مواضيع جديدة",
"no_popular_topics": "There are no popular topics.", "no_popular_topics": "There are no popular topics.",
"there-is-a-new-topic": "There is a new topic.", "there-is-a-new-topic": "يوجد موضوع جديد",
"there-is-a-new-topic-and-a-new-post": "There is a new topic and a new post.", "there-is-a-new-topic-and-a-new-post": "يوجد موضوع جديد و رد جديد",
"there-is-a-new-topic-and-new-posts": "There is a new topic and %1 new posts.", "there-is-a-new-topic-and-new-posts": "يوجد موضوع جديد و %1 ردود جديدة ",
"there-are-new-topics": "There are %1 new topics.", "there-are-new-topics": "يوجد %1 مواضيع جديدة",
"there-are-new-topics-and-a-new-post": "There are %1 new topics and a new post.", "there-are-new-topics-and-a-new-post": "يوجد %1 مواضيع جديدة و رد جديد",
"there-are-new-topics-and-new-posts": "There are %1 new topics and %2 new posts.", "there-are-new-topics-and-new-posts": "يوجد %1 مواضيع جديدة و %2 مشاركات جديدة",
"there-is-a-new-post": "There is a new post.", "there-is-a-new-post": "يوجد مشاركة جديدة",
"there-are-new-posts": "There are %1 new posts.", "there-are-new-posts": "يوجد %1 مشاركات جديدة",
"click-here-to-reload": "Click here to reload." "click-here-to-reload": "إضغط هنا لإعادة التحميل"
} }

@ -1,18 +1,18 @@
{ {
"register": "تسجيل", "register": "تسجيل",
"help.email": "افتراضيا، سيتم إخفاء بريدك الإلكتروني من الجمهور.", "help.email": "افتراضيا، سيتم إخفاء بريدك الإلكتروني من العامة.",
"help.username_restrictions": "اسم مستخدم فريدة من نوعها بين1% و2% حرفا. يمكن للآخرين ذكرك @ <'span id='your-username> اسم المستخدم </span>.", "help.username_restrictions": "اسم مستخدم فريدة من نوعها بين1% و2% حرفا. يمكن للآخرين ذكرك @ <'span id='your-username> اسم المستخدم </span>.",
"help.minimum_password_length": "كلمتك السر يجب أن تكون على الأقل متألفة من 1% أحرف", "help.minimum_password_length": "كلمة المرور يجب أن تكون على الأقل بها 1% أحرف",
"email_address": "عنوان البريد الإلكتروني", "email_address": "عنوان البريد الإلكتروني",
"email_address_placeholder": "ادخل عنوان البريد الإلكتروني", "email_address_placeholder": "ادخل عنوان البريد الإلكتروني",
"username": "اسم المستخدم", "username": "اسم المستخدم",
"username_placeholder": "أدخل اسم المستخدم", "username_placeholder": "أدخل اسم المستخدم",
"password": "كلمة السر", "password": "كلمة المرور",
"password_placeholder": "أدخل كلمة السر", "password_placeholder": "أدخل كلمة المرور",
"confirm_password": "تأكيد كلمة السر", "confirm_password": "تأكيد كلمة المرور",
"confirm_password_placeholder": "تأكيد كلمة السر", "confirm_password_placeholder": "تأكيد كلمة المرور",
"register_now_button": "قم بالتسجيل الآن", "register_now_button": "قم بالتسجيل الآن",
"alternative_registration": "طريقة تسجيل بديلة", "alternative_registration": "طريقة تسجيل بديلة",
"terms_of_use": "قوانين الاستخدام", "terms_of_use": "شروط الاستخدام",
"agree_to_terms_of_use": "أوافق على قوانين الاستخدام" "agree_to_terms_of_use": "أوافق على شروط الاستخدام"
} }

@ -1,12 +1,12 @@
{ {
"reset_password": "إعادة تعيين كلمة السر", "reset_password": "إعادة تعيين كلمة المرور",
"update_password": "تحديث كلمة السر", "update_password": "تحديث كلمة المرور",
"password_changed.title": "تم تغير كلمة السر", "password_changed.title": "تم تغير كلمة المرور",
"password_changed.message": "<p>تم تغير كلمة السر بنجاح. يرجى <a href='/login'>إعادة الدخول</a></p>", "password_changed.message": "<p>تم تغير كلمة المرور بنجاح، الرجاء <a href='/login'>إعادة الدخول</a></p>",
"wrong_reset_code.title": "رمز إعادة التعيين غير صحيح", "wrong_reset_code.title": "رمز إعادة التعيين غير صحيح",
"wrong_reset_code.message": "رمز إعادة التعين غير صحيح، يرجى المحاولة مرة أخرى أو <a href='/reset'>اطلب رمزا جديدا</a>", "wrong_reset_code.message": "رمز إعادة التعين غير صحيح، يرجى المحاولة مرة أخرى أو <a href='/reset'>اطلب رمزا جديدا</a>",
"new_password": "كلمة السر الجديدة", "new_password": "كلمة المرور الجديدة",
"repeat_password": "تأكيد كلمة السر", "repeat_password": "تأكيد كلمة المرور",
"enter_email": "يرجى إدخال <strong>عنوان البريد الإلكتروني</strong> الخاص بك وسوف نرسل لك رسالة بالبريد الالكتروني مع تعليمات حول كيفية إستعادة حسابك.", "enter_email": "يرجى إدخال <strong>عنوان البريد الإلكتروني</strong> الخاص بك وسوف نرسل لك رسالة بالبريد الالكتروني مع تعليمات حول كيفية إستعادة حسابك.",
"enter_email_address": "ادخل عنوان البريد الإلكتروني", "enter_email_address": "ادخل عنوان البريد الإلكتروني",
"password_reset_sent": "إعادة تعيين كلمة السر أرسلت", "password_reset_sent": "إعادة تعيين كلمة السر أرسلت",

@ -1,40 +1,40 @@
{ {
"results_matching": "%1 نتيجة (نتائج) موافقة ل \"%2\", (%3 ثواني)", "results_matching": "%1 نتيجة (نتائج) موافقة ل \"%2\", (%3 ثواني)",
"no-matches": "No matches found", "no-matches": "No matches found",
"advanced-search": "Advanced Search", "advanced-search": "بحث متقدم",
"in": "In", "in": "في",
"titles": "Titles", "titles": "العناوين",
"titles-posts": "Titles and Posts", "titles-posts": "العناوين والمشاركات",
"posted-by": "Posted by", "posted-by": "Posted by",
"in-categories": "In Categories", "in-categories": "في الفئات",
"search-child-categories": "Search child categories", "search-child-categories": "بحث في الفئات الفرعية",
"reply-count": "Reply Count", "reply-count": "عدد المشاركات",
"at-least": "At least", "at-least": "على اﻷقل",
"at-most": "At most", "at-most": "على اﻷكثر",
"post-time": "Post time", "post-time": "تاريخ المشاركة",
"newer-than": "Newer than", "newer-than": "أحدث من",
"older-than": "Older than", "older-than": "أقدم من",
"any-date": "Any date", "any-date": "أي وقت",
"yesterday": "Yesterday", "yesterday": "أمس",
"one-week": "One week", "one-week": "أسبوع",
"two-weeks": "Two weeks", "two-weeks": "أسبوعان",
"one-month": "One month", "one-month": "شهر",
"three-months": "Three months", "three-months": "ثلاثة أشهر",
"six-months": "Six months", "six-months": "ستة أشهر",
"one-year": "One year", "one-year": "عام",
"sort-by": "Sort by", "sort-by": "Sort by",
"last-reply-time": "Last reply time", "last-reply-time": "تاريخ آخر رد",
"topic-title": "Topic title", "topic-title": "عنوان الموضوع",
"number-of-replies": "Number of replies", "number-of-replies": "عدد الردود",
"number-of-views": "Number of views", "number-of-views": "عدد المشاهدات",
"topic-start-date": "Topic start date", "topic-start-date": "تاريخ بدأ الموضوع",
"username": "Username", "username": "اسم المستخدم",
"category": "Category", "category": "فئة",
"descending": "In descending order", "descending": "In descending order",
"ascending": "In ascending order", "ascending": "In ascending order",
"save-preferences": "Save preferences", "save-preferences": "حفظ التفضيلات",
"clear-preferences": "Clear preferences", "clear-preferences": "ازالة التفضيلات",
"search-preferences-saved": "Search preferences saved", "search-preferences-saved": "تم حفظ تفضيلات البحث",
"search-preferences-cleared": "Search preferences cleared", "search-preferences-cleared": "تم ازالة تفضيلات البحث",
"show-results-as": "Show results as" "show-results-as": "عرض النتائج كـ"
} }

@ -1,7 +1,7 @@
{ {
"no_tag_topics": "لاوجود لمواضيع تحمل هذا الوسم.", "no_tag_topics": "لا يوجد مواضيع بهذه الكلمة الدلالية.",
"tags": "بطاقات", "tags": "الكلمات الدلالية",
"enter_tags_here": "Enter tags here, between %1 and %2 characters each.", "enter_tags_here": "Enter tags here, between %1 and %2 characters each.",
"enter_tags_here_short": "أدخل البطاقات...", "enter_tags_here_short": "أدخل الكلمات الدلالية...",
"no_tags": "لاتوجد هناك بطاقات بعد." "no_tags": "لا يوجد كلمات دلالية بعد."
} }

@ -5,6 +5,7 @@
"no_topics_found": "لا توجد مواضيع !", "no_topics_found": "لا توجد مواضيع !",
"no_posts_found": "لا توجد مشاركات!", "no_posts_found": "لا توجد مشاركات!",
"post_is_deleted": "هذه المشاركة محذوفة!", "post_is_deleted": "هذه المشاركة محذوفة!",
"topic_is_deleted": "هذا الموضوع محذوف",
"profile": "الملف الشخصي", "profile": "الملف الشخصي",
"posted_by": "كتب من طرف %1", "posted_by": "كتب من طرف %1",
"posted_by_guest": "كتب من طرف زائر", "posted_by_guest": "كتب من طرف زائر",
@ -12,21 +13,21 @@
"notify_me": "تلق تنبيهات بالردود الجديدة في هذا الموضوع", "notify_me": "تلق تنبيهات بالردود الجديدة في هذا الموضوع",
"quote": "اقتبس", "quote": "اقتبس",
"reply": "رد", "reply": "رد",
"guest-login-reply": "Log in to reply", "guest-login-reply": "يجب عليك تسجيل الدخول للرد",
"edit": "تعديل", "edit": "تعديل",
"delete": "حذف", "delete": "حذف",
"purge": "تطهير", "purge": "تطهير",
"restore": "استعادة", "restore": "استعادة",
"move": "انقل", "move": "نقل",
"fork": "فرع", "fork": "فرع",
"link": "رابط", "link": "رابط",
"share": "نشر", "share": "نشر",
"tools": "أدوات", "tools": "أدوات",
"flag": "اشعار بمشاركة مخلة", "flag": "تبليغ",
"locked": "مقفل", "locked": "مقفل",
"bookmark_instructions": "انقر هنا للإكمال أو أغلق للإلغاء.", "bookmark_instructions": "إضغط هنا للعودة إلى آخر موضع أو غلق للإلغاء",
"flag_title": "إشعار بمشاركة مخلة.", "flag_title": "إشعار بمشاركة مخلة.",
"flag_confirm": "هل تريد حقًّا أن تشعر بهذه المشاركة على أنها مخلة؟", "flag_confirm": "هل تريد حقًّا التبليغ بهذه المشاركة؟",
"flag_success": "تم الإشعار بهذه المشاركة على أنها مخلة", "flag_success": "تم الإشعار بهذه المشاركة على أنها مخلة",
"deleted_message": "هذه المشاركة محذوفة. فقط من لهم صلاحية الإشراف على ا لمشاركات يمكنهم معاينتها.", "deleted_message": "هذه المشاركة محذوفة. فقط من لهم صلاحية الإشراف على ا لمشاركات يمكنهم معاينتها.",
"following_topic.message": "ستستلم تنبيها عند كل مشاركة جديدة في هذا الموضوع.", "following_topic.message": "ستستلم تنبيها عند كل مشاركة جديدة في هذا الموضوع.",
@ -75,7 +76,7 @@
"fork_no_pids": "لم تختر أي مشاركة", "fork_no_pids": "لم تختر أي مشاركة",
"fork_success": "تم إنشاء فرع للموضوع بنجاح! إضغط هنا لمعاينة الفرع.", "fork_success": "تم إنشاء فرع للموضوع بنجاح! إضغط هنا لمعاينة الفرع.",
"composer.title_placeholder": "أدخل عنوان موضوعك هنا...", "composer.title_placeholder": "أدخل عنوان موضوعك هنا...",
"composer.handle_placeholder": "Name", "composer.handle_placeholder": "اﻹسم",
"composer.discard": "نبذ التغييرات", "composer.discard": "نبذ التغييرات",
"composer.submit": "حفظ", "composer.submit": "حفظ",
"composer.replying_to": "الرد على %1", "composer.replying_to": "الرد على %1",
@ -95,5 +96,5 @@
"oldest_to_newest": "من الأقدم إلى الأحدث", "oldest_to_newest": "من الأقدم إلى الأحدث",
"newest_to_oldest": "من الأحدث إلى الأقدم", "newest_to_oldest": "من الأحدث إلى الأقدم",
"most_votes": "الأكثر تصويتًا", "most_votes": "الأكثر تصويتًا",
"most_posts": "Most posts" "most_posts": "اﻷكثر رداً"
} }

@ -3,7 +3,7 @@
"no_unread_topics": "ليس هناك أي موضوع غير مقروء", "no_unread_topics": "ليس هناك أي موضوع غير مقروء",
"load_more": "حمل المزيد", "load_more": "حمل المزيد",
"mark_as_read": "حدد غير مقروء", "mark_as_read": "حدد غير مقروء",
"selected": "المختارة", "selected": "المحددة",
"all": "الكل", "all": "الكل",
"topics_marked_as_read.success": "تم تحديد المواضيع على أنها مقروءة!" "topics_marked_as_read.success": "تم تحديد المواضيع على أنها مقروءة!"
} }

@ -1,9 +1,9 @@
{ {
"banned": "محظور", "banned": "محظور",
"offline": "ليس موجود حالياً", "offline": "غير متصل",
"username": "إسم المستخدم", "username": "إسم المستخدم",
"joindate": "Join Date", "joindate": "تاريخ الإنضمام",
"postcount": "Post Count", "postcount": "عدد المشاركات",
"email": "البريد الإلكتروني", "email": "البريد الإلكتروني",
"confirm_email": "تأكيد عنوان البريد الإلكتروني", "confirm_email": "تأكيد عنوان البريد الإلكتروني",
"delete_account": "حذف الحساب", "delete_account": "حذف الحساب",
@ -15,25 +15,26 @@
"joined": "تاريخ التسجيل", "joined": "تاريخ التسجيل",
"lastonline": "تاريخ آخر دخول", "lastonline": "تاريخ آخر دخول",
"profile": "الملف الشخصي", "profile": "الملف الشخصي",
"profile_views": "عدد مشاهدات الملف الشخصي", "profile_views": "عدد المشاهدات",
"reputation": "السمعة", "reputation": "السمعة",
"favourites": "المفضلات", "favourites": "التفضيلات",
"watched": "Watched", "watched": "متابع",
"followers": "المتابعون", "followers": "المتابعون",
"following": "يتابع", "following": "يتابع",
"aboutme": "معلومة عنك او السيرة الذاتية",
"signature": "توقيع", "signature": "توقيع",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "عيد ميلاد", "birthday": "عيد ميلاد",
"chat": "محادثة", "chat": "محادثة",
"follow": "تابع", "follow": "تابع",
"unfollow": "إلغاء المتابعة", "unfollow": "إلغاء المتابعة",
"more": "More", "more": "المزيد",
"profile_update_success": "تم تحديث الملف الشخصي بنجاح", "profile_update_success": "تم تحديث الملف الشخصي بنجاح",
"change_picture": "تغيير الصورة", "change_picture": "تغيير الصورة",
"edit": "تعديل", "edit": "تعديل",
"uploaded_picture": "الصورة المرفوعة", "uploaded_picture": "الصورة المرفوعة",
"upload_new_picture": "رفع صورة جديدة", "upload_new_picture": "رفع صورة جديدة",
"upload_new_picture_from_url": "رفع صورة جديدة بواسطة رابط", "upload_new_picture_from_url": "رفع صورة جديدة من رابط",
"current_password": "كلمة السر الحالية", "current_password": "كلمة السر الحالية",
"change_password": "تغيير كلمة السر", "change_password": "تغيير كلمة السر",
"change_password_error": "كلمة سر غير صحيحة", "change_password_error": "كلمة سر غير صحيحة",
@ -60,7 +61,7 @@
"digest_monthly": "شهريًّا", "digest_monthly": "شهريًّا",
"send_chat_notifications": "استلام رسالة إلكترونية عند ورود محادثة وأنا غير متصل.", "send_chat_notifications": "استلام رسالة إلكترونية عند ورود محادثة وأنا غير متصل.",
"send_post_notifications": "Send an email when replies are made to topics I am subscribed to", "send_post_notifications": "Send an email when replies are made to topics I am subscribed to",
"settings-require-reload": "Some setting changes require a reload. Click here to reload the page.", "settings-require-reload": "تغيير بعض اﻹعدادات يتطلب تحديث الصفحة. إضغط هنا لتحديث الصفحة",
"has_no_follower": "هذا المستخدم ليس لديه أي متابع :(", "has_no_follower": "هذا المستخدم ليس لديه أي متابع :(",
"follows_no_one": "هذا المستخدم لا يتابع أحد :(", "follows_no_one": "هذا المستخدم لا يتابع أحد :(",
"has_no_posts": "هذا المستخدم لم يكتب أي شيء بعد.", "has_no_posts": "هذا المستخدم لم يكتب أي شيء بعد.",
@ -71,13 +72,13 @@
"paginate_description": "Paginate topics and posts instead of using infinite scroll", "paginate_description": "Paginate topics and posts instead of using infinite scroll",
"topics_per_page": "المواضيع في كل صفحة", "topics_per_page": "المواضيع في كل صفحة",
"posts_per_page": "الردود في كل صفحة", "posts_per_page": "الردود في كل صفحة",
"notification_sounds": "Play a sound when you receive a notification", "notification_sounds": "تشغيل صوت عند تلقي تنبيه",
"browsing": "خيارات التصفح", "browsing": "خيارات التصفح",
"open_links_in_new_tab": "Open outgoing links in new tab", "open_links_in_new_tab": "فتح الروابط الخارجية في نافدة جديدة",
"enable_topic_searching": "تفعيل خاصية البحث داخل المواضيع", "enable_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 behaviour 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_reply_to": "متابعة المواضيع التي تقوم بالرد فيها",
"follow_topics_you_create": "Follow topics you create", "follow_topics_you_create": "متابعة المواضيع التي تنشئها",
"grouptitle": "Select the group title you would like to display", "grouptitle": "Select the group title you would like to display",
"no-group-title": "No group title" "no-group-title": "لا يوجد عنوان للمجموعة"
} }

@ -1,12 +1,12 @@
{ {
"latest_users": "أحدث المستخدمين", "latest_users": "أحدث الأعضاء",
"top_posters": "أكثر المشتركين", "top_posters": "اﻷكثر مشاركة",
"most_reputation": "أعلى سمعة", "most_reputation": "أعلى سمعة",
"search": "بحث", "search": "بحث",
"enter_username": "أدخل اسم مستخدم للبحث", "enter_username": "أدخل اسم مستخدم للبحث",
"load_more": "حمل المزيد", "load_more": "حمل المزيد",
"users-found-search-took": "%1 user(s) found! Search took %2 seconds.", "users-found-search-took": "%1 user(s) found! Search took %2 seconds.",
"filter-by": "Filter By", "filter-by": "Filter By",
"online-only": "Online only", "online-only": "المتصلون فقط",
"picture-only": "Picture only" "picture-only": "صورة فقط"
} }

@ -2,7 +2,7 @@
"invalid-data": "Невалидни данни", "invalid-data": "Невалидни данни",
"not-logged-in": "Изглежда не сте влезли в системата.", "not-logged-in": "Изглежда не сте влезли в системата.",
"account-locked": "Вашият акаунт беше заключен временно", "account-locked": "Вашият акаунт беше заключен временно",
"search-requires-login": "Търсенето изисква регистриран акаунт! Моля, влезте или се регистрирайте!", "search-requires-login": "Търсенето изисква акаунт моля, влезте или се регистрирайте.",
"invalid-cid": "Невалиден идентификатор на категория", "invalid-cid": "Невалиден идентификатор на категория",
"invalid-tid": "Невалиден идентификатор на тема", "invalid-tid": "Невалиден идентификатор на тема",
"invalid-pid": "Невалиден идентификатор на публикация", "invalid-pid": "Невалиден идентификатор на публикация",
@ -68,6 +68,7 @@
"invalid-file": "Грешен файл", "invalid-file": "Грешен файл",
"uploads-are-disabled": "Качването не е разрешено", "uploads-are-disabled": "Качването не е разрешено",
"signature-too-long": "Съжаляваме, но подписът Ви трябва да съдържа не повече от %1 символ(а).", "signature-too-long": "Съжаляваме, но подписът Ви трябва да съдържа не повече от %1 символ(а).",
"about-me-too-long": "Съжаляваме, но информацията за Вас трябва да съдържа не повече от %1 символ(а).",
"cant-chat-with-yourself": "Не можете да пишете чат съобщение на себе си!", "cant-chat-with-yourself": "Не можете да пишете чат съобщение на себе си!",
"chat-restricted": "Този потребител е ограничил чат съобщенията до себе си. Той трябва първо да Ви последва, преди да можете да си пишете с него.", "chat-restricted": "Този потребител е ограничил чат съобщенията до себе си. Той трябва първо да Ви последва, преди да можете да си пишете с него.",
"too-many-messages": "Изпратили сте твърде много съобщения. Моля, изчакайте малко.", "too-many-messages": "Изпратили сте твърде много съобщения. Моля, изчакайте малко.",

@ -5,6 +5,7 @@
"no_topics_found": "Няма открити теми!", "no_topics_found": "Няма открити теми!",
"no_posts_found": "Няма открити публикации!", "no_posts_found": "Няма открити публикации!",
"post_is_deleted": "Тази публикация е изтрита!", "post_is_deleted": "Тази публикация е изтрита!",
"topic_is_deleted": "Тази тема е изтрита!",
"profile": "Профил", "profile": "Профил",
"posted_by": "Публикувано от %1", "posted_by": "Публикувано от %1",
"posted_by_guest": "Публикувано от гост", "posted_by_guest": "Публикувано от гост",

@ -21,6 +21,7 @@
"watched": "Наблюдавани", "watched": "Наблюдавани",
"followers": "Последователи", "followers": "Последователи",
"following": "Следва", "following": "Следва",
"aboutme": "За мен",
"signature": "Подпис", "signature": "Подпис",
"gravatar": "Граватар", "gravatar": "Граватар",
"birthday": "Рождена дата", "birthday": "Рождена дата",

@ -2,7 +2,7 @@
"invalid-data": "ভুল তথ্য", "invalid-data": "ভুল তথ্য",
"not-logged-in": "আপনি লগিন করেননি", "not-logged-in": "আপনি লগিন করেননি",
"account-locked": "আপনার অ্যাকাউন্ট সাময়িকভাবে লক করা হয়েছে", "account-locked": "আপনার অ্যাকাউন্ট সাময়িকভাবে লক করা হয়েছে",
"search-requires-login": "অনুসন্ধান করার জন্য একটি অ্যাকাউন্ট প্রয়োজন! অনুগ্রহপূর্বক প্রবেশ করুন অথবা নিবন্ধন করুন!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "ভুল বিভাগ নাম্বার", "invalid-cid": "ভুল বিভাগ নাম্বার",
"invalid-tid": "ভুল টপিক নাম্বার", "invalid-tid": "ভুল টপিক নাম্বার",
"invalid-pid": "ভুল পোস্ট নাম্বার", "invalid-pid": "ভুল পোস্ট নাম্বার",
@ -68,6 +68,7 @@
"invalid-file": "ভুল ফাইল", "invalid-file": "ভুল ফাইল",
"uploads-are-disabled": "আপলোড নিষ্ক্রিয় করা", "uploads-are-disabled": "আপলোড নিষ্ক্রিয় করা",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "আপনি নিজের সাথে চ্যাট করতে পারবেন না!", "cant-chat-with-yourself": "আপনি নিজের সাথে চ্যাট করতে পারবেন না!",
"chat-restricted": "এই সদস্য তার বার্তালাপ সংরক্ষিত রেখেছেন। এই সদস্য আপনাকে ফলো করার পরই কেবলমাত্র আপনি তার সাথে চ্যাট করতে পারবেন", "chat-restricted": "এই সদস্য তার বার্তালাপ সংরক্ষিত রেখেছেন। এই সদস্য আপনাকে ফলো করার পরই কেবলমাত্র আপনি তার সাথে চ্যাট করতে পারবেন",
"too-many-messages": "You have sent too many messages, please wait awhile.", "too-many-messages": "You have sent too many messages, please wait awhile.",

@ -5,6 +5,7 @@
"no_topics_found": "কোন টপিক পাওয়া যায়নি!", "no_topics_found": "কোন টপিক পাওয়া যায়নি!",
"no_posts_found": "কোন পোস্ট পাওয়া যায়নি", "no_posts_found": "কোন পোস্ট পাওয়া যায়নি",
"post_is_deleted": "এই পোস্টটি মুছে ফেলা হয়েছে!", "post_is_deleted": "এই পোস্টটি মুছে ফেলা হয়েছে!",
"topic_is_deleted": "This topic is deleted!",
"profile": "প্রোফাইল ", "profile": "প্রোফাইল ",
"posted_by": "পোস্ট করেছেন %1", "posted_by": "পোস্ট করেছেন %1",
"posted_by_guest": "অতিথি পোস্ট ", "posted_by_guest": "অতিথি পোস্ট ",

@ -21,6 +21,7 @@
"watched": "Watched", "watched": "Watched",
"followers": "যাদের অনুসরণ করছেন", "followers": "যাদের অনুসরণ করছেন",
"following": "যারা আপনাকে অনুসরণ করছে", "following": "যারা আপনাকে অনুসরণ করছে",
"aboutme": "About me",
"signature": "স্বাক্ষর", "signature": "স্বাক্ষর",
"gravatar": "গ্রাভাতার", "gravatar": "গ্রাভাতার",
"birthday": "জন্মদিন", "birthday": "জন্মদিন",

@ -2,7 +2,7 @@
"invalid-data": "Neplatná data", "invalid-data": "Neplatná data",
"not-logged-in": "Zdá se, že nejste přihlášen(a)", "not-logged-in": "Zdá se, že nejste přihlášen(a)",
"account-locked": "Váš účet byl dočasně uzamčen", "account-locked": "Váš účet byl dočasně uzamčen",
"search-requires-login": "Chcete-li vyhledávat, musíte mít účet. Přihlašte se nebo zaregistrujte, prosím.", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "Neplatné ID kategorie", "invalid-cid": "Neplatné ID kategorie",
"invalid-tid": "Neplatné ID tématu", "invalid-tid": "Neplatné ID tématu",
"invalid-pid": "Neplatné ID příspěvku", "invalid-pid": "Neplatné ID příspěvku",
@ -68,6 +68,7 @@
"invalid-file": "Neplatný soubor", "invalid-file": "Neplatný soubor",
"uploads-are-disabled": "Nahrávání je zakázáno", "uploads-are-disabled": "Nahrávání je zakázáno",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Nemůžete chatovat sami se sebou!", "cant-chat-with-yourself": "Nemůžete chatovat sami se sebou!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them", "chat-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.", "too-many-messages": "You have sent too many messages, please wait awhile.",

@ -5,6 +5,7 @@
"no_topics_found": "Nebyla nalezena žádná témata!", "no_topics_found": "Nebyla nalezena žádná témata!",
"no_posts_found": "Nebyly nalezeny žádné příspěvky!", "no_posts_found": "Nebyly nalezeny žádné příspěvky!",
"post_is_deleted": "Tento příspěvek je vymazán!", "post_is_deleted": "Tento příspěvek je vymazán!",
"topic_is_deleted": "This topic is deleted!",
"profile": "Profil", "profile": "Profil",
"posted_by": "Posted by %1", "posted_by": "Posted by %1",
"posted_by_guest": "Posted by Guest", "posted_by_guest": "Posted by Guest",

@ -21,6 +21,7 @@
"watched": "Watched", "watched": "Watched",
"followers": "Sledují ho", "followers": "Sledují ho",
"following": "Sleduje", "following": "Sleduje",
"aboutme": "About me",
"signature": "Podpis", "signature": "Podpis",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "Datum narození", "birthday": "Datum narození",

@ -2,7 +2,7 @@
"invalid-data": "Daten ungültig", "invalid-data": "Daten ungültig",
"not-logged-in": "Du bist nicht angemeldet.", "not-logged-in": "Du bist nicht angemeldet.",
"account-locked": "Dein Account wurde vorübergehend gesperrt.", "account-locked": "Dein Account wurde vorübergehend gesperrt.",
"search-requires-login": "Die Suche erfordert ein Konto! Bitte log dich ein oder registriere dich!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "Ungültige Kategorie-ID", "invalid-cid": "Ungültige Kategorie-ID",
"invalid-tid": "Ungültige Themen-ID", "invalid-tid": "Ungültige Themen-ID",
"invalid-pid": "Ungültige Beitrags-ID", "invalid-pid": "Ungültige Beitrags-ID",
@ -68,6 +68,7 @@
"invalid-file": "Datei ungültig", "invalid-file": "Datei ungültig",
"uploads-are-disabled": "Uploads sind deaktiviert", "uploads-are-disabled": "Uploads sind deaktiviert",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Du kannst nicht mit dir selber chatten!", "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.", "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.", "too-many-messages": "Du hast zu viele Nachrichten versandt, bitte warte eine Weile.",

@ -5,6 +5,7 @@
"no_topics_found": "Keine passenden Themen gefunden.", "no_topics_found": "Keine passenden Themen gefunden.",
"no_posts_found": "Keine Beiträge gefunden!", "no_posts_found": "Keine Beiträge gefunden!",
"post_is_deleted": "Dieser Beitrag wurde gelöscht!", "post_is_deleted": "Dieser Beitrag wurde gelöscht!",
"topic_is_deleted": "This topic is deleted!",
"profile": "Profil", "profile": "Profil",
"posted_by": "Geschrieben von %1", "posted_by": "Geschrieben von %1",
"posted_by_guest": "Verfasst von einem Gast", "posted_by_guest": "Verfasst von einem Gast",

@ -21,6 +21,7 @@
"watched": "Beobachtet", "watched": "Beobachtet",
"followers": "Folger", "followers": "Folger",
"following": "Folgt", "following": "Folgt",
"aboutme": "About me",
"signature": "Signatur", "signature": "Signatur",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "Geburtstag", "birthday": "Geburtstag",
@ -75,7 +76,7 @@
"browsing": "Stöbereinstellungen", "browsing": "Stöbereinstellungen",
"open_links_in_new_tab": "Ausgehende Links in neuem Tab öffnen", "open_links_in_new_tab": "Ausgehende Links in neuem Tab öffnen",
"enable_topic_searching": "Suchen innerhalb von Themen aktivieren", "enable_topic_searching": "Suchen innerhalb von Themen aktivieren",
"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": "Wenn aktiviert, ersetzt die im-Thema-Suche die Standardsuche des Browsers. Dadurch kannst du im ganzen Thema suchen, nicht nur im sichtbaren Abschnitt.",
"follow_topics_you_reply_to": "Themen folgen, in denen auf dich geantwortet wird", "follow_topics_you_reply_to": "Themen folgen, in denen auf dich geantwortet wird",
"follow_topics_you_create": "Themen folgen, die du erstellst", "follow_topics_you_create": "Themen folgen, die du erstellst",
"grouptitle": "Wähle den anzuzeigenden Gruppen Titel aus", "grouptitle": "Wähle den anzuzeigenden Gruppen Titel aus",

@ -2,7 +2,7 @@
"invalid-data": "Άκυρα Δεδομένα", "invalid-data": "Άκυρα Δεδομένα",
"not-logged-in": "Φαίνεται πως δεν είσαι συνδεδεμένος/η.", "not-logged-in": "Φαίνεται πως δεν είσαι συνδεδεμένος/η.",
"account-locked": "Ο λογαριασμός σου έχει κλειδωθεί προσωρινά", "account-locked": "Ο λογαριασμός σου έχει κλειδωθεί προσωρινά",
"search-requires-login": "Πρέπει να είσαι συνδεδεμένος/η για να αναζητήσεις! Παρακαλώ συνδέσου ή εγγράψου!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "Άκυρο ID Κατηγορίας", "invalid-cid": "Άκυρο ID Κατηγορίας",
"invalid-tid": "Άκυρο ID Θέματος", "invalid-tid": "Άκυρο ID Θέματος",
"invalid-pid": "Άκυρο ID Δημοσίευσης", "invalid-pid": "Άκυρο ID Δημοσίευσης",
@ -68,6 +68,7 @@
"invalid-file": "Άκυρο Αρχείο", "invalid-file": "Άκυρο Αρχείο",
"uploads-are-disabled": "Το ανέβασμα αρχείων έχει απενεργοποιηθεί", "uploads-are-disabled": "Το ανέβασμα αρχείων έχει απενεργοποιηθεί",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Δεν μπορείς να συνομιλήσεις με τον εαυτό σου!", "cant-chat-with-yourself": "Δεν μπορείς να συνομιλήσεις με τον εαυτό σου!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them", "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.", "too-many-messages": "You have sent too many messages, please wait awhile.",

@ -5,6 +5,7 @@
"no_topics_found": "Δεν βρέθηκαν θέματα!", "no_topics_found": "Δεν βρέθηκαν θέματα!",
"no_posts_found": "Δεν βρέθηκαν δημοσιεύσεις!", "no_posts_found": "Δεν βρέθηκαν δημοσιεύσεις!",
"post_is_deleted": "Αυτή η δημοσίευση έχει διαγραφεί!", "post_is_deleted": "Αυτή η δημοσίευση έχει διαγραφεί!",
"topic_is_deleted": "This topic is deleted!",
"profile": "Προφίλ", "profile": "Προφίλ",
"posted_by": "Δημοσιεύτηκε από τον/την %1", "posted_by": "Δημοσιεύτηκε από τον/την %1",
"posted_by_guest": "Δημοσιεύτηκε από Επισκέπτη", "posted_by_guest": "Δημοσιεύτηκε από Επισκέπτη",

@ -21,6 +21,7 @@
"watched": "Watched", "watched": "Watched",
"followers": "Ακόλουθοι", "followers": "Ακόλουθοι",
"following": "Ακολουθά", "following": "Ακολουθά",
"aboutme": "About me",
"signature": "Υπογραφή", "signature": "Υπογραφή",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "Γενέθλια", "birthday": "Γενέθλια",

@ -2,7 +2,7 @@
"invalid-data": "Invalid Data", "invalid-data": "Invalid Data",
"not-logged-in": "You don't seem to be logged in.", "not-logged-in": "You don't seem to be logged in.",
"account-locked": "Your account has been locked temporarily", "account-locked": "Your account has been locked temporarily",
"search-requires-login": "Searching requires an account! Please login or register!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "Invalid Category ID", "invalid-cid": "Invalid Category ID",
"invalid-tid": "Invalid Topic ID", "invalid-tid": "Invalid Topic ID",
"invalid-pid": "Invalid Post ID", "invalid-pid": "Invalid Post ID",
@ -68,6 +68,7 @@
"invalid-file": "Invalid File", "invalid-file": "Invalid File",
"uploads-are-disabled": "Uploads are disabled", "uploads-are-disabled": "Uploads are disabled",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "You can't chat with yourself!", "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", "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.", "too-many-messages": "You have sent too many messages, please wait awhile.",

@ -5,6 +5,7 @@
"no_topics_found": "No topics found!", "no_topics_found": "No topics found!",
"no_posts_found": "No posts found!", "no_posts_found": "No posts found!",
"post_is_deleted": "This post is deleted!", "post_is_deleted": "This post is deleted!",
"topic_is_deleted": "This topic is deleted!",
"profile": "Profile", "profile": "Profile",
"posted_by": "Posted by %1", "posted_by": "Posted by %1",
"posted_by_guest": "Posted by Guest", "posted_by_guest": "Posted by Guest",

@ -21,6 +21,7 @@
"watched": "Watched", "watched": "Watched",
"followers": "Followers", "followers": "Followers",
"following": "Following", "following": "Following",
"aboutme": "About me",
"signature": "Signature", "signature": "Signature",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "Birthday", "birthday": "Birthday",

@ -2,13 +2,19 @@
"password-reset-requested": "Password Reset Requested - %1!", "password-reset-requested": "Password Reset Requested - %1!",
"welcome-to": "Welcome to %1", "welcome-to": "Welcome to %1",
"invite": "Invitation from %1",
"greeting_no_name": "Hello", "greeting_no_name": "Hello",
"greeting_with_name": "Hello %1", "greeting_with_name": "Hello %1",
"welcome.text1": "Thank you for registering with %1!", "welcome.text1": "Thank you for registering with %1!",
"welcome.text2": "To fully activate your account, we need to verify that you own the email address you registered with.", "welcome.text2": "To fully activate your account, we need to verify that you own the email address you registered with.",
"welcome.text3": "An administrator has accepted your registration application. You can login with your username/password now.",
"welcome.cta": "Click here to confirm your email address", "welcome.cta": "Click here to confirm your email address",
"invitation.text1": "%1 has invited you to join %2",
"invitation.ctr": "Click here to create your account.",
"reset.text1": "We received a request to reset your password, possibly because you have forgotten it. If this is not the case, please ignore this email.", "reset.text1": "We received a request to reset your password, possibly because you have forgotten it. If this is not the case, please ignore this email.",
"reset.text2": "To continue with the password reset, please click on the following link:", "reset.text2": "To continue with the password reset, please click on the following link:",
"reset.cta": "Click here to reset your password", "reset.cta": "Click here to reset your password",

@ -3,7 +3,7 @@
"not-logged-in": "You don't seem to be logged in.", "not-logged-in": "You don't seem to be logged in.",
"account-locked": "Your account has been locked temporarily", "account-locked": "Your account has been locked temporarily",
"search-requires-login": "Searching requires an account! Please login or register!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "Invalid Category ID", "invalid-cid": "Invalid Category ID",
"invalid-tid": "Invalid Topic ID", "invalid-tid": "Invalid Topic ID",
@ -65,6 +65,7 @@
"already-unfavourited": "You have already unfavourited this post", "already-unfavourited": "You have already unfavourited this post",
"cant-ban-other-admins": "You can't ban other admins!", "cant-ban-other-admins": "You can't ban other admins!",
"cant-remove-last-admin": "You are the only administrator. Add another user as an administrator before removing yourself as admin",
"invalid-image-type": "Invalid image type. Allowed types are: %1", "invalid-image-type": "Invalid image type. Allowed types are: %1",
"invalid-image-extension": "Invalid image extension", "invalid-image-extension": "Invalid image extension",
@ -88,8 +89,8 @@
"invalid-file": "Invalid File", "invalid-file": "Invalid File",
"uploads-are-disabled": "Uploads are disabled", "uploads-are-disabled": "Uploads are disabled",
"signature-too-long" : "Sorry, your signature cannot be longer than %1 characters.", "signature-too-long" : "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long" : "Sorry, your about me cannot be longer than %1 characters.", "about-me-too-long" : "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "You can't chat with yourself!", "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", "chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
@ -99,6 +100,7 @@
"downvoting-disabled": "Downvoting is disabled", "downvoting-disabled": "Downvoting is disabled",
"not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post", "not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post",
"not-enough-reputation-to-flag": "You do not have enough reputation to flag this post", "not-enough-reputation-to-flag": "You do not have enough reputation to flag this post",
"already-flagged": "You have already flagged this post",
"reload-failed": "NodeBB encountered a problem while reloading: \"%1\". NodeBB will continue to serve the existing client-side assets, although you should undo what you did just prior to reloading.", "reload-failed": "NodeBB encountered a problem while reloading: \"%1\". NodeBB will continue to serve the existing client-side assets, although you should undo what you did just prior to reloading.",

@ -64,6 +64,7 @@
"reputation": "Reputation", "reputation": "Reputation",
"read_more": "read more", "read_more": "read more",
"more": "More",
"posted_ago_by_guest": "posted %1 by Guest", "posted_ago_by_guest": "posted %1 by Guest",
"posted_ago_by": "posted %1 by %2", "posted_ago_by": "posted %1 by %2",

@ -7,6 +7,8 @@
"pending.accept": "Accept", "pending.accept": "Accept",
"pending.reject": "Reject", "pending.reject": "Reject",
"pending.accept_all": "Accept All",
"pending.reject_all": "Reject All",
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>", "cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
"cover-change": "Change", "cover-change": "Change",

@ -22,6 +22,7 @@
"user_posted_topic": "<strong>%1</strong> has posted a new topic: <strong>%2</strong>", "user_posted_topic": "<strong>%1</strong> has posted a new topic: <strong>%2</strong>",
"user_mentioned_you_in": "<strong>%1</strong> mentioned you in <strong>%2</strong>", "user_mentioned_you_in": "<strong>%1</strong> mentioned you in <strong>%2</strong>",
"user_started_following_you": "<strong>%1</strong> started following you.", "user_started_following_you": "<strong>%1</strong> started following you.",
"new_register": "<strong>%1</strong> sent a registration request.",
"email-confirmed": "Email Confirmed", "email-confirmed": "Email Confirmed",
"email-confirmed-message": "Thank you for validating your email. Your account is now fully activated.", "email-confirmed-message": "Thank you for validating your email. Your account is now fully activated.",

@ -14,5 +14,6 @@
"register_now_button": "Register Now", "register_now_button": "Register Now",
"alternative_registration": "Alternative Registration", "alternative_registration": "Alternative Registration",
"terms_of_use": "Terms of Use", "terms_of_use": "Terms of Use",
"agree_to_terms_of_use": "I agree to the Terms of Use" "agree_to_terms_of_use": "I agree to the Terms of Use",
"registration-added-to-queue": "Your registration has been added to the approval queue. You will receive an email when it is accepted by an administrator."
} }

@ -7,8 +7,12 @@
"email": "Email", "email": "Email",
"confirm_email": "Confirm Email", "confirm_email": "Confirm Email",
"ban_account": "Ban Account",
"ban_account_confirm": "Do you really want to ban this user?",
"unban_account": "Unban Account",
"delete_account": "Delete Account", "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_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 />",
"fullname": "Full Name", "fullname": "Full Name",
"website": "Website", "website": "Website",

@ -8,5 +8,7 @@
"users-found-search-took": "%1 user(s) found! Search took %2 seconds.", "users-found-search-took": "%1 user(s) found! Search took %2 seconds.",
"filter-by": "Filter By", "filter-by": "Filter By",
"online-only": "Online only", "online-only": "Online only",
"picture-only": "Picture only" "picture-only": "Picture only",
"invite": "Invite",
"invitation-email-sent": "An invitation email has been sent to %1"
} }

@ -2,7 +2,7 @@
"invalid-data": "Invalid Data", "invalid-data": "Invalid Data",
"not-logged-in": "You don't seem to be logged in.", "not-logged-in": "You don't seem to be logged in.",
"account-locked": "Your account has been locked temporarily", "account-locked": "Your account has been locked temporarily",
"search-requires-login": "Searching requires an account! Please login or register!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "Invalid Category ID", "invalid-cid": "Invalid Category ID",
"invalid-tid": "Invalid Topic ID", "invalid-tid": "Invalid Topic ID",
"invalid-pid": "Invalid Post ID", "invalid-pid": "Invalid Post ID",
@ -68,6 +68,7 @@
"invalid-file": "Invalid File", "invalid-file": "Invalid File",
"uploads-are-disabled": "Uploads are disabled", "uploads-are-disabled": "Uploads are disabled",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "You can't chat with yourself!", "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", "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.", "too-many-messages": "You have sent too many messages, please wait awhile.",

@ -5,6 +5,7 @@
"no_topics_found": "No topics found!", "no_topics_found": "No topics found!",
"no_posts_found": "No posts found!", "no_posts_found": "No posts found!",
"post_is_deleted": "This post is deleted!", "post_is_deleted": "This post is deleted!",
"topic_is_deleted": "This topic is deleted!",
"profile": "Profile", "profile": "Profile",
"posted_by": "Posted by %1", "posted_by": "Posted by %1",
"posted_by_guest": "Posted by Guest", "posted_by_guest": "Posted by Guest",

@ -21,6 +21,7 @@
"watched": "Watched", "watched": "Watched",
"followers": "Followers", "followers": "Followers",
"following": "Following", "following": "Following",
"aboutme": "About me",
"signature": "Signature", "signature": "Signature",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "Birthday", "birthday": "Birthday",

@ -21,11 +21,11 @@
"email-not-confirmed-chat": "No puedes usar el chat hasta que confirmes tu dirección de correo electrónico, por favor haz click aquí para confirmar tu correo.", "email-not-confirmed-chat": "No puedes usar el chat hasta que confirmes tu dirección de correo electrónico, por favor haz click aquí para confirmar tu correo.",
"no-email-to-confirm": "Este foro requiere confirmación de su email, por favor pulse aquí para introducir un email", "no-email-to-confirm": "Este foro requiere confirmación de su email, por favor pulse aquí para introducir un email",
"email-confirm-failed": "No se ha podido confirmar su email, por favor inténtelo de nuevo más tarde.", "email-confirm-failed": "No se ha podido confirmar su email, por favor inténtelo de nuevo más tarde.",
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.", "confirm-email-already-sent": "El email de confirmación ya ha sido enviado, por favor espera %1 minuto(s) para enviar otro.",
"username-too-short": "Nombre de usuario es demasiado corto", "username-too-short": "Nombre de usuario es demasiado corto",
"username-too-long": "Nombre de usuario demasiado largo", "username-too-long": "Nombre de usuario demasiado largo",
"user-banned": "Usuario baneado", "user-banned": "Usuario baneado",
"user-too-new": "Sorry, you are required to wait %1 second(s) before making your first post", "user-too-new": "Lo sentimos, es necesario que esperes %1 segundo(s) antes poder hacer tu primera publicación",
"no-category": "La categoría no existe", "no-category": "La categoría no existe",
"no-topic": "El tema no existe", "no-topic": "El tema no existe",
"no-post": "La publicación no existe", "no-post": "La publicación no existe",
@ -36,17 +36,17 @@
"no-emailers-configured": "No se ha cargado ningún plugin de email, así que no se pudo enviar el email de prueba.", "no-emailers-configured": "No se ha cargado ningún plugin de email, así que no se pudo enviar el email de prueba.",
"category-disabled": "Categoría deshabilitada", "category-disabled": "Categoría deshabilitada",
"topic-locked": "Tema bloqueado", "topic-locked": "Tema bloqueado",
"post-edit-duration-expired": "You are only allowed to edit posts for %1 second(s) after posting", "post-edit-duration-expired": "Sólo puedes editar mensajes durante %1 segundo(s) después de haberlo escrito",
"still-uploading": "Por favor, espera a que terminen las subidas.", "still-uploading": "Por favor, espera a que terminen las subidas.",
"content-too-short": "Please enter a longer post. Posts should contain at least %1 character(s).", "content-too-short": "Por favor introduzca una publicación más larga. Las publicaciones deben contener al menos %1 caractere(s).",
"content-too-long": "Please enter a shorter post. Posts can't be longer than %1 character(s).", "content-too-long": "Por favor introduzca un mensaje más corto. Los mensajes no pueden exceder los %1 caractere(s).",
"title-too-short": "Please enter a longer title. Titles should contain at least %1 character(s).", "title-too-short": "Por favor introduzca un título más largo. Los títulos deben contener al menos %1 caractere(s).",
"title-too-long": "Please enter a shorter title. Titles can't be longer than %1 character(s).", "title-too-long": "Por favor, introduce un título más corto, que no sobrepase los %1 caractere(s).",
"too-many-posts": "You can only post once every %1 second(s) - please wait before posting again", "too-many-posts": "Solo puedes publicar una vez cada %1 segundo(s) - por favor espere antes de volver a publicar",
"too-many-posts-newbie": "As a new user, you can only post once every %1 second(s) until you have earned %2 reputation - please wait before posting again", "too-many-posts-newbie": "Como nuevo usuario, solo puedes publicar una vez cada %1 segundo(s) hasta hayas ganado una reputación de %2 - por favor espera antes de volver a publicar",
"tag-too-short": "Please enter a longer tag. Tags should contain at least %1 character(s)", "tag-too-short": "Por favor introduce una etiqueta más larga. Las etiquetas deben contener por lo menos %1 caractere(s)",
"tag-too-long": "Please enter a shorter tag. Tags can't be longer than %1 character(s)", "tag-too-long": "Por favor introduce una etiqueta más corta. Las etiquetas no pueden exceder los %1 caractere(s)",
"file-too-big": "Maximum allowed file size is %1 kB - please upload a smaller file", "file-too-big": "El tamaño de fichero máximo es de %1 kB - por favor, suba un fichero más pequeño",
"cant-vote-self-post": "No puedes votar tus propios posts", "cant-vote-self-post": "No puedes votar tus propios posts",
"already-favourited": "Ya ha marcado esta publicación como favorita", "already-favourited": "Ya ha marcado esta publicación como favorita",
"already-unfavourited": "Ya ha desmarcado esta publicación como favorita", "already-unfavourited": "Ya ha desmarcado esta publicación como favorita",
@ -63,11 +63,12 @@
"post-already-restored": "Esta publicación ya ha sido restaurada", "post-already-restored": "Esta publicación ya ha sido restaurada",
"topic-already-deleted": "Este tema ya ha sido borrado", "topic-already-deleted": "Este tema ya ha sido borrado",
"topic-already-restored": "Este tema ya ha sido restaurado", "topic-already-restored": "Este tema ya ha sido restaurado",
"cant-purge-main-post": "You can't purge the main post, please delete the topic instead", "cant-purge-main-post": "No puedes purgar el mensaje principal, por favor utiliza borrar tema",
"topic-thumbnails-are-disabled": "Las miniaturas de los temas están deshabilitadas.", "topic-thumbnails-are-disabled": "Las miniaturas de los temas están deshabilitadas.",
"invalid-file": "Archivo no válido", "invalid-file": "Archivo no válido",
"uploads-are-disabled": "Las subidas están deshabilitadas.", "uploads-are-disabled": "Las subidas están deshabilitadas.",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Lo sentimos, pero tu firma no puede ser más larga de %1 caractere(s).",
"about-me-too-long": "Lo sentimos, pero tu descripción no puede ser más larga de %1 caractere(s).",
"cant-chat-with-yourself": "¡No puedes conversar contigo mismo!", "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", "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.", "too-many-messages": "Has enviado demasiados mensajes, por favor espera un poco.",

@ -1,5 +1,5 @@
{ {
"register": "Registrase", "register": "Registrarse",
"help.email": "Por defecto, tu cuenta de correo electrónico estará oculta al publico.", "help.email": "Por defecto, tu cuenta de correo electrónico estará oculta al publico.",
"help.username_restrictions": "El nombre de usuario debe tener entre %1 y %2 carácteres. Los miembros pueden responderte escribiendo @<span id='yourUsername'>usuario</span>.", "help.username_restrictions": "El nombre de usuario debe tener entre %1 y %2 carácteres. Los miembros pueden responderte escribiendo @<span id='yourUsername'>usuario</span>.",
"help.minimum_password_length": "Tu contraseña debe tener al menos %1 carácteres.", "help.minimum_password_length": "Tu contraseña debe tener al menos %1 carácteres.",
@ -11,7 +11,7 @@
"password_placeholder": "Introduce tu contraseña", "password_placeholder": "Introduce tu contraseña",
"confirm_password": "Confirmar contraseña", "confirm_password": "Confirmar contraseña",
"confirm_password_placeholder": "Confirmar contraseña", "confirm_password_placeholder": "Confirmar contraseña",
"register_now_button": "Registrarme ahora", "register_now_button": "Registrarse ahora",
"alternative_registration": "Métodos de registro alternativos", "alternative_registration": "Métodos de registro alternativos",
"terms_of_use": "Términos y Condiciones de uso", "terms_of_use": "Términos y Condiciones de uso",
"agree_to_terms_of_use": "Acepto los Términos y Condiciones de uso" "agree_to_terms_of_use": "Acepto los Términos y Condiciones de uso"

@ -5,6 +5,7 @@
"no_topics_found": "¡No se encontraron temas!", "no_topics_found": "¡No se encontraron temas!",
"no_posts_found": "¡No se encontraron publicaciones!", "no_posts_found": "¡No se encontraron publicaciones!",
"post_is_deleted": "¡Esta publicación está eliminada!", "post_is_deleted": "¡Esta publicación está eliminada!",
"topic_is_deleted": "¡Este tema ha sido eliminado!",
"profile": "Perfil", "profile": "Perfil",
"posted_by": "Publicado por %1", "posted_by": "Publicado por %1",
"posted_by_guest": "Publicado por Invitado", "posted_by_guest": "Publicado por Invitado",

@ -21,6 +21,7 @@
"watched": "Visto", "watched": "Visto",
"followers": "Seguidores", "followers": "Seguidores",
"following": "Siguiendo", "following": "Siguiendo",
"aboutme": "Sobre mí",
"signature": "Firma", "signature": "Firma",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "Cumpleaños", "birthday": "Cumpleaños",
@ -29,11 +30,11 @@
"unfollow": "Dejar de seguir", "unfollow": "Dejar de seguir",
"more": "Más", "more": "Más",
"profile_update_success": "¡El perfil ha sido actualizado correctamente!", "profile_update_success": "¡El perfil ha sido actualizado correctamente!",
"change_picture": "Cambiar imágen", "change_picture": "Cambiar imagen",
"edit": "Editar", "edit": "Editar",
"uploaded_picture": "Imágen subida", "uploaded_picture": "Imagen subida",
"upload_new_picture": "Subir nueva imágen", "upload_new_picture": "Subir nueva imagen",
"upload_new_picture_from_url": "Cargar imágen desde una URL", "upload_new_picture_from_url": "Cargar imagen desde una URL",
"current_password": "Contraseña actual", "current_password": "Contraseña actual",
"change_password": "Cambiar contraseña", "change_password": "Cambiar contraseña",
"change_password_error": "¡Contraseña no válida!", "change_password_error": "¡Contraseña no válida!",
@ -68,16 +69,16 @@
"has_no_watched_topics": "Este usuario todavía no ha visto ninguna publicación.", "has_no_watched_topics": "Este usuario todavía no ha visto ninguna publicación.",
"email_hidden": "Correo electrónico oculto", "email_hidden": "Correo electrónico oculto",
"hidden": "oculto", "hidden": "oculto",
"paginate_description": "Paginate topics and posts instead of using infinite scroll", "paginate_description": "Paginar hilos y mensajes en lugar de usar desplazamiento infinito",
"topics_per_page": "Temas por página", "topics_per_page": "Temas por página",
"posts_per_page": "Post por página", "posts_per_page": "Post por página",
"notification_sounds": "Play a sound when you receive a notification", "notification_sounds": "Reproducir un sonido al recibir una notificación",
"browsing": "Preferencias de navegación.", "browsing": "Preferencias de navegación.",
"open_links_in_new_tab": "Open outgoing links in new tab", "open_links_in_new_tab": "Abrir los enlaces externos en una nueva pestaña",
"enable_topic_searching": "Activar la búsqueda \"in-topic\"", "enable_topic_searching": "Activar la búsqueda \"in-topic\"",
"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": "Si está activada, la búsqueda 'in-topic' sustituirá el comportamiento por defecto del navegador y le permitirá buscar en el tema al completo, en vez de hacer una búsqueda únicamente sobre el contenido mostrado en pantalla",
"follow_topics_you_reply_to": "Follow topics that you reply to", "follow_topics_you_reply_to": "Seguir los temas en las que respondes",
"follow_topics_you_create": "Follow topics you create", "follow_topics_you_create": "Seguir publicaciones que creas",
"grouptitle": "Selecciona el título del grupo que deseas visualizar", "grouptitle": "Selecciona el título del grupo que deseas visualizar",
"no-group-title": "Sin título de grupo" "no-group-title": "Sin título de grupo"
} }

@ -1,28 +1,28 @@
{ {
"password-reset-requested": "Parooli muutmise taotlus - %1!", "password-reset-requested": "Parooli muutmise taotlus - %1!",
"welcome-to": "Tere tulemast %1", "welcome-to": "Tere tulemast foorumisse %1",
"greeting_no_name": "Tere", "greeting_no_name": "Tere",
"greeting_with_name": "Tere %1", "greeting_with_name": "Tere %1",
"welcome.text1": "Thank you for registering with %1!", "welcome.text1": "Täname et oled registreerinud foorumisse %1!",
"welcome.text2": "To fully activate your account, we need to verify that you own the email address you registered with.", "welcome.text2": "Konto täielikuks aktiveerimiseks peame me kinnitama, et registreerimisel kasutatud e-mail kuulub teile.",
"welcome.cta": "Click here to confirm your email address", "welcome.cta": "Vajuta siia, et kinnitada oma e-maili aadress",
"reset.text1": "We received a request to reset your password, possibly because you have forgotten it. If this is not the case, please ignore this email.", "reset.text1": "Meile laekus päring parooli muutmiseks. Kui päring ei ole teie poolt esitatud või te ei soovi parooli muuta, siis võite antud kirja ignoreerida.",
"reset.text2": "To continue with the password reset, please click on the following link:", "reset.text2": "Selleks, et jätkata parooli muutmisega vajuta järgnevale lingile:",
"reset.cta": "Click here to reset your password", "reset.cta": "Vajuta siia, et taotleda uut parooli",
"reset.notify.subject": "Password successfully changed", "reset.notify.subject": "Parool edukalt muudetud",
"reset.notify.text1": "We are notifying you that on %1, your password was changed successfully.", "reset.notify.text1": "Teavitame sind, et sinu parool %1 foorumis on edukalt muudetud.",
"reset.notify.text2": "If you did not authorise this, please notify an administrator immediately.", "reset.notify.text2": "Kui te ei ole lubanud seda, siis teavitage koheselt administraatorit.",
"digest.notifications": "You have unread notifications from %1:", "digest.notifications": "Sul on lugemata teateid %1 poolt:",
"digest.latest_topics": "Latest topics from %1", "digest.latest_topics": "Viimased teemad %1 poolt",
"digest.cta": "Click here to visit %1", "digest.cta": "Vajuta siia et külastada %1",
"digest.unsub.info": "This digest was sent to you due to your subscription settings.", "digest.unsub.info": "See uudiskiri on saadetud teile tellimuse seadistuse tõttu.",
"digest.no_topics": "There have been no active topics in the past %1", "digest.no_topics": "Viimase %1 jooksul ei ole olnud ühtegi aktiivset teemat",
"notif.chat.subject": "New chat message received from %1", "notif.chat.subject": "Sulle on saabunud uus sõnum kasutajalt %1",
"notif.chat.cta": "Click here to continue the conversation", "notif.chat.cta": "Vajuta siia, et jätkata vestlusega",
"notif.chat.unsub.info": "This chat notification was sent to you due to your subscription settings.", "notif.chat.unsub.info": "See chat teavitus on saadetud teile tellimuse seadistuse tõttu.",
"notif.post.cta": "Click here to read the full topic", "notif.post.cta": "Vajuta siia, et lugeda teemat täies mahus",
"notif.post.unsub.info": "This post notification was sent to you due to your subscription settings.", "notif.post.unsub.info": "See postituse teavitus on saadetud teile tellimuse seadistuse tõttu.",
"test.text1": "This is a test email to verify that the emailer is set up correctly for your NodeBB.", "test.text1": "See on test e-mail kinnitamaks, et emailer on korrektselt seadistatud sinu NodeBB jaoks.",
"unsub.cta": "Click here to alter those settings", "unsub.cta": "Vajuta siia, et muuta neid seadeid",
"closing": "Thanks!" "closing": "Aitäh!"
} }

@ -2,7 +2,7 @@
"invalid-data": "Vigased andmed", "invalid-data": "Vigased andmed",
"not-logged-in": "Sa ei ole sisse logitud", "not-logged-in": "Sa ei ole sisse logitud",
"account-locked": "Su kasutaja on ajutiselt lukustatud", "account-locked": "Su kasutaja on ajutiselt lukustatud",
"search-requires-login": "Foorumis otsimiseks on vaja kasutajat! Palun logi sisse või registreeru kasutajaks!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "Vigane kategooria ID", "invalid-cid": "Vigane kategooria ID",
"invalid-tid": "Vigane teema ID", "invalid-tid": "Vigane teema ID",
"invalid-pid": "Vigane postituse ID", "invalid-pid": "Vigane postituse ID",
@ -68,6 +68,7 @@
"invalid-file": "Vigane fail", "invalid-file": "Vigane fail",
"uploads-are-disabled": "Üleslaadimised on keelatud", "uploads-are-disabled": "Üleslaadimised on keelatud",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Sa ei saa endaga vestelda!", "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", "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.", "too-many-messages": "Oled saatnud liiga palju sõnumeid, oota natukene.",

@ -5,6 +5,7 @@
"no_topics_found": "Teemasid ei leitud!", "no_topics_found": "Teemasid ei leitud!",
"no_posts_found": "Postitusi ei leitud!", "no_posts_found": "Postitusi ei leitud!",
"post_is_deleted": "See postitus on kustutatud!", "post_is_deleted": "See postitus on kustutatud!",
"topic_is_deleted": "This topic is deleted!",
"profile": "Profiil", "profile": "Profiil",
"posted_by": "Postitas %1", "posted_by": "Postitas %1",
"posted_by_guest": "Postitatud külalise ppolt", "posted_by_guest": "Postitatud külalise ppolt",

@ -21,6 +21,7 @@
"watched": "Vaadatud", "watched": "Vaadatud",
"followers": "Jälgijad", "followers": "Jälgijad",
"following": "Jälgimised", "following": "Jälgimised",
"aboutme": "About me",
"signature": "Allkiri", "signature": "Allkiri",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "Sünnipäev", "birthday": "Sünnipäev",

@ -1,5 +1,5 @@
{ {
"password-reset-requested": "درخواست گذرواژه مجدد- %1!", "password-reset-requested": "درخواست بازیابی گذرواژه- %1!",
"welcome-to": "به 1% خوش آمدید", "welcome-to": "به 1% خوش آمدید",
"greeting_no_name": "سلام", "greeting_no_name": "سلام",
"greeting_with_name": "سلام 1%", "greeting_with_name": "سلام 1%",

@ -1,8 +1,8 @@
{ {
"invalid-data": "اطلاعات نامعتبر است.", "invalid-data": "داده(های) نامعتبر",
"not-logged-in": "به نظر میرسد که با حساب کاربری وارد نشده اید.", "not-logged-in": "به نظر میرسد که با حساب کاربری وارد نشده اید.",
"account-locked": "حساب کاربری شما موقتاً مسدود شده است.", "account-locked": "حساب کاربری شما موقتاً مسدود شده است.",
"search-requires-login": "جستجو نیاز به حساب کاربری دارد! لطفا وارد شوید و یا ثبت نام کنید!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "شناسه دسته نامعتبر است.", "invalid-cid": "شناسه دسته نامعتبر است.",
"invalid-tid": "شناسه جستار نامعتبر است.", "invalid-tid": "شناسه جستار نامعتبر است.",
"invalid-pid": "شناسه دیدگاه نامعتبر است.", "invalid-pid": "شناسه دیدگاه نامعتبر است.",
@ -21,11 +21,11 @@
"email-not-confirmed-chat": "شما تا قبل از تایید رایانامه قادر به گفتگو نیستید، لطفا برای تایید رایانامه خود اینجا کلیک کنید", "email-not-confirmed-chat": "شما تا قبل از تایید رایانامه قادر به گفتگو نیستید، لطفا برای تایید رایانامه خود اینجا کلیک کنید",
"no-email-to-confirm": "این انجمن نیاز به تایید رایانامه دارد، لطفا برای وارد کردن رایانامه اینجا کلیک کنید", "no-email-to-confirm": "این انجمن نیاز به تایید رایانامه دارد، لطفا برای وارد کردن رایانامه اینجا کلیک کنید",
"email-confirm-failed": "ما نتوانستیم رایانامه شما را تایید کنیم، لطفا بعدا دوباره سعی کنید", "email-confirm-failed": "ما نتوانستیم رایانامه شما را تایید کنیم، لطفا بعدا دوباره سعی کنید",
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.", "confirm-email-already-sent": "رایانامه فعال‌سازی پیش‌تر فرستاده شده، لطفا %1 دقیقه صبر کنید تا رایانامه دیگری بفرستید.",
"username-too-short": "نام کاربری خیلی کوتاه است.", "username-too-short": "نام کاربری خیلی کوتاه است.",
"username-too-long": "نام کاربری بسیار طولانیست", "username-too-long": "نام کاربری بسیار طولانیست",
"user-banned": "کاربر محروم شد.", "user-banned": "کاربر محروم شد.",
"user-too-new": "Sorry, you are required to wait %1 second(s) before making your first post", "user-too-new": "با عرض پوزش، شما باید %1 ثانیه پیش از فرستادن دیدگاه نخست خود صبر کنید",
"no-category": "دسته بندی وجود ندارد", "no-category": "دسته بندی وجود ندارد",
"no-topic": "جستار وجود ندارد.", "no-topic": "جستار وجود ندارد.",
"no-post": "دیدگاه وجود ندارد", "no-post": "دیدگاه وجود ندارد",
@ -36,9 +36,9 @@
"no-emailers-configured": "افزونه ایمیلی بارگیری نشده است، پس رایانامه امتحانی نمیتواند فرستاده شود", "no-emailers-configured": "افزونه ایمیلی بارگیری نشده است، پس رایانامه امتحانی نمیتواند فرستاده شود",
"category-disabled": "دسته غیر‌فعال شد.", "category-disabled": "دسته غیر‌فعال شد.",
"topic-locked": "جستار بسته شد.", "topic-locked": "جستار بسته شد.",
"post-edit-duration-expired": "You are only allowed to edit posts for %1 second(s) after posting", "post-edit-duration-expired": "شما تنها می توانید %1 ثانیه پس از فرستادن دیدگاه آن‌را ویرایش کنید",
"still-uploading": "خواهشمندیم تا پایان بارگذاری‌ها شکیبا باشید.", "still-uploading": "خواهشمندیم تا پایان بارگذاری‌ها شکیبا باشید.",
"content-too-short": "Please enter a longer post. Posts should contain at least %1 character(s).", "content-too-short": "خواهشمندیم دیدگاه بلندتری بنویسید. دیدگاه‌ها دست‌کم باید 1% نویسه داشته باشند.",
"content-too-long": "Please enter a shorter post. Posts can't be longer than %1 character(s).", "content-too-long": "Please enter a shorter post. Posts can't be longer than %1 character(s).",
"title-too-short": "Please enter a longer title. Titles should contain at least %1 character(s).", "title-too-short": "Please enter a longer title. Titles should contain at least %1 character(s).",
"title-too-long": "Please enter a shorter title. Titles can't be longer than %1 character(s).", "title-too-long": "Please enter a shorter title. Titles can't be longer than %1 character(s).",
@ -63,11 +63,12 @@
"post-already-restored": "دیدگاه پیش‌تر بازگردانی شده است.", "post-already-restored": "دیدگاه پیش‌تر بازگردانی شده است.",
"topic-already-deleted": "جستار پیش‌تر حذف شده است", "topic-already-deleted": "جستار پیش‌تر حذف شده است",
"topic-already-restored": "جستار پیش‌تر بازگردانی شده است", "topic-already-restored": "جستار پیش‌تر بازگردانی شده است",
"cant-purge-main-post": "You can't purge the main post, please delete the topic instead", "cant-purge-main-post": "شما نمی‌توانید دیدگاه اصلی را پاک کنید، لطفا جستار را به جای آن پاک کنید.",
"topic-thumbnails-are-disabled": "چهرک‌های جستار غیرفعال شده است.", "topic-thumbnails-are-disabled": "چهرک‌های جستار غیرفعال شده است.",
"invalid-file": "فایل نامعتبر است.", "invalid-file": "فایل نامعتبر است.",
"uploads-are-disabled": "امکان بارگذاری غیرفعال شده است.", "uploads-are-disabled": "امکان بارگذاری غیرفعال شده است.",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "شما نمی‌توانید با خودتان گفتگو کنید!", "cant-chat-with-yourself": "شما نمی‌توانید با خودتان گفتگو کنید!",
"chat-restricted": "این کاربر پیام های گفتگوی خود را محدود کرده است . آنها بایدشما را دنبال کنند تا اینکه شما بتوانید به آنها پیامی بفرستید", "chat-restricted": "این کاربر پیام های گفتگوی خود را محدود کرده است . آنها بایدشما را دنبال کنند تا اینکه شما بتوانید به آنها پیامی بفرستید",
"too-many-messages": "شما پیامهای خیلی زیادی فرستاده اید، لطفا مدتی صبر نمایید", "too-many-messages": "شما پیامهای خیلی زیادی فرستاده اید، لطفا مدتی صبر نمایید",

@ -27,7 +27,7 @@
"header.tags": "برچسب‌ها", "header.tags": "برچسب‌ها",
"header.popular": "دوست‌داشتنی‌ها", "header.popular": "دوست‌داشتنی‌ها",
"header.users": "کاربران", "header.users": "کاربران",
"header.groups": "گروه ها", "header.groups": "گروهها",
"header.chats": "گفتگوها", "header.chats": "گفتگوها",
"header.notifications": "آگاه‌سازی‌ها", "header.notifications": "آگاه‌سازی‌ها",
"header.search": "جستجو", "header.search": "جستجو",

@ -1,5 +1,5 @@
{ {
"groups": "گروه ها", "groups": "گروهها",
"view_group": "مشاهده گروه", "view_group": "مشاهده گروه",
"owner": "مالک گروه", "owner": "مالک گروه",
"new_group": "ساخت گروه جدید", "new_group": "ساخت گروه جدید",
@ -30,7 +30,7 @@
"details.userTitleEnabled": "نمایش نشان", "details.userTitleEnabled": "نمایش نشان",
"details.private_help": "اگر فعال باشد، پیوستن به گروه مستلزم موافقت صاحب گروه است", "details.private_help": "اگر فعال باشد، پیوستن به گروه مستلزم موافقت صاحب گروه است",
"details.hidden": "پنهان", "details.hidden": "پنهان",
"details.hidden_help": "اگر فعال باشد، ایم گروه در فهرست گروه ها پیدا نمیشود، و کاربر باید دستی دعوت شود", "details.hidden_help": "اگر فعال باشد، این گروه در فهرست گروه‌ها پیدا نمی‌شود و کاربران باید دستی فراخوانده شوند",
"event.updated": "جزییات گروه با موفقیت به روز گردید", "event.updated": "جزییات گروه با موفقیت به روز گردید",
"event.deleted": "گروه \"%1\" حدف شد" "event.deleted": "گروه \"%1\" حدف شد"
} }

@ -1,5 +1,5 @@
{ {
"name": "Persian (Iran)", "name": "فارسی",
"code": "fa_IR", "code": "fa_IR",
"dir": "rtl" "dir": "rtl"
} }

@ -12,7 +12,7 @@
"user.followers": "کاربرانی که %1 را دنبال می‌کنند", "user.followers": "کاربرانی که %1 را دنبال می‌کنند",
"user.posts": "دیدگاه‌های %1", "user.posts": "دیدگاه‌های %1",
"user.topics": "%1 این جستار را ساخت.", "user.topics": "%1 این جستار را ساخت.",
"user.groups": "گروه های %1", "user.groups": "گروههای %1",
"user.favourites": "دیدگاه‌های پسندیدهٔ %1", "user.favourites": "دیدگاه‌های پسندیدهٔ %1",
"user.settings": "تنظیمات کاربر", "user.settings": "تنظیمات کاربر",
"user.watched": "جستارهای پاییده شده توسط %1", "user.watched": "جستارهای پاییده شده توسط %1",

@ -1,5 +1,5 @@
{ {
"results_matching": "%1 نتیجه (ها) مطابق با \"%2\" ,(%3 ثانیه)", "results_matching": "%1 نتیجهٔ هم‌خوان با \"%2\"، (%3 ثانیه)",
"no-matches": "هیچ موردی یافت نشد", "no-matches": "هیچ موردی یافت نشد",
"advanced-search": "جستجوی پیشرفته", "advanced-search": "جستجوی پیشرفته",
"in": "در", "in": "در",

@ -1,5 +1,5 @@
{ {
"success": "موفقیت", "success": "موفقیت‌آمیز",
"topic-post": "دیدگاه شما باموفقیت فرستاده شد.", "topic-post": "دیدگاه شما باموفقیت فرستاده شد.",
"authentication-successful": "اعتبارسنجی موفق", "authentication-successful": "اعتبارسنجی موفق",
"settings-saved": "تنظیمات اندوخته شد." "settings-saved": "تنظیمات اندوخته شد."

@ -5,6 +5,7 @@
"no_topics_found": "هیچ جستاری یافت نشد!", "no_topics_found": "هیچ جستاری یافت نشد!",
"no_posts_found": "دیدگاهی یافت نشد!", "no_posts_found": "دیدگاهی یافت نشد!",
"post_is_deleted": "این دیدگاه پاک شده!", "post_is_deleted": "این دیدگاه پاک شده!",
"topic_is_deleted": "This topic is deleted!",
"profile": "نمایه", "profile": "نمایه",
"posted_by": "ارسال شده توسط %1", "posted_by": "ارسال شده توسط %1",
"posted_by_guest": "ارسال شده توسط مهمان", "posted_by_guest": "ارسال شده توسط مهمان",

@ -21,6 +21,7 @@
"watched": "پاییده شده", "watched": "پاییده شده",
"followers": "دنبال‌کننده‌ها", "followers": "دنبال‌کننده‌ها",
"following": "دنبال‌شونده‌ها", "following": "دنبال‌شونده‌ها",
"aboutme": "About me",
"signature": "امضا", "signature": "امضا",
"gravatar": "گراواتار", "gravatar": "گراواتار",
"birthday": "روز تولد", "birthday": "روز تولد",

@ -2,7 +2,7 @@
"invalid-data": "Virheellinen data", "invalid-data": "Virheellinen data",
"not-logged-in": "Et taida olla kirjautuneena sisään.", "not-logged-in": "Et taida olla kirjautuneena sisään.",
"account-locked": "Käyttäjätilisi on lukittu väliaikaisesti", "account-locked": "Käyttäjätilisi on lukittu väliaikaisesti",
"search-requires-login": "Hakeminen vaatii käyttäjätilin! Kirjaudu sisään tai rekisteröidy!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "Virheellinen kategorian ID", "invalid-cid": "Virheellinen kategorian ID",
"invalid-tid": "Virheellinen aiheen ID", "invalid-tid": "Virheellinen aiheen ID",
"invalid-pid": "Virheellinen viestin ID", "invalid-pid": "Virheellinen viestin ID",
@ -68,6 +68,7 @@
"invalid-file": "Virheellinen tiedosto", "invalid-file": "Virheellinen tiedosto",
"uploads-are-disabled": "Et voi lähettää tiedostoa", "uploads-are-disabled": "Et voi lähettää tiedostoa",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Et voi keskustella itsesi kanssa!", "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", "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.", "too-many-messages": "You have sent too many messages, please wait awhile.",

@ -5,6 +5,7 @@
"no_topics_found": "Aiheita ei löytynyt!", "no_topics_found": "Aiheita ei löytynyt!",
"no_posts_found": "Viestejä ei löytynyt!", "no_posts_found": "Viestejä ei löytynyt!",
"post_is_deleted": "Tämä viesti poistettiin!", "post_is_deleted": "Tämä viesti poistettiin!",
"topic_is_deleted": "This topic is deleted!",
"profile": "Profiili", "profile": "Profiili",
"posted_by": "%1 kirjoitti", "posted_by": "%1 kirjoitti",
"posted_by_guest": "Vieras kirjoitti", "posted_by_guest": "Vieras kirjoitti",

@ -21,6 +21,7 @@
"watched": "Seurattu", "watched": "Seurattu",
"followers": "Seuraajat", "followers": "Seuraajat",
"following": "Seuratut", "following": "Seuratut",
"aboutme": "About me",
"signature": "Allekirjoitus", "signature": "Allekirjoitus",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "Syntymäpäivä", "birthday": "Syntymäpäivä",

@ -2,7 +2,7 @@
"invalid-data": "Données invalides", "invalid-data": "Données invalides",
"not-logged-in": "Vous ne semblez pas être connecté.", "not-logged-in": "Vous ne semblez pas être connecté.",
"account-locked": "Votre compte a été temporairement suspendu", "account-locked": "Votre compte a été temporairement suspendu",
"search-requires-login": "Vous devez avoir un compte pour effectuer une recherche ! Veuillez vous identifier ou vous inscrire !", "search-requires-login": "Rechercher nécessite d'avoir un compte. Veuillez vous identifier ou vous enregistrer.",
"invalid-cid": "ID de catégorie invalide", "invalid-cid": "ID de catégorie invalide",
"invalid-tid": "ID de sujet invalide", "invalid-tid": "ID de sujet invalide",
"invalid-pid": "ID de message invalide", "invalid-pid": "ID de message invalide",
@ -68,6 +68,7 @@
"invalid-file": "Fichier invalide", "invalid-file": "Fichier invalide",
"uploads-are-disabled": "Les envois sont désactivés", "uploads-are-disabled": "Les envois sont désactivés",
"signature-too-long": "La signature ne peut dépasser %1 caractère(s).", "signature-too-long": "La signature ne peut dépasser %1 caractère(s).",
"about-me-too-long": "Votre texte \"à propos de moi\" ne peut dépasser %1 caractère(s).",
"cant-chat-with-yourself": "Vous ne pouvez chatter avec vous même !", "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.", "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.", "too-many-messages": "Vous avez envoyé trop de messages, veuillez patienter un instant.",

@ -32,5 +32,5 @@
"details.hidden": "Masqué", "details.hidden": "Masqué",
"details.hidden_help": "Si cette case est cochée, ce groupe n'est pas affiché dans la liste des groupes, et les utilisateurs devront être invités manuellement.", "details.hidden_help": "Si cette case est cochée, ce groupe n'est pas affiché dans la liste des groupes, et les utilisateurs devront être invités manuellement.",
"event.updated": "Les détails du groupe ont été mis à jour", "event.updated": "Les détails du groupe ont été mis à jour",
"event.deleted": "Le groupe é%1\" a été supprimé" "event.deleted": "Le groupe \"%1\" a été supprimé"
} }

@ -5,6 +5,7 @@
"no_topics_found": "Aucun sujet n'a été trouvé !", "no_topics_found": "Aucun sujet n'a été trouvé !",
"no_posts_found": "Aucun message trouvé !", "no_posts_found": "Aucun message trouvé !",
"post_is_deleted": "Ce message a été supprimé !", "post_is_deleted": "Ce message a été supprimé !",
"topic_is_deleted": "Ce sujet a été supprimé !",
"profile": "Profil", "profile": "Profil",
"posted_by": "Posté par %1", "posted_by": "Posté par %1",
"posted_by_guest": "Posté par un invité", "posted_by_guest": "Posté par un invité",

@ -21,6 +21,7 @@
"watched": "Suivis", "watched": "Suivis",
"followers": "Abonnés", "followers": "Abonnés",
"following": "Abonnements", "following": "Abonnements",
"aboutme": "À propos de moi",
"signature": "Signature", "signature": "Signature",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "Anniversaire", "birthday": "Anniversaire",

@ -2,7 +2,7 @@
"invalid-data": "נתונים שגויים", "invalid-data": "נתונים שגויים",
"not-logged-in": "נראה שאינך מחובר למערכת.", "not-logged-in": "נראה שאינך מחובר למערכת.",
"account-locked": "חשבונך נחסם באופן זמני", "account-locked": "חשבונך נחסם באופן זמני",
"search-requires-login": "החיפוש דורש משתמש רשום! יש להיכנס למערכת או להירשם!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "זהוי קטגוריה שגוי", "invalid-cid": "זהוי קטגוריה שגוי",
"invalid-tid": "זהוי נושא שגוי", "invalid-tid": "זהוי נושא שגוי",
"invalid-pid": "זהוי פוסט שגוי", "invalid-pid": "זהוי פוסט שגוי",
@ -68,6 +68,7 @@
"invalid-file": "קובץ לא תקין", "invalid-file": "קובץ לא תקין",
"uploads-are-disabled": "העלאת קבצים אינה מאופשרת", "uploads-are-disabled": "העלאת קבצים אינה מאופשרת",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "לא ניתן לעשות צ'אט עם עצמך!", "cant-chat-with-yourself": "לא ניתן לעשות צ'אט עם עצמך!",
"chat-restricted": "משתמש זה חסם את הודעות הצ'אט שלו ממשתמשים זרים. המשתמש חייב לעקוב אחריך לפני שתוכל לשוחח איתו בצ'אט", "chat-restricted": "משתמש זה חסם את הודעות הצ'אט שלו ממשתמשים זרים. המשתמש חייב לעקוב אחריך לפני שתוכל לשוחח איתו בצ'אט",
"too-many-messages": "שלחת יותר מדי הודעות, אנא המתן לזמן מה.", "too-many-messages": "שלחת יותר מדי הודעות, אנא המתן לזמן מה.",

@ -5,6 +5,7 @@
"no_topics_found": "לא נמצאו נושאים!", "no_topics_found": "לא נמצאו נושאים!",
"no_posts_found": "לא נמצאו פוסטים!", "no_posts_found": "לא נמצאו פוסטים!",
"post_is_deleted": "פוסט זה נמחק!", "post_is_deleted": "פוסט זה נמחק!",
"topic_is_deleted": "This topic is deleted!",
"profile": "פרופיל", "profile": "פרופיל",
"posted_by": "הפוסט הועלה על ידי %1", "posted_by": "הפוסט הועלה על ידי %1",
"posted_by_guest": "פורסם על-ידי אורח", "posted_by_guest": "פורסם על-ידי אורח",

@ -21,6 +21,7 @@
"watched": "נצפה", "watched": "נצפה",
"followers": "עוקבים", "followers": "עוקבים",
"following": "עוקב אחרי", "following": "עוקב אחרי",
"aboutme": "About me",
"signature": "חתימה", "signature": "חתימה",
"gravatar": "אווטר", "gravatar": "אווטר",
"birthday": "יום הולדת", "birthday": "יום הולדת",

@ -2,7 +2,7 @@
"invalid-data": "Érvénytelen adat", "invalid-data": "Érvénytelen adat",
"not-logged-in": "Úgy tűnik, nem vagy bejelentkezve.", "not-logged-in": "Úgy tűnik, nem vagy bejelentkezve.",
"account-locked": "A fiókod ideiglenesen zárolva lett.", "account-locked": "A fiókod ideiglenesen zárolva lett.",
"search-requires-login": "A kereső használatához szükséges egy fiók! Kérlek jelenltkezz be vagy regisztrálj!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "Érvénytelen kategória azonosító", "invalid-cid": "Érvénytelen kategória azonosító",
"invalid-tid": "Érvénytelen téma azonosító", "invalid-tid": "Érvénytelen téma azonosító",
"invalid-pid": "Érvénytelen hozzászólás azonosító", "invalid-pid": "Érvénytelen hozzászólás azonosító",
@ -68,6 +68,7 @@
"invalid-file": "Érvénytelen fájl", "invalid-file": "Érvénytelen fájl",
"uploads-are-disabled": "A feltöltés nem engedélyezett", "uploads-are-disabled": "A feltöltés nem engedélyezett",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Nem cseveghetsz magaddal!", "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", "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.", "too-many-messages": "Túl sok üzenetet küldtél, kérlek várj egy picit.",

@ -1,14 +1,14 @@
{ {
"results_matching": "%1 eredmény(ek) erre \"%2\" (%3 másodperc alatt)", "results_matching": "%1 eredmény(ek) erre \"%2\" (%3 másodperc alatt)",
"no-matches": "No matches found", "no-matches": "No matches found",
"advanced-search": "Advanced Search", "advanced-search": "Bővített keresés",
"in": "In", "in": "In",
"titles": "Titles", "titles": "Címek",
"titles-posts": "Titles and Posts", "titles-posts": "Címek és Bejegyzések",
"posted-by": "Posted by", "posted-by": "Szerző",
"in-categories": "In Categories", "in-categories": "Kategória",
"search-child-categories": "Search child categories", "search-child-categories": "Keresés az alkategóriák közt",
"reply-count": "Reply Count", "reply-count": "Válaszok száma",
"at-least": "At least", "at-least": "At least",
"at-most": "At most", "at-most": "At most",
"post-time": "Post time", "post-time": "Post time",

@ -5,6 +5,7 @@
"no_topics_found": "Téma nem található!", "no_topics_found": "Téma nem található!",
"no_posts_found": "Hozzászólások nem találhatóak!", "no_posts_found": "Hozzászólások nem találhatóak!",
"post_is_deleted": "A bejegyzés törlésre került!", "post_is_deleted": "A bejegyzés törlésre került!",
"topic_is_deleted": "This topic is deleted!",
"profile": "Profil", "profile": "Profil",
"posted_by": "Szerző %1", "posted_by": "Szerző %1",
"posted_by_guest": "Szerző Vendég", "posted_by_guest": "Szerző Vendég",

@ -21,6 +21,7 @@
"watched": "Megfigyeli", "watched": "Megfigyeli",
"followers": "Követők", "followers": "Követők",
"following": "Követve", "following": "Követve",
"aboutme": "About me",
"signature": "Aláírás", "signature": "Aláírás",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "Szülinap", "birthday": "Szülinap",

@ -2,7 +2,7 @@
"invalid-data": "Data Salah", "invalid-data": "Data Salah",
"not-logged-in": "Kamu terlihat belum login", "not-logged-in": "Kamu terlihat belum login",
"account-locked": "Akun kamu dikunci sementara", "account-locked": "Akun kamu dikunci sementara",
"search-requires-login": "Pencarian butuh sebuah akun, silakan login atau register terlebih dulu", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "ID Kategori Salah", "invalid-cid": "ID Kategori Salah",
"invalid-tid": "ID Topik Salah", "invalid-tid": "ID Topik Salah",
"invalid-pid": "ID Post Salah", "invalid-pid": "ID Post Salah",
@ -68,6 +68,7 @@
"invalid-file": "File Salah", "invalid-file": "File Salah",
"uploads-are-disabled": "Upload ditiadakan", "uploads-are-disabled": "Upload ditiadakan",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Kamu tidak dapat chat dengan akun sendiri", "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 ", "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.", "too-many-messages": "You have sent too many messages, please wait awhile.",

@ -5,6 +5,7 @@
"no_topics_found": "Tidak topik yang ditemukan!", "no_topics_found": "Tidak topik yang ditemukan!",
"no_posts_found": "Tidak ada posting yang ditemukan!", "no_posts_found": "Tidak ada posting yang ditemukan!",
"post_is_deleted": "Posting ini telah dihapus!", "post_is_deleted": "Posting ini telah dihapus!",
"topic_is_deleted": "This topic is deleted!",
"profile": "Profil", "profile": "Profil",
"posted_by": "Dibuat oleh %1", "posted_by": "Dibuat oleh %1",
"posted_by_guest": "Dibuat oleh Tamu", "posted_by_guest": "Dibuat oleh Tamu",

@ -21,6 +21,7 @@
"watched": "Watched", "watched": "Watched",
"followers": "Pengikut", "followers": "Pengikut",
"following": "Mengikuti", "following": "Mengikuti",
"aboutme": "About me",
"signature": "Tanda Pengenal", "signature": "Tanda Pengenal",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "Hari Lahir", "birthday": "Hari Lahir",

@ -2,7 +2,7 @@
"invalid-data": "Dati non validi", "invalid-data": "Dati non validi",
"not-logged-in": "Non sembri essere loggato.", "not-logged-in": "Non sembri essere loggato.",
"account-locked": "Il tuo account è stato bloccato temporaneamente", "account-locked": "Il tuo account è stato bloccato temporaneamente",
"search-requires-login": "La ricerca richiede un account! Si prega di loggarsi o registrarsi!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "ID Categoria non valido", "invalid-cid": "ID Categoria non valido",
"invalid-tid": "ID Topic non valido", "invalid-tid": "ID Topic non valido",
"invalid-pid": "ID Post non valido", "invalid-pid": "ID Post non valido",
@ -68,6 +68,7 @@
"invalid-file": "File non valido", "invalid-file": "File non valido",
"uploads-are-disabled": "Uploads disabilitati", "uploads-are-disabled": "Uploads disabilitati",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Non puoi chattare con te stesso!", "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.", "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.", "too-many-messages": "Hai inviato troppi messaggi, aspetta un attimo.",

@ -5,6 +5,7 @@
"no_topics_found": "Nessuna discussione trovata!", "no_topics_found": "Nessuna discussione trovata!",
"no_posts_found": "Nessun post trovato!", "no_posts_found": "Nessun post trovato!",
"post_is_deleted": "Questo post è eliminato!", "post_is_deleted": "Questo post è eliminato!",
"topic_is_deleted": "This topic is deleted!",
"profile": "Profilo", "profile": "Profilo",
"posted_by": "scritto da %1", "posted_by": "scritto da %1",
"posted_by_guest": "Scritto da Ospite", "posted_by_guest": "Scritto da Ospite",

@ -21,6 +21,7 @@
"watched": "Osservati", "watched": "Osservati",
"followers": "Da chi è seguito", "followers": "Da chi è seguito",
"following": "Chi segue", "following": "Chi segue",
"aboutme": "About me",
"signature": "Firma", "signature": "Firma",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "Data di nascita", "birthday": "Data di nascita",

@ -2,7 +2,7 @@
"invalid-data": "無効なデータ", "invalid-data": "無効なデータ",
"not-logged-in": "ログインしていていないようです。", "not-logged-in": "ログインしていていないようです。",
"account-locked": "Your account has been locked temporarily", "account-locked": "Your account has been locked temporarily",
"search-requires-login": "Searching requires an account! Please login or register!", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "無効な板ID", "invalid-cid": "無効な板ID",
"invalid-tid": "無効なスレッドID", "invalid-tid": "無効なスレッドID",
"invalid-pid": "無効なポストID", "invalid-pid": "無効なポストID",
@ -68,6 +68,7 @@
"invalid-file": "無効なファイル", "invalid-file": "無効なファイル",
"uploads-are-disabled": "アップロードが無効された", "uploads-are-disabled": "アップロードが無効された",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "自分にチャットすることはできません!", "cant-chat-with-yourself": "自分にチャットすることはできません!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them", "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.", "too-many-messages": "You have sent too many messages, please wait awhile.",

@ -5,6 +5,7 @@
"no_topics_found": "スレッドが見つかりません!", "no_topics_found": "スレッドが見つかりません!",
"no_posts_found": "ポストはありません!", "no_posts_found": "ポストはありません!",
"post_is_deleted": "このポストが削除されます!", "post_is_deleted": "このポストが削除されます!",
"topic_is_deleted": "This topic is deleted!",
"profile": "プロフィール", "profile": "プロフィール",
"posted_by": "%1 のポスト", "posted_by": "%1 のポスト",
"posted_by_guest": "Posted by Guest", "posted_by_guest": "Posted by Guest",

@ -21,6 +21,7 @@
"watched": "Watched", "watched": "Watched",
"followers": "フォロワー", "followers": "フォロワー",
"following": "フォロー中", "following": "フォロー中",
"aboutme": "About me",
"signature": "署名", "signature": "署名",
"gravatar": "Gravatar", "gravatar": "Gravatar",
"birthday": "誕生日", "birthday": "誕生日",

@ -2,7 +2,7 @@
"invalid-data": "올바르지 않은 정보입니다.", "invalid-data": "올바르지 않은 정보입니다.",
"not-logged-in": "로그인하지 않았습니다.", "not-logged-in": "로그인하지 않았습니다.",
"account-locked": "임시로 잠긴 계정입니다.", "account-locked": "임시로 잠긴 계정입니다.",
"search-requires-login": "검색을 위해서는 계정이 필요합니다. 로그인하거나 회원가입 해 주십시오.", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "올바르지 않은 카테고리 ID입니다.", "invalid-cid": "올바르지 않은 카테고리 ID입니다.",
"invalid-tid": "올바르지 않은 주제 ID입니다.", "invalid-tid": "올바르지 않은 주제 ID입니다.",
"invalid-pid": "올바르지 않은 게시물 ID입니다.", "invalid-pid": "올바르지 않은 게시물 ID입니다.",
@ -68,6 +68,7 @@
"invalid-file": "올바르지 않은 파일입니다.", "invalid-file": "올바르지 않은 파일입니다.",
"uploads-are-disabled": "업로드는 비활성화되어 있습니다.", "uploads-are-disabled": "업로드는 비활성화되어 있습니다.",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "자신과는 채팅할 수 없습니다.", "cant-chat-with-yourself": "자신과는 채팅할 수 없습니다.",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them", "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.", "too-many-messages": "You have sent too many messages, please wait awhile.",

@ -5,6 +5,7 @@
"no_topics_found": "주제를 찾을 수 없습니다.", "no_topics_found": "주제를 찾을 수 없습니다.",
"no_posts_found": "게시물을 찾을 수 없습니다.", "no_posts_found": "게시물을 찾을 수 없습니다.",
"post_is_deleted": "이 게시물은 삭제되었습니다.", "post_is_deleted": "이 게시물은 삭제되었습니다.",
"topic_is_deleted": "This topic is deleted!",
"profile": "프로필", "profile": "프로필",
"posted_by": "%1님이 작성했습니다.", "posted_by": "%1님이 작성했습니다.",
"posted_by_guest": "익명 사용자가 작성했습니다.", "posted_by_guest": "익명 사용자가 작성했습니다.",

@ -21,6 +21,7 @@
"watched": "Watched", "watched": "Watched",
"followers": "이 사용자를 팔로우", "followers": "이 사용자를 팔로우",
"following": "이 사용자가 팔로우", "following": "이 사용자가 팔로우",
"aboutme": "About me",
"signature": "서명", "signature": "서명",
"gravatar": "그라바타", "gravatar": "그라바타",
"birthday": "생일", "birthday": "생일",

@ -2,7 +2,7 @@
"invalid-data": "Klaidingi duomenys", "invalid-data": "Klaidingi duomenys",
"not-logged-in": "Atrodo, kad jūs neesate prisijungęs.", "not-logged-in": "Atrodo, kad jūs neesate prisijungęs.",
"account-locked": "Jūsų paskyra buvo laikinai užrakinta", "account-locked": "Jūsų paskyra buvo laikinai užrakinta",
"search-requires-login": "Norint naudotis paieška, būtina paskyra! Prašome prisijungti arba užsiregistruoti.", "search-requires-login": "Searching requires an account - please login or register.",
"invalid-cid": "Klaidingas kategorijos ID", "invalid-cid": "Klaidingas kategorijos ID",
"invalid-tid": "Klaidingas temos ID", "invalid-tid": "Klaidingas temos ID",
"invalid-pid": "Klaidingas pranešimo ID", "invalid-pid": "Klaidingas pranešimo ID",
@ -68,6 +68,7 @@
"invalid-file": "Klaidingas failas", "invalid-file": "Klaidingas failas",
"uploads-are-disabled": "Įkėlimai neleidžiami", "uploads-are-disabled": "Įkėlimai neleidžiami",
"signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).", "signature-too-long": "Sorry, your signature cannot be longer than %1 character(s).",
"about-me-too-long": "Sorry, your about me cannot be longer than %1 character(s).",
"cant-chat-with-yourself": "Jūs negalite susirašinėti su savimi!", "cant-chat-with-yourself": "Jūs negalite susirašinėti su savimi!",
"chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them", "chat-restricted": "This user has restricted their chat messages. They must follow you before you can chat with them",
"too-many-messages": "Išsiuntėte per daug pranešimų, kurį laiką prašome palaukti.", "too-many-messages": "Išsiuntėte per daug pranešimų, kurį laiką prašome palaukti.",

@ -5,6 +5,7 @@
"no_topics_found": "Temų nerasta!", "no_topics_found": "Temų nerasta!",
"no_posts_found": "Įrašų nerasta!", "no_posts_found": "Įrašų nerasta!",
"post_is_deleted": "Šis įrašas ištrintas!", "post_is_deleted": "Šis įrašas ištrintas!",
"topic_is_deleted": "This topic is deleted!",
"profile": "Profilis", "profile": "Profilis",
"posted_by": "Parašė %1", "posted_by": "Parašė %1",
"posted_by_guest": "Parašė svečias", "posted_by_guest": "Parašė svečias",

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

Loading…
Cancel
Save