mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-07 06:25:50 +01:00
merge
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -22,9 +22,9 @@ pidfile
|
|||||||
|
|
||||||
# templates
|
# templates
|
||||||
/public/templates
|
/public/templates
|
||||||
/public/sounds
|
|
||||||
|
|
||||||
/public/uploads
|
/public/uploads
|
||||||
|
/public/sounds
|
||||||
|
|
||||||
# compiled files
|
# compiled files
|
||||||
/public/stylesheet.css
|
/public/stylesheet.css
|
||||||
|
|||||||
@@ -69,7 +69,13 @@ module.exports = function(grunt) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
grunt.loadNpmTasks('grunt-contrib-watch');
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||||
|
|
||||||
|
if (grunt.option('skip')) {
|
||||||
|
grunt.registerTask('default', ['watch:serverUpdated']);
|
||||||
|
} else {
|
||||||
grunt.registerTask('default', ['watch']);
|
grunt.registerTask('default', ['watch']);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
env.NODE_ENV = 'development';
|
env.NODE_ENV = 'development';
|
||||||
|
|
||||||
|
|||||||
2
app.js
2
app.js
@@ -279,7 +279,7 @@ function upgrade() {
|
|||||||
|
|
||||||
function activate() {
|
function activate() {
|
||||||
require('./src/database').init(function(err) {
|
require('./src/database').init(function(err) {
|
||||||
var plugin = nconf.get('activate'),
|
var plugin = nconf.get('_')[1] ? nconf.get('_')[1] : nconf.get('activate'),
|
||||||
db = require('./src/database');
|
db = require('./src/database');
|
||||||
|
|
||||||
winston.info('Activating plugin %s', plugin);
|
winston.info('Activating plugin %s', plugin);
|
||||||
|
|||||||
@@ -29,5 +29,6 @@
|
|||||||
"profileImageDimension": 128,
|
"profileImageDimension": 128,
|
||||||
"requireEmailConfirmation": 0,
|
"requireEmailConfirmation": 0,
|
||||||
"allowProfileImageUploads": 1,
|
"allowProfileImageUploads": 1,
|
||||||
"teaserPost": "last"
|
"teaserPost": "last",
|
||||||
|
"allowPrivateGroups": 1
|
||||||
}
|
}
|
||||||
5
nodebb
5
nodebb
@@ -72,8 +72,9 @@ switch(process.argv[2]) {
|
|||||||
getRunningPid(function(err, pid) {
|
getRunningPid(function(err, pid) {
|
||||||
if (!err) {
|
if (!err) {
|
||||||
process.kill(pid, 'SIGHUP');
|
process.kill(pid, 'SIGHUP');
|
||||||
|
process.stdout.write('\nRestarting NodeBB\n'.bold);
|
||||||
} else {
|
} else {
|
||||||
process.stdout.write('NodeBB could not be restarted, as a running instance could not be found.');
|
process.stdout.write('NodeBB could not be restarted, as a running instance could not be found.\n');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
@@ -83,7 +84,7 @@ switch(process.argv[2]) {
|
|||||||
if (!err) {
|
if (!err) {
|
||||||
process.kill(pid, 'SIGUSR2');
|
process.kill(pid, 'SIGUSR2');
|
||||||
} else {
|
} else {
|
||||||
process.stdout.write('NodeBB could not be reloaded, as a running instance could not be found.');
|
process.stdout.write('NodeBB could not be reloaded, as a running instance could not be found.\n');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|||||||
25
package.json
25
package.json
@@ -2,7 +2,7 @@
|
|||||||
"name": "nodebb",
|
"name": "nodebb",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"description": "NodeBB Forum",
|
"description": "NodeBB Forum",
|
||||||
"version": "0.9.3",
|
"version": "0.9.4",
|
||||||
"homepage": "http://www.nodebb.org",
|
"homepage": "http://www.nodebb.org",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
"express": "^4.9.5",
|
"express": "^4.9.5",
|
||||||
"express-session": "^1.8.2",
|
"express-session": "^1.8.2",
|
||||||
"express-useragent": "0.2.4",
|
"express-useragent": "0.2.4",
|
||||||
"html-to-text": "1.5.1",
|
"html-to-text": "2.0.0",
|
||||||
"jimp": "0.2.21",
|
"jimp": "0.2.21",
|
||||||
"less": "^2.0.0",
|
"less": "^2.0.0",
|
||||||
"logrotate-stream": "^0.2.3",
|
"logrotate-stream": "^0.2.3",
|
||||||
@@ -44,24 +44,25 @@
|
|||||||
"mongodb": "~2.1.3",
|
"mongodb": "~2.1.3",
|
||||||
"morgan": "^1.3.2",
|
"morgan": "^1.3.2",
|
||||||
"nconf": "~0.8.2",
|
"nconf": "~0.8.2",
|
||||||
"nodebb-plugin-composer-default": "3.0.3",
|
"nodebb-plugin-composer-default": "3.0.6",
|
||||||
"nodebb-plugin-dbsearch": "0.3.1",
|
"nodebb-plugin-dbsearch": "0.3.1",
|
||||||
"nodebb-plugin-emoji-extended": "0.5.0",
|
"nodebb-plugin-emoji-extended": "0.5.0",
|
||||||
"nodebb-plugin-markdown": "4.0.16",
|
"nodebb-plugin-markdown": "4.0.17",
|
||||||
"nodebb-plugin-mentions": "1.0.14",
|
"nodebb-plugin-mentions": "1.0.17",
|
||||||
"nodebb-plugin-soundpack-default": "0.1.5",
|
"nodebb-plugin-soundpack-default": "0.1.5",
|
||||||
"nodebb-plugin-spam-be-gone": "0.4.5",
|
"nodebb-plugin-spam-be-gone": "0.4.5",
|
||||||
"nodebb-rewards-essentials": "0.0.6",
|
"nodebb-rewards-essentials": "0.0.6",
|
||||||
"nodebb-theme-lavender": "3.0.6",
|
"nodebb-theme-lavender": "3.0.8",
|
||||||
"nodebb-theme-persona": "4.0.72",
|
"nodebb-theme-persona": "4.0.87",
|
||||||
"nodebb-theme-vanilla": "5.0.43",
|
"nodebb-theme-vanilla": "5.0.52",
|
||||||
"nodebb-widget-essentials": "2.0.5",
|
"nodebb-widget-essentials": "2.0.6",
|
||||||
"nodemailer": "2.0.0",
|
"nodemailer": "2.0.0",
|
||||||
"nodemailer-sendmail-transport": "1.0.0",
|
"nodemailer-sendmail-transport": "1.0.0",
|
||||||
|
"nodemailer-smtp-transport": "^2.4.1",
|
||||||
"passport": "^0.3.0",
|
"passport": "^0.3.0",
|
||||||
"passport-local": "1.0.0",
|
"passport-local": "1.0.0",
|
||||||
"postcss": "^5.0.13",
|
"postcss": "^5.0.13",
|
||||||
"prompt": "^0.2.14",
|
"prompt": "^1.0.0",
|
||||||
"redis": "~2.4.2",
|
"redis": "~2.4.2",
|
||||||
"request": "^2.44.0",
|
"request": "^2.44.0",
|
||||||
"rimraf": "~2.5.0",
|
"rimraf": "~2.5.0",
|
||||||
@@ -79,9 +80,9 @@
|
|||||||
"uglify-js": "^2.6.0",
|
"uglify-js": "^2.6.0",
|
||||||
"underscore": "~1.8.3",
|
"underscore": "~1.8.3",
|
||||||
"underscore.deep": "^0.5.1",
|
"underscore.deep": "^0.5.1",
|
||||||
"validator": "^4.7.1",
|
"validator": "^5.0.0",
|
||||||
"winston": "^2.1.0",
|
"winston": "^2.1.0",
|
||||||
"xregexp": "~3.0.0"
|
"xregexp": "~3.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"mocha": "~1.13.0",
|
"mocha": "~1.13.0",
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "كلمة السر غير مقبولة",
|
"invalid-password": "كلمة السر غير مقبولة",
|
||||||
"invalid-username-or-password": "المرجود تحديد اسم مستخدم و كلمة مرور",
|
"invalid-username-or-password": "المرجود تحديد اسم مستخدم و كلمة مرور",
|
||||||
"invalid-search-term": "كلمة البحث غير صحيحة",
|
"invalid-search-term": "كلمة البحث غير صحيحة",
|
||||||
"invalid-pagination-value": "رقم الصفحة غير موجود",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "اسم المستخدم مأخوذ",
|
"username-taken": "اسم المستخدم مأخوذ",
|
||||||
"email-taken": "البريد الالكتروني مأخوذ",
|
"email-taken": "البريد الالكتروني مأخوذ",
|
||||||
"email-not-confirmed": "عنوان بريدك الإلكتروني غير مفعل بعد. انقر هنا لتفعيله من فضلك.",
|
"email-not-confirmed": "عنوان بريدك الإلكتروني غير مفعل بعد. انقر هنا لتفعيله من فضلك.",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "Chat message is too long",
|
"chat-message-too-long": "Chat message is too long",
|
||||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||||
"cant-remove-last-user": "You can't remove the last user",
|
"cant-remove-last-user": "You can't remove the last user",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "نظام السمعة معطل",
|
"reputation-system-disabled": "نظام السمعة معطل",
|
||||||
"downvoting-disabled": "التصويتات السلبية معطلة",
|
"downvoting-disabled": "التصويتات السلبية معطلة",
|
||||||
"not-enough-reputation-to-downvote": "ليس لديك سمعة تكفي لإضافة صوت سلبي لهذا الموضوع",
|
"not-enough-reputation-to-downvote": "ليس لديك سمعة تكفي لإضافة صوت سلبي لهذا الموضوع",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "الرجاء استعمال بريدك اﻹلكتروني للدخول",
|
"wrong-login-type-email": "الرجاء استعمال بريدك اﻹلكتروني للدخول",
|
||||||
"wrong-login-type-username": "الرجاء استعمال اسم المستخدم الخاص بك للدخول",
|
"wrong-login-type-username": "الرجاء استعمال اسم المستخدم الخاص بك للدخول",
|
||||||
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
||||||
"no-session-found": "No login session found!"
|
"no-session-found": "No login session found!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "posted in %1 by %2",
|
"posted_in_by": "posted in %1 by %2",
|
||||||
"posted_in_ago": "كتب في %1 %2",
|
"posted_in_ago": "كتب في %1 %2",
|
||||||
"posted_in_ago_by": "كتب في %1 %2 من طرف %3",
|
"posted_in_ago_by": "كتب في %1 %2 من طرف %3",
|
||||||
"posted_in_ago_by_guest": "كتب في %1 %2 من طرف زائر",
|
|
||||||
"replied_ago": "رد %1",
|
|
||||||
"user_posted_ago": "%1 كتب %2",
|
"user_posted_ago": "%1 كتب %2",
|
||||||
"guest_posted_ago": "كتب زائر %1",
|
"guest_posted_ago": "كتب زائر %1",
|
||||||
"last_edited_by_ago": "آخر تعديل من طرف %1 %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "لاوجود لمشاركات جديدة",
|
"norecentposts": "لاوجود لمشاركات جديدة",
|
||||||
"norecenttopics": "لاوجود لمواضيع جديدة",
|
"norecenttopics": "لاوجود لمواضيع جديدة",
|
||||||
"recentposts": "آخر المشاركات",
|
"recentposts": "آخر المشاركات",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Popular topics this month",
|
"popular-month": "Popular topics this month",
|
||||||
"popular-alltime": "All time popular topics",
|
"popular-alltime": "All time popular topics",
|
||||||
"recent": "المواضيع الحديثة",
|
"recent": "المواضيع الحديثة",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "اﻷعضاء المتصلون",
|
"users/online": "اﻷعضاء المتصلون",
|
||||||
"users/latest": "أحدث اﻷعضاء",
|
"users/latest": "أحدث اﻷعضاء",
|
||||||
"users/sort-posts": "Users with the most posts",
|
"users/sort-posts": "Users with the most posts",
|
||||||
"users/sort-reputation": "Users with the most reputation",
|
"users/sort-reputation": "Users with the most reputation",
|
||||||
"users/map": "User Map",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "User Search",
|
"users/search": "User Search",
|
||||||
"notifications": "التنبيهات",
|
"notifications": "التنبيهات",
|
||||||
"tags": "الكلمات الدلالية",
|
"tags": "الكلمات الدلالية",
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"login_to_subscribe": "المرجو إنشاء حساب أو تسجيل الدخول حتى يمكنك متابعة هذا الموضوع.",
|
"login_to_subscribe": "المرجو إنشاء حساب أو تسجيل الدخول حتى يمكنك متابعة هذا الموضوع.",
|
||||||
"markAsUnreadForAll.success": "تم تحديد الموضوع على أنه غير مقروء.",
|
"markAsUnreadForAll.success": "تم تحديد الموضوع على أنه غير مقروء.",
|
||||||
"mark_unread": "Mark unread",
|
"mark_unread": "Mark unread",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "مراقبة",
|
"watch": "مراقبة",
|
||||||
"unwatch": "الغاء المراقبة",
|
"unwatch": "الغاء المراقبة",
|
||||||
"watch.title": "استلم تنبيها بالردود الجديدة في هذا الموضوع",
|
"watch.title": "استلم تنبيها بالردود الجديدة في هذا الموضوع",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
||||||
"stale.create": "Create a new topic",
|
"stale.create": "Create a new topic",
|
||||||
"stale.reply_anyway": "Reply to this topic anyway",
|
"stale.reply_anyway": "Reply to this topic anyway",
|
||||||
"stale.link_back": "Re: [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "Spam",
|
"spam": "Spam",
|
||||||
"offensive": "Offensive",
|
"offensive": "Offensive",
|
||||||
"custom-flag-reason": "Enter a flagging reason"
|
"custom-flag-reason": "Enter a flagging reason"
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"users-found-search-took": "تم إيجاد %1 مستخدمـ(ين)! استغرق البحث %2 ثانية.",
|
"users-found-search-took": "تم إيجاد %1 مستخدمـ(ين)! استغرق البحث %2 ثانية.",
|
||||||
"filter-by": "Filter By",
|
"filter-by": "Filter By",
|
||||||
"online-only": "المتصلون فقط",
|
"online-only": "المتصلون فقط",
|
||||||
"picture-only": "صورة فقط",
|
|
||||||
"invite": "دعوة",
|
"invite": "دعوة",
|
||||||
"invitation-email-sent": "An invitation email has been sent to %1",
|
"invitation-email-sent": "An invitation email has been sent to %1",
|
||||||
"user_list": "قائمة اﻷعضاء",
|
"user_list": "قائمة اﻷعضاء",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "المواضيع الغير مقروءة",
|
"unread_topics": "المواضيع الغير مقروءة",
|
||||||
"categories": "الفئات",
|
"categories": "الفئات",
|
||||||
"tags": "الكلمات الدلالية",
|
"tags": "الكلمات الدلالية",
|
||||||
"map": "Map"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "Невалидна парола",
|
"invalid-password": "Невалидна парола",
|
||||||
"invalid-username-or-password": "Моля, посочете потребителско име и парола",
|
"invalid-username-or-password": "Моля, посочете потребителско име и парола",
|
||||||
"invalid-search-term": "Невалиден текст за търсене",
|
"invalid-search-term": "Невалиден текст за търсене",
|
||||||
"invalid-pagination-value": "Невалиден номер на страница",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "Потребителското име е заето",
|
"username-taken": "Потребителското име е заето",
|
||||||
"email-taken": "Е-пощата е заета",
|
"email-taken": "Е-пощата е заета",
|
||||||
"email-not-confirmed": "Вашата е-поща все още не е потвърдена. Моля, натиснете тук, за да потвърдите е-пощата си.",
|
"email-not-confirmed": "Вашата е-поща все още не е потвърдена. Моля, натиснете тук, за да потвърдите е-пощата си.",
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
"confirm-email-already-sent": "Е-писмото за потвърждение вече е изпратено. Моля, почакайте още %1 минута/и, преди да изпратите ново.",
|
"confirm-email-already-sent": "Е-писмото за потвърждение вече е изпратено. Моля, почакайте още %1 минута/и, преди да изпратите ново.",
|
||||||
"username-too-short": "Потребителското име е твърде кратко",
|
"username-too-short": "Потребителското име е твърде кратко",
|
||||||
"username-too-long": "Потребителското име е твърде дълго",
|
"username-too-long": "Потребителското име е твърде дълго",
|
||||||
"password-too-long": "Password too long",
|
"password-too-long": "Паролата е твърде дълга",
|
||||||
"user-banned": "Потребителят е блокиран",
|
"user-banned": "Потребителят е блокиран",
|
||||||
"user-too-new": "Съжаляваме, но трябва да изчакате поне %1 секунда/и, преди да направите първата си публикация",
|
"user-too-new": "Съжаляваме, но трябва да изчакате поне %1 секунда/и, преди да направите първата си публикация",
|
||||||
"no-category": "Категорията не съществува",
|
"no-category": "Категорията не съществува",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "Съобщението е твърде дълго",
|
"chat-message-too-long": "Съобщението е твърде дълго",
|
||||||
"cant-edit-chat-message": "Нямате право да редактирате това съобщение",
|
"cant-edit-chat-message": "Нямате право да редактирате това съобщение",
|
||||||
"cant-remove-last-user": "Не можете да премахнете последния потребител",
|
"cant-remove-last-user": "Не можете да премахнете последния потребител",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "Системата за репутация е изключена.",
|
"reputation-system-disabled": "Системата за репутация е изключена.",
|
||||||
"downvoting-disabled": "Отрицателното гласуване е изключено",
|
"downvoting-disabled": "Отрицателното гласуване е изключено",
|
||||||
"not-enough-reputation-to-downvote": "Нямате достатъчно репутация, за да гласувате отрицателно за тази публикация",
|
"not-enough-reputation-to-downvote": "Нямате достатъчно репутация, за да гласувате отрицателно за тази публикация",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "Моля, използвайте е-пощата си, за да влезете",
|
"wrong-login-type-email": "Моля, използвайте е-пощата си, за да влезете",
|
||||||
"wrong-login-type-username": "Моля, използвайте потребителското си име, за да влезете",
|
"wrong-login-type-username": "Моля, използвайте потребителското си име, за да влезете",
|
||||||
"invite-maximum-met": "Вие сте поканили максимално позволения брой хора (%1 от %2).",
|
"invite-maximum-met": "Вие сте поканили максимално позволения брой хора (%1 от %2).",
|
||||||
"no-session-found": "Не е открита сесия за вход!"
|
"no-session-found": "Не е открита сесия за вход!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -49,9 +49,9 @@
|
|||||||
"users": "Потребители",
|
"users": "Потребители",
|
||||||
"topics": "Теми",
|
"topics": "Теми",
|
||||||
"posts": "Публ.",
|
"posts": "Публ.",
|
||||||
"best": "Best",
|
"best": "Най-добри",
|
||||||
"upvoted": "Upvoted",
|
"upvoted": "С положителни гласове",
|
||||||
"downvoted": "Downvoted",
|
"downvoted": "С отрицателни гласове",
|
||||||
"views": "Прегл.",
|
"views": "Прегл.",
|
||||||
"reputation": "Репутация",
|
"reputation": "Репутация",
|
||||||
"read_more": "още",
|
"read_more": "още",
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "публикувано в %1 от %2",
|
"posted_in_by": "публикувано в %1 от %2",
|
||||||
"posted_in_ago": "публикувано в %1 %2",
|
"posted_in_ago": "публикувано в %1 %2",
|
||||||
"posted_in_ago_by": "публикувано в %1 %2 от %3",
|
"posted_in_ago_by": "публикувано в %1 %2 от %3",
|
||||||
"posted_in_ago_by_guest": "публикувано в %1 %2 от гост",
|
|
||||||
"replied_ago": "отговори %1",
|
|
||||||
"user_posted_ago": "%1 публикува %2",
|
"user_posted_ago": "%1 публикува %2",
|
||||||
"guest_posted_ago": "гост публикува %1",
|
"guest_posted_ago": "гост публикува %1",
|
||||||
"last_edited_by_ago": "последно редактирано от %1 %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "Няма скорошни публикации",
|
"norecentposts": "Няма скорошни публикации",
|
||||||
"norecenttopics": "Няма скорошни теми",
|
"norecenttopics": "Няма скорошни теми",
|
||||||
"recentposts": "Скорошни публикации",
|
"recentposts": "Скорошни публикации",
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
"details.has_no_posts": "Членовете на тази група не са публикували нищо.",
|
"details.has_no_posts": "Членовете на тази група не са публикували нищо.",
|
||||||
"details.latest_posts": "Скорошни публикации",
|
"details.latest_posts": "Скорошни публикации",
|
||||||
"details.private": "Частна",
|
"details.private": "Частна",
|
||||||
"details.disableJoinRequests": "Disable join requests",
|
"details.disableJoinRequests": "Забраняване на заявките за присъединяване",
|
||||||
"details.grant": "Даване/отнемане на собственост",
|
"details.grant": "Даване/отнемане на собственост",
|
||||||
"details.kick": "Изгонване",
|
"details.kick": "Изгонване",
|
||||||
"details.owner_options": "Администрация на групата",
|
"details.owner_options": "Администрация на групата",
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
"chat.user_has_messaged_you": "%1 Ви написа съобщение.",
|
"chat.user_has_messaged_you": "%1 Ви написа съобщение.",
|
||||||
"chat.see_all": "Вижте всички разговори",
|
"chat.see_all": "Вижте всички разговори",
|
||||||
"chat.no-messages": "Моля, изберете получател, за да видите историята на съобщенията",
|
"chat.no-messages": "Моля, изберете получател, за да видите историята на съобщенията",
|
||||||
"chat.no-users-in-room": "No users in this room",
|
"chat.no-users-in-room": "Няма потребители в тази стая",
|
||||||
"chat.recent-chats": "Скорошни разговори",
|
"chat.recent-chats": "Скорошни разговори",
|
||||||
"chat.contacts": "Контакти",
|
"chat.contacts": "Контакти",
|
||||||
"chat.message-history": "История на съобщенията",
|
"chat.message-history": "История на съобщенията",
|
||||||
@@ -17,8 +17,8 @@
|
|||||||
"chat.thirty_days": "30 дни",
|
"chat.thirty_days": "30 дни",
|
||||||
"chat.three_months": "3 месеца",
|
"chat.three_months": "3 месеца",
|
||||||
"chat.delete_message_confirm": "Сигурен/а ли сте, че искате да изтриете това съобщение?",
|
"chat.delete_message_confirm": "Сигурен/а ли сте, че искате да изтриете това съобщение?",
|
||||||
"chat.roomname": "Chat Room %1",
|
"chat.roomname": "Стая за разговори %1",
|
||||||
"chat.add-users-to-room": "Add users to room",
|
"chat.add-users-to-room": "Добавяне на потребители към стаята",
|
||||||
"composer.compose": "Писане",
|
"composer.compose": "Писане",
|
||||||
"composer.show_preview": "Показване на прегледа",
|
"composer.show_preview": "Показване на прегледа",
|
||||||
"composer.hide_preview": "Скриване на прегледа",
|
"composer.hide_preview": "Скриване на прегледа",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"mark_all_read": "Отбелязване на всички известия като прочетени",
|
"mark_all_read": "Отбелязване на всички известия като прочетени",
|
||||||
"back_to_home": "Назад към %1",
|
"back_to_home": "Назад към %1",
|
||||||
"outgoing_link": "Външна връзка",
|
"outgoing_link": "Външна връзка",
|
||||||
"outgoing_link_message": "You are now leaving %1",
|
"outgoing_link_message": "Напускате %1",
|
||||||
"continue_to": "Продължаване към %1",
|
"continue_to": "Продължаване към %1",
|
||||||
"return_to": "Връщане към %1",
|
"return_to": "Връщане към %1",
|
||||||
"new_notification": "Ново известие",
|
"new_notification": "Ново известие",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Популярните теми този месец",
|
"popular-month": "Популярните теми този месец",
|
||||||
"popular-alltime": "Популярните теми за всички времена",
|
"popular-alltime": "Популярните теми за всички времена",
|
||||||
"recent": "Скорошни теми",
|
"recent": "Скорошни теми",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "Потребители на линия",
|
"users/online": "Потребители на линия",
|
||||||
"users/latest": "Последни потребители",
|
"users/latest": "Последни потребители",
|
||||||
"users/sort-posts": "Потребители с най-много публикации",
|
"users/sort-posts": "Потребители с най-много публикации",
|
||||||
"users/sort-reputation": "Потребители с най-висока репутация",
|
"users/sort-reputation": "Потребители с най-висока репутация",
|
||||||
"users/map": "Карта на потребителите",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "Търсене на потребители",
|
"users/search": "Търсене на потребители",
|
||||||
"notifications": "Известия",
|
"notifications": "Известия",
|
||||||
"tags": "Етикети",
|
"tags": "Етикети",
|
||||||
@@ -35,9 +36,9 @@
|
|||||||
"account/favourites": "Любимите публикации на %1",
|
"account/favourites": "Любимите публикации на %1",
|
||||||
"account/settings": "Потребителски настройки",
|
"account/settings": "Потребителски настройки",
|
||||||
"account/watched": "Теми, следени от %1",
|
"account/watched": "Теми, следени от %1",
|
||||||
"account/upvoted": "Posts upvoted by %1",
|
"account/upvoted": "Публикации, получили положителен глас от %1",
|
||||||
"account/downvoted": "Posts downvoted by %1",
|
"account/downvoted": "Публикации, получили отрицателен глас от %1",
|
||||||
"account/best": "Best posts made by %1",
|
"account/best": "Най-добрите публикации от %1",
|
||||||
"maintenance.text": "%1 в момента е в профилактика. Моля, върнете се по-късно.",
|
"maintenance.text": "%1 в момента е в профилактика. Моля, върнете се по-късно.",
|
||||||
"maintenance.messageIntro": "В допълнение, администраторът е оставил това съобщение:",
|
"maintenance.messageIntro": "В допълнение, администраторът е оставил това съобщение:",
|
||||||
"throttled.text": "%1 в момента е недостъпен, поради прекомерно натоварване. Моля, върнете се отново по-късно."
|
"throttled.text": "%1 в момента е недостъпен, поради прекомерно натоварване. Моля, върнете се отново по-късно."
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
"notify_me": "Получавайте известия за новите отговори в тази тема",
|
"notify_me": "Получавайте известия за новите отговори в тази тема",
|
||||||
"quote": "Цитат",
|
"quote": "Цитат",
|
||||||
"reply": "Отговор",
|
"reply": "Отговор",
|
||||||
"reply-as-topic": "Reply as topic",
|
"reply-as-topic": "Отговор в нова тема",
|
||||||
"guest-login-reply": "Влезте, за да отговорите",
|
"guest-login-reply": "Влезте, за да отговорите",
|
||||||
"edit": "Редактиране",
|
"edit": "Редактиране",
|
||||||
"delete": "Изтриване",
|
"delete": "Изтриване",
|
||||||
@@ -34,7 +34,8 @@
|
|||||||
"not_following_topic.message": "Вече няма да получавате известия за тази тема.",
|
"not_following_topic.message": "Вече няма да получавате известия за тази тема.",
|
||||||
"login_to_subscribe": "Моля, регистрирайте се или влезте, за да се абонирате за тази тема.",
|
"login_to_subscribe": "Моля, регистрирайте се или влезте, за да се абонирате за тази тема.",
|
||||||
"markAsUnreadForAll.success": "Темата е отбелязана като непрочетена за всички.",
|
"markAsUnreadForAll.success": "Темата е отбелязана като непрочетена за всички.",
|
||||||
"mark_unread": "Mark unread",
|
"mark_unread": "Отбелязване като непрочетена",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "Наблюдаване",
|
"watch": "Наблюдаване",
|
||||||
"unwatch": "Спиране на наблюдаването",
|
"unwatch": "Спиране на наблюдаването",
|
||||||
"watch.title": "Получавайте известия за новите отговори в тази тема",
|
"watch.title": "Получавайте известия за новите отговори в тази тема",
|
||||||
@@ -50,7 +51,7 @@
|
|||||||
"thread_tools.move_all": "Преместване на всички",
|
"thread_tools.move_all": "Преместване на всички",
|
||||||
"thread_tools.fork": "Разделяне на темата",
|
"thread_tools.fork": "Разделяне на темата",
|
||||||
"thread_tools.delete": "Изтриване на темата",
|
"thread_tools.delete": "Изтриване на темата",
|
||||||
"thread_tools.delete-posts": "Delete Posts",
|
"thread_tools.delete-posts": "Изтриване на публикациите",
|
||||||
"thread_tools.delete_confirm": "Сигурен/а ли сте, че искате да изтриете тази тема?",
|
"thread_tools.delete_confirm": "Сигурен/а ли сте, че искате да изтриете тази тема?",
|
||||||
"thread_tools.restore": "Възстановяване на темата",
|
"thread_tools.restore": "Възстановяване на темата",
|
||||||
"thread_tools.restore_confirm": "Сигурен/а ли сте, че искате да възстановите тази тема?",
|
"thread_tools.restore_confirm": "Сигурен/а ли сте, че искате да възстановите тази тема?",
|
||||||
@@ -77,7 +78,7 @@
|
|||||||
"fork_topic_instruction": "Натиснете публикациите, които искате да отделите",
|
"fork_topic_instruction": "Натиснете публикациите, които искате да отделите",
|
||||||
"fork_no_pids": "Няма избрани публикации!",
|
"fork_no_pids": "Няма избрани публикации!",
|
||||||
"fork_success": "Темата е разделена успешно! Натиснете тук, за да преминете към отделената тема.",
|
"fork_success": "Темата е разделена успешно! Натиснете тук, за да преминете към отделената тема.",
|
||||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
"delete_posts_instruction": "Натиснете публикациите, които искате да изтриете/изчистите",
|
||||||
"composer.title_placeholder": "Въведете заглавието на темата си тук...",
|
"composer.title_placeholder": "Въведете заглавието на темата си тук...",
|
||||||
"composer.handle_placeholder": "Име",
|
"composer.handle_placeholder": "Име",
|
||||||
"composer.discard": "Отхвърляне",
|
"composer.discard": "Отхвърляне",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "Темата, в която отговаряте, е доста стара. Искате ли вместо това да създадете нова и да направите препратка към тази в отговора си?",
|
"stale.warning": "Темата, в която отговаряте, е доста стара. Искате ли вместо това да създадете нова и да направите препратка към тази в отговора си?",
|
||||||
"stale.create": "Създаване на нова тема",
|
"stale.create": "Създаване на нова тема",
|
||||||
"stale.reply_anyway": "Отговаряне в тази тема въпреки това",
|
"stale.reply_anyway": "Отговаряне в тази тема въпреки това",
|
||||||
"stale.link_back": "Отговор: [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "Спам",
|
"spam": "Спам",
|
||||||
"offensive": "Обидно",
|
"offensive": "Обидно",
|
||||||
"custom-flag-reason": "Изберете причина за докладване"
|
"custom-flag-reason": "Изберете причина за докладване"
|
||||||
|
|||||||
@@ -77,9 +77,9 @@
|
|||||||
"has_no_posts": "Този потребител не е публикувал нищо досега.",
|
"has_no_posts": "Този потребител не е публикувал нищо досега.",
|
||||||
"has_no_topics": "Този потребител не е създавал теми досега.",
|
"has_no_topics": "Този потребител не е създавал теми досега.",
|
||||||
"has_no_watched_topics": "Този потребител не е следил нито една тема досега.",
|
"has_no_watched_topics": "Този потребител не е следил нито една тема досега.",
|
||||||
"has_no_upvoted_posts": "This user hasn't upvoted any posts yet.",
|
"has_no_upvoted_posts": "Този потребител не е гласувал положително досега.",
|
||||||
"has_no_downvoted_posts": "This user hasn't downvoted any posts yet.",
|
"has_no_downvoted_posts": "Този потребител не е гласувал отрицателно досега.",
|
||||||
"has_no_voted_posts": "This user has no voted posts",
|
"has_no_voted_posts": "Този потребител не е гласувал досега.",
|
||||||
"email_hidden": "Е-пощата е скрита",
|
"email_hidden": "Е-пощата е скрита",
|
||||||
"hidden": "скрито",
|
"hidden": "скрито",
|
||||||
"paginate_description": "Разделяне на темите и публикациите на страници, вместо да се превърта безкрайно",
|
"paginate_description": "Разделяне на темите и публикациите на страници, вместо да се превърта безкрайно",
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"users-found-search-took": "Намерени са %1 потребител(и)! Търсенето отне %2 секунди.",
|
"users-found-search-took": "Намерени са %1 потребител(и)! Търсенето отне %2 секунди.",
|
||||||
"filter-by": "Филтриране",
|
"filter-by": "Филтриране",
|
||||||
"online-only": "Само тези на линия",
|
"online-only": "Само тези на линия",
|
||||||
"picture-only": "Само със снимка",
|
|
||||||
"invite": "Канене",
|
"invite": "Канене",
|
||||||
"invitation-email-sent": "Беше изпратено е-писмо за потвърждение до %1",
|
"invitation-email-sent": "Беше изпратено е-писмо за потвърждение до %1",
|
||||||
"user_list": "Списък от потребители",
|
"user_list": "Списък от потребители",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "Непрочетени теми",
|
"unread_topics": "Непрочетени теми",
|
||||||
"categories": "Категории",
|
"categories": "Категории",
|
||||||
"tags": "Етикети",
|
"tags": "Етикети",
|
||||||
"map": "Карта"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "ভুল পাসওয়ার্ড",
|
"invalid-password": "ভুল পাসওয়ার্ড",
|
||||||
"invalid-username-or-password": "অনুগ্রহ পূর্বক ইউজারনেম এবং পাসওয়ার্ড উভয়ই প্রদান করুন",
|
"invalid-username-or-password": "অনুগ্রহ পূর্বক ইউজারনেম এবং পাসওয়ার্ড উভয়ই প্রদান করুন",
|
||||||
"invalid-search-term": "অগ্রহনযোগ্য সার্চ টার্ম",
|
"invalid-search-term": "অগ্রহনযোগ্য সার্চ টার্ম",
|
||||||
"invalid-pagination-value": "ভুল পৃষ্ঠা নাম্বার",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "ইউজারনেম আগেই ব্যবহৃত",
|
"username-taken": "ইউজারনেম আগেই ব্যবহৃত",
|
||||||
"email-taken": "ইমেইল আগেই ব্যবহৃত",
|
"email-taken": "ইমেইল আগেই ব্যবহৃত",
|
||||||
"email-not-confirmed": "আপনার ইমেইল এড্রেস নিশ্চিত করা হয় নি, নিশ্চিত করতে এখানে ক্লিক করুন।",
|
"email-not-confirmed": "আপনার ইমেইল এড্রেস নিশ্চিত করা হয় নি, নিশ্চিত করতে এখানে ক্লিক করুন।",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "Chat message is too long",
|
"chat-message-too-long": "Chat message is too long",
|
||||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||||
"cant-remove-last-user": "You can't remove the last user",
|
"cant-remove-last-user": "You can't remove the last user",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "সম্মাননা ব্যাবস্থা নিস্ক্রীয় রাখা হয়েছে",
|
"reputation-system-disabled": "সম্মাননা ব্যাবস্থা নিস্ক্রীয় রাখা হয়েছে",
|
||||||
"downvoting-disabled": "ঋণাত্মক ভোট নিস্ক্রীয় রাখা হয়েছে।",
|
"downvoting-disabled": "ঋণাত্মক ভোট নিস্ক্রীয় রাখা হয়েছে।",
|
||||||
"not-enough-reputation-to-downvote": "আপনার এই পোস্ট downvote করার জন্য পর্যাপ্ত সম্মাননা নেই",
|
"not-enough-reputation-to-downvote": "আপনার এই পোস্ট downvote করার জন্য পর্যাপ্ত সম্মাননা নেই",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "Please use your email to login",
|
"wrong-login-type-email": "Please use your email to login",
|
||||||
"wrong-login-type-username": "Please use your username to login",
|
"wrong-login-type-username": "Please use your username to login",
|
||||||
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
||||||
"no-session-found": "No login session found!"
|
"no-session-found": "No login session found!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "posted in %1 by %2",
|
"posted_in_by": "posted in %1 by %2",
|
||||||
"posted_in_ago": "%1 বিভাগে পোস্ট করা হয়েছে %2 আগে",
|
"posted_in_ago": "%1 বিভাগে পোস্ট করা হয়েছে %2 আগে",
|
||||||
"posted_in_ago_by": "%3 %1 বিভাগে পোস্ট করেছেন %2",
|
"posted_in_ago_by": "%3 %1 বিভাগে পোস্ট করেছেন %2",
|
||||||
"posted_in_ago_by_guest": "%1 বিভাগে অতিথি পোস্ট করেছেন %2",
|
|
||||||
"replied_ago": "উত্তর দেয়া হয়েছে %1 ",
|
|
||||||
"user_posted_ago": "%1 পোস্ট করেছেন %2",
|
"user_posted_ago": "%1 পোস্ট করেছেন %2",
|
||||||
"guest_posted_ago": "অতিথি পোস্ট করেছেন %1",
|
"guest_posted_ago": "অতিথি পোস্ট করেছেন %1",
|
||||||
"last_edited_by_ago": "সর্বশেষ সম্পাদনা করেছেন %1 %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "কোনও সাম্প্রতিক পোস্ট নেই",
|
"norecentposts": "কোনও সাম্প্রতিক পোস্ট নেই",
|
||||||
"norecenttopics": "কোনও সাম্প্রতিক টপিক নেই",
|
"norecenttopics": "কোনও সাম্প্রতিক টপিক নেই",
|
||||||
"recentposts": "সাম্প্রতিক পোস্ট",
|
"recentposts": "সাম্প্রতিক পোস্ট",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Popular topics this month",
|
"popular-month": "Popular topics this month",
|
||||||
"popular-alltime": "All time popular topics",
|
"popular-alltime": "All time popular topics",
|
||||||
"recent": "সাম্প্রতিক টপিক",
|
"recent": "সাম্প্রতিক টপিক",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "Online Users",
|
"users/online": "Online Users",
|
||||||
"users/latest": "Latest Users",
|
"users/latest": "Latest Users",
|
||||||
"users/sort-posts": "Users with the most posts",
|
"users/sort-posts": "Users with the most posts",
|
||||||
"users/sort-reputation": "Users with the most reputation",
|
"users/sort-reputation": "Users with the most reputation",
|
||||||
"users/map": "User Map",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "User Search",
|
"users/search": "User Search",
|
||||||
"notifications": "বিজ্ঞপ্তি",
|
"notifications": "বিজ্ঞপ্তি",
|
||||||
"tags": "ট্যাগসমূহ",
|
"tags": "ট্যাগসমূহ",
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"login_to_subscribe": "এই টপিকে সাবস্ক্রাইব করতে চাইলে অনুগ্রহ করে নিবন্ধণ করুন অথবা প্রবেশ করুন।",
|
"login_to_subscribe": "এই টপিকে সাবস্ক্রাইব করতে চাইলে অনুগ্রহ করে নিবন্ধণ করুন অথবা প্রবেশ করুন।",
|
||||||
"markAsUnreadForAll.success": "টপিকটি সবার জন্য অপঠিত হিসাবে মার্ক করুন।",
|
"markAsUnreadForAll.success": "টপিকটি সবার জন্য অপঠিত হিসাবে মার্ক করুন।",
|
||||||
"mark_unread": "Mark unread",
|
"mark_unread": "Mark unread",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "দেখা",
|
"watch": "দেখা",
|
||||||
"unwatch": "অদেখা",
|
"unwatch": "অদেখা",
|
||||||
"watch.title": "এই টপিকে নতুন উত্তর এলে বিজ্ঞাপণের মাধ্যমে জানুন।",
|
"watch.title": "এই টপিকে নতুন উত্তর এলে বিজ্ঞাপণের মাধ্যমে জানুন।",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
||||||
"stale.create": "Create a new topic",
|
"stale.create": "Create a new topic",
|
||||||
"stale.reply_anyway": "Reply to this topic anyway",
|
"stale.reply_anyway": "Reply to this topic anyway",
|
||||||
"stale.link_back": "Re: [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "Spam",
|
"spam": "Spam",
|
||||||
"offensive": "Offensive",
|
"offensive": "Offensive",
|
||||||
"custom-flag-reason": "Enter a flagging reason"
|
"custom-flag-reason": "Enter a flagging reason"
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"users-found-search-took": "%1 জন সদস্য(দের) খুঁজে পাওয়া গেছে। খুঁজতে সময় লেগেছে %2 সেকেন্ড ",
|
"users-found-search-took": "%1 জন সদস্য(দের) খুঁজে পাওয়া গেছে। খুঁজতে সময় লেগেছে %2 সেকেন্ড ",
|
||||||
"filter-by": "ফিল্টার করার ধরন",
|
"filter-by": "ফিল্টার করার ধরন",
|
||||||
"online-only": "শুধুমাত্র অনলাইন",
|
"online-only": "শুধুমাত্র অনলাইন",
|
||||||
"picture-only": "শুধুমাত্র ছবি",
|
|
||||||
"invite": "ইনভাইট",
|
"invite": "ইনভাইট",
|
||||||
"invitation-email-sent": "%1 কে একটি ইনভাইটেশন ইমেইল পাঠানো হয়েছে",
|
"invitation-email-sent": "%1 কে একটি ইনভাইটেশন ইমেইল পাঠানো হয়েছে",
|
||||||
"user_list": "সদস্য তালিকা",
|
"user_list": "সদস্য তালিকা",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "অপঠিত টপিক",
|
"unread_topics": "অপঠিত টপিক",
|
||||||
"categories": "বিভাগ",
|
"categories": "বিভাগ",
|
||||||
"tags": "ট্যাগসমূহ",
|
"tags": "ট্যাগসমূহ",
|
||||||
"map": "ম্যাপ"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "Neplatné heslo",
|
"invalid-password": "Neplatné heslo",
|
||||||
"invalid-username-or-password": "Stanovte, prosím, oboje, jak uživatelské jméno, tak heslo",
|
"invalid-username-or-password": "Stanovte, prosím, oboje, jak uživatelské jméno, tak heslo",
|
||||||
"invalid-search-term": "Neplatný výraz pro vyhledávání",
|
"invalid-search-term": "Neplatný výraz pro vyhledávání",
|
||||||
"invalid-pagination-value": "Neplatná hodnota pro stránkování",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "Uživatelské jméno je již použito",
|
"username-taken": "Uživatelské jméno je již použito",
|
||||||
"email-taken": "Email je již použit",
|
"email-taken": "Email je již použit",
|
||||||
"email-not-confirmed": "Vaše emailová adresa zatím nebyla potvrzena. Kliknutím zde svůj email potvrdíte.",
|
"email-not-confirmed": "Vaše emailová adresa zatím nebyla potvrzena. Kliknutím zde svůj email potvrdíte.",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "Chat message is too long",
|
"chat-message-too-long": "Chat message is too long",
|
||||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||||
"cant-remove-last-user": "You can't remove the last user",
|
"cant-remove-last-user": "You can't remove the last user",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "Systém reputací je zakázán.",
|
"reputation-system-disabled": "Systém reputací je zakázán.",
|
||||||
"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",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "Please use your email to login",
|
"wrong-login-type-email": "Please use your email to login",
|
||||||
"wrong-login-type-username": "Please use your username to login",
|
"wrong-login-type-username": "Please use your username to login",
|
||||||
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
||||||
"no-session-found": "No login session found!"
|
"no-session-found": "No login session found!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "posted in %1 by %2",
|
"posted_in_by": "posted in %1 by %2",
|
||||||
"posted_in_ago": "posted in %1 %2",
|
"posted_in_ago": "posted in %1 %2",
|
||||||
"posted_in_ago_by": "posted in %1 %2 by %3",
|
"posted_in_ago_by": "posted in %1 %2 by %3",
|
||||||
"posted_in_ago_by_guest": "posted in %1 %2 by Guest",
|
|
||||||
"replied_ago": "replied %1",
|
|
||||||
"user_posted_ago": "%1 posted %2",
|
"user_posted_ago": "%1 posted %2",
|
||||||
"guest_posted_ago": "Guest posted %1",
|
"guest_posted_ago": "Guest posted %1",
|
||||||
"last_edited_by_ago": "last edited by %1 %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "Žádné nedávné příspěvky",
|
"norecentposts": "Žádné nedávné příspěvky",
|
||||||
"norecenttopics": "Žádné nedávné témata",
|
"norecenttopics": "Žádné nedávné témata",
|
||||||
"recentposts": "Nedávné příspěvky",
|
"recentposts": "Nedávné příspěvky",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Popular topics this month",
|
"popular-month": "Popular topics this month",
|
||||||
"popular-alltime": "All time popular topics",
|
"popular-alltime": "All time popular topics",
|
||||||
"recent": "Recent Topics",
|
"recent": "Recent Topics",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "Online Users",
|
"users/online": "Online Users",
|
||||||
"users/latest": "Latest Users",
|
"users/latest": "Latest Users",
|
||||||
"users/sort-posts": "Users with the most posts",
|
"users/sort-posts": "Users with the most posts",
|
||||||
"users/sort-reputation": "Users with the most reputation",
|
"users/sort-reputation": "Users with the most reputation",
|
||||||
"users/map": "User Map",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "User Search",
|
"users/search": "User Search",
|
||||||
"notifications": "Notifications",
|
"notifications": "Notifications",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"login_to_subscribe": "Please register or log in in order to subscribe to this topic.",
|
"login_to_subscribe": "Please register or log in in order to subscribe to this topic.",
|
||||||
"markAsUnreadForAll.success": "Topic marked as unread for all.",
|
"markAsUnreadForAll.success": "Topic marked as unread for all.",
|
||||||
"mark_unread": "Mark unread",
|
"mark_unread": "Mark unread",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "Watch",
|
"watch": "Watch",
|
||||||
"unwatch": "Unwatch",
|
"unwatch": "Unwatch",
|
||||||
"watch.title": "Be notified of new replies in this topic",
|
"watch.title": "Be notified of new replies in this topic",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
||||||
"stale.create": "Create a new topic",
|
"stale.create": "Create a new topic",
|
||||||
"stale.reply_anyway": "Reply to this topic anyway",
|
"stale.reply_anyway": "Reply to this topic anyway",
|
||||||
"stale.link_back": "Re: [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "Spam",
|
"spam": "Spam",
|
||||||
"offensive": "Offensive",
|
"offensive": "Offensive",
|
||||||
"custom-flag-reason": "Enter a flagging reason"
|
"custom-flag-reason": "Enter a flagging reason"
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"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",
|
|
||||||
"invite": "Invite",
|
"invite": "Invite",
|
||||||
"invitation-email-sent": "An invitation email has been sent to %1",
|
"invitation-email-sent": "An invitation email has been sent to %1",
|
||||||
"user_list": "User List",
|
"user_list": "User List",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "Unread Topics",
|
"unread_topics": "Unread Topics",
|
||||||
"categories": "Categories",
|
"categories": "Categories",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
"map": "Map"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "Ugyldig Adgangskode",
|
"invalid-password": "Ugyldig Adgangskode",
|
||||||
"invalid-username-or-password": "Venligst angiv både brugernavn og adgangskode",
|
"invalid-username-or-password": "Venligst angiv både brugernavn og adgangskode",
|
||||||
"invalid-search-term": "Ugyldig søgeterm",
|
"invalid-search-term": "Ugyldig søgeterm",
|
||||||
"invalid-pagination-value": "Ugyldig sidetalsværdi",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "Brugernavn optaget",
|
"username-taken": "Brugernavn optaget",
|
||||||
"email-taken": "Emailadresse allerede i brug",
|
"email-taken": "Emailadresse allerede i brug",
|
||||||
"email-not-confirmed": "Din email adresse er ikke blevet bekræftet endnu, venligst klik her for at bekrætige den.",
|
"email-not-confirmed": "Din email adresse er ikke blevet bekræftet endnu, venligst klik her for at bekrætige den.",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "Chat beskeden er for lang",
|
"chat-message-too-long": "Chat beskeden er for lang",
|
||||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||||
"cant-remove-last-user": "You can't remove the last user",
|
"cant-remove-last-user": "You can't remove the last user",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "Vurderingssystem er slået fra.",
|
"reputation-system-disabled": "Vurderingssystem er slået fra.",
|
||||||
"downvoting-disabled": "Nedvurdering er slået fra",
|
"downvoting-disabled": "Nedvurdering er slået fra",
|
||||||
"not-enough-reputation-to-downvote": "Du har ikke nok omdømme til at nedstemme dette indlæg",
|
"not-enough-reputation-to-downvote": "Du har ikke nok omdømme til at nedstemme dette indlæg",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "Brug venligt din email til login",
|
"wrong-login-type-email": "Brug venligt din email til login",
|
||||||
"wrong-login-type-username": "Brug venligt dit brugernavn til login",
|
"wrong-login-type-username": "Brug venligt dit brugernavn til login",
|
||||||
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
||||||
"no-session-found": "No login session found!"
|
"no-session-found": "No login session found!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "skrevet i %1 af %2",
|
"posted_in_by": "skrevet i %1 af %2",
|
||||||
"posted_in_ago": "skrivet i %1 %2",
|
"posted_in_ago": "skrivet i %1 %2",
|
||||||
"posted_in_ago_by": "skrevet i %1 %2 af %3",
|
"posted_in_ago_by": "skrevet i %1 %2 af %3",
|
||||||
"posted_in_ago_by_guest": "insendt i %1 %2 siden af gæst",
|
|
||||||
"replied_ago": "svaret for %1",
|
|
||||||
"user_posted_ago": "%1 skrev for %2",
|
"user_posted_ago": "%1 skrev for %2",
|
||||||
"guest_posted_ago": "Gæst skrev for %1",
|
"guest_posted_ago": "Gæst skrev for %1",
|
||||||
"last_edited_by_ago": "sidst redigeret af %1 for %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "Ingen seneste indlæg",
|
"norecentposts": "Ingen seneste indlæg",
|
||||||
"norecenttopics": "Ingen seneste tråde",
|
"norecenttopics": "Ingen seneste tråde",
|
||||||
"recentposts": "Seneste indlæg",
|
"recentposts": "Seneste indlæg",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Populære tråde denne måned",
|
"popular-month": "Populære tråde denne måned",
|
||||||
"popular-alltime": "Top populære tråde",
|
"popular-alltime": "Top populære tråde",
|
||||||
"recent": "Seneste tråde",
|
"recent": "Seneste tråde",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "Online brugere",
|
"users/online": "Online brugere",
|
||||||
"users/latest": "Seneste brugere",
|
"users/latest": "Seneste brugere",
|
||||||
"users/sort-posts": "Brugere med de fleste indlæg",
|
"users/sort-posts": "Brugere med de fleste indlæg",
|
||||||
"users/sort-reputation": "Brugere med mest omdømme",
|
"users/sort-reputation": "Brugere med mest omdømme",
|
||||||
"users/map": "Bruger kort",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "Bruger søgning",
|
"users/search": "Bruger søgning",
|
||||||
"notifications": "Notifikationer",
|
"notifications": "Notifikationer",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"login_to_subscribe": "Venligt registrer eller login for at abbonere på dette emne.",
|
"login_to_subscribe": "Venligt registrer eller login for at abbonere på dette emne.",
|
||||||
"markAsUnreadForAll.success": "Emnet er market ulæst for alle.",
|
"markAsUnreadForAll.success": "Emnet er market ulæst for alle.",
|
||||||
"mark_unread": "Mark unread",
|
"mark_unread": "Mark unread",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "Overvåg",
|
"watch": "Overvåg",
|
||||||
"unwatch": "Fjern overvågning",
|
"unwatch": "Fjern overvågning",
|
||||||
"watch.title": "Bliv notificeret ved nye indlæg i dette emne",
|
"watch.title": "Bliv notificeret ved nye indlæg i dette emne",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
||||||
"stale.create": "Create a new topic",
|
"stale.create": "Create a new topic",
|
||||||
"stale.reply_anyway": "Reply to this topic anyway",
|
"stale.reply_anyway": "Reply to this topic anyway",
|
||||||
"stale.link_back": "Re: [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "Spam",
|
"spam": "Spam",
|
||||||
"offensive": "Stødende",
|
"offensive": "Stødende",
|
||||||
"custom-flag-reason": "Enter a flagging reason"
|
"custom-flag-reason": "Enter a flagging reason"
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"users-found-search-took": "%1 bruger(e) fundet! Søgning tog %2 sekunder.",
|
"users-found-search-took": "%1 bruger(e) fundet! Søgning tog %2 sekunder.",
|
||||||
"filter-by": "Filtre Efter",
|
"filter-by": "Filtre Efter",
|
||||||
"online-only": "Kun online",
|
"online-only": "Kun online",
|
||||||
"picture-only": "Kun billeder",
|
|
||||||
"invite": "Invitér",
|
"invite": "Invitér",
|
||||||
"invitation-email-sent": "En invitations email er blevet sendt til %1",
|
"invitation-email-sent": "En invitations email er blevet sendt til %1",
|
||||||
"user_list": "Bruger Liste",
|
"user_list": "Bruger Liste",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "Ulæste Tråde",
|
"unread_topics": "Ulæste Tråde",
|
||||||
"categories": "Kategorier",
|
"categories": "Kategorier",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
"map": "Kort"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -2,11 +2,11 @@
|
|||||||
"category": "Kategorie",
|
"category": "Kategorie",
|
||||||
"subcategories": "Unterkategorien",
|
"subcategories": "Unterkategorien",
|
||||||
"new_topic_button": "Neues Thema",
|
"new_topic_button": "Neues Thema",
|
||||||
"guest-login-post": "Anmelden um einen Beitrag zu erstellen",
|
"guest-login-post": "Anmelden, um einen Beitrag zu erstellen",
|
||||||
"no_topics": "<strong>Es gibt noch keine Themen in dieser Kategorie.</strong><br />Warum beginnst du nicht eins?",
|
"no_topics": "<strong>Es gibt noch keine Themen in dieser Kategorie.</strong><br />Warum beginnst du nicht eins?",
|
||||||
"browsing": "Aktiv",
|
"browsing": "Aktiv",
|
||||||
"no_replies": "Niemand hat geantwortet",
|
"no_replies": "Niemand hat geantwortet",
|
||||||
"no_new_posts": "Keine neue Beiträge.",
|
"no_new_posts": "Keine neuen Beiträge.",
|
||||||
"share_this_category": "Teile diese Kategorie",
|
"share_this_category": "Teile diese Kategorie",
|
||||||
"watch": "Beobachten",
|
"watch": "Beobachten",
|
||||||
"ignore": "Ignorieren",
|
"ignore": "Ignorieren",
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "Ungültiges Passwort",
|
"invalid-password": "Ungültiges Passwort",
|
||||||
"invalid-username-or-password": "Bitte gebe einen Benutzernamen und ein Passwort an",
|
"invalid-username-or-password": "Bitte gebe einen Benutzernamen und ein Passwort an",
|
||||||
"invalid-search-term": "Ungültige Suchanfrage",
|
"invalid-search-term": "Ungültige Suchanfrage",
|
||||||
"invalid-pagination-value": "Die Nummerierung ist ungültig",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "Der Benutzername ist bereits vergeben",
|
"username-taken": "Der Benutzername ist bereits vergeben",
|
||||||
"email-taken": "Die E-Mail-Adresse ist bereits vergeben",
|
"email-taken": "Die E-Mail-Adresse ist bereits vergeben",
|
||||||
"email-not-confirmed": "Deine E-Mail wurde noch nicht bestätigt, bitte klicke hier, um deine E-Mail zu bestätigen.",
|
"email-not-confirmed": "Deine E-Mail wurde noch nicht bestätigt, bitte klicke hier, um deine E-Mail zu bestätigen.",
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
"confirm-email-already-sent": "Die Bestätigungsmail wurde verschickt, bitte warte %1 Minute(n) um eine Weitere zu verschicken.",
|
"confirm-email-already-sent": "Die Bestätigungsmail wurde verschickt, bitte warte %1 Minute(n) um eine Weitere zu verschicken.",
|
||||||
"username-too-short": "Benutzername ist zu kurz",
|
"username-too-short": "Benutzername ist zu kurz",
|
||||||
"username-too-long": "Benutzername ist zu lang",
|
"username-too-long": "Benutzername ist zu lang",
|
||||||
"password-too-long": "Password too long",
|
"password-too-long": "Passwort ist zu lang",
|
||||||
"user-banned": "Benutzer ist gesperrt",
|
"user-banned": "Benutzer ist gesperrt",
|
||||||
"user-too-new": "Entschuldigung, du musst %1 Sekunde(n) warten, bevor du deinen ersten Beitrag schreiben kannst.",
|
"user-too-new": "Entschuldigung, du musst %1 Sekunde(n) warten, bevor du deinen ersten Beitrag schreiben kannst.",
|
||||||
"no-category": "Die Kategorie existiert nicht",
|
"no-category": "Die Kategorie existiert nicht",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "Die Nachricht ist zu lang",
|
"chat-message-too-long": "Die Nachricht ist zu lang",
|
||||||
"cant-edit-chat-message": "Du darfst diese Nachricht nicht ändern",
|
"cant-edit-chat-message": "Du darfst diese Nachricht nicht ändern",
|
||||||
"cant-remove-last-user": "Du kannst den letzten Benutzer nicht entfernen",
|
"cant-remove-last-user": "Du kannst den letzten Benutzer nicht entfernen",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "Das Reputationssystem ist deaktiviert.",
|
"reputation-system-disabled": "Das Reputationssystem ist deaktiviert.",
|
||||||
"downvoting-disabled": "Downvotes sind deaktiviert.",
|
"downvoting-disabled": "Downvotes sind deaktiviert.",
|
||||||
"not-enough-reputation-to-downvote": "Dein Ansehen ist zu niedrig, um diesen Beitrag negativ zu bewerten.",
|
"not-enough-reputation-to-downvote": "Dein Ansehen ist zu niedrig, um diesen Beitrag negativ zu bewerten.",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "Bitte nutze deine E-Mail-Adresse zum einloggen",
|
"wrong-login-type-email": "Bitte nutze deine E-Mail-Adresse zum einloggen",
|
||||||
"wrong-login-type-username": "Bitte nutze deinen Benutzernamen zum einloggen",
|
"wrong-login-type-username": "Bitte nutze deinen Benutzernamen zum einloggen",
|
||||||
"invite-maximum-met": "Du hast bereits die maximale Anzahl an Personen eingeladen (%1 von %2).",
|
"invite-maximum-met": "Du hast bereits die maximale Anzahl an Personen eingeladen (%1 von %2).",
|
||||||
"no-session-found": "Keine Login-Sitzung gefunden!"
|
"no-session-found": "Keine Login-Sitzung gefunden!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -49,9 +49,9 @@
|
|||||||
"users": "Benutzer",
|
"users": "Benutzer",
|
||||||
"topics": "Themen",
|
"topics": "Themen",
|
||||||
"posts": "Beiträge",
|
"posts": "Beiträge",
|
||||||
"best": "Best",
|
"best": "Bestbewertet",
|
||||||
"upvoted": "Upvoted",
|
"upvoted": "Positiv bewertet",
|
||||||
"downvoted": "Downvoted",
|
"downvoted": "Negativ bewertet",
|
||||||
"views": "Aufrufe",
|
"views": "Aufrufe",
|
||||||
"reputation": "Ansehen",
|
"reputation": "Ansehen",
|
||||||
"read_more": "weiterlesen",
|
"read_more": "weiterlesen",
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "verfasst in %1 von %2",
|
"posted_in_by": "verfasst in %1 von %2",
|
||||||
"posted_in_ago": "Verfasst in %1 %2",
|
"posted_in_ago": "Verfasst in %1 %2",
|
||||||
"posted_in_ago_by": "Verfasst in %1 %2 von %3",
|
"posted_in_ago_by": "Verfasst in %1 %2 von %3",
|
||||||
"posted_in_ago_by_guest": "verfasst in %1 %2 von einem Gast",
|
|
||||||
"replied_ago": "antwortete %1",
|
|
||||||
"user_posted_ago": "%1 schrieb %2",
|
"user_posted_ago": "%1 schrieb %2",
|
||||||
"guest_posted_ago": "Gast schrieb %1",
|
"guest_posted_ago": "Gast schrieb %1",
|
||||||
"last_edited_by_ago": "zuletzt editiert von %1 %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "Keine aktuellen Beiträge",
|
"norecentposts": "Keine aktuellen Beiträge",
|
||||||
"norecenttopics": "Keine aktuellen Themen",
|
"norecenttopics": "Keine aktuellen Themen",
|
||||||
"recentposts": "Aktuelle Beiträge",
|
"recentposts": "Aktuelle Beiträge",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"mark_all_read": "Alle Benachrichtigungen als gelesen markieren",
|
"mark_all_read": "Alle Benachrichtigungen als gelesen markieren",
|
||||||
"back_to_home": "Zurück zu %1",
|
"back_to_home": "Zurück zu %1",
|
||||||
"outgoing_link": "Externer Link",
|
"outgoing_link": "Externer Link",
|
||||||
"outgoing_link_message": "You are now leaving %1",
|
"outgoing_link_message": "Du verlässt nun %1",
|
||||||
"continue_to": "Fortfahren zu %1",
|
"continue_to": "Fortfahren zu %1",
|
||||||
"return_to": "Kehre zurück zu %1",
|
"return_to": "Kehre zurück zu %1",
|
||||||
"new_notification": "Neue Benachrichtigung",
|
"new_notification": "Neue Benachrichtigung",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Beliebte Themen dieses Monats",
|
"popular-month": "Beliebte Themen dieses Monats",
|
||||||
"popular-alltime": "Beliebteste Themen",
|
"popular-alltime": "Beliebteste Themen",
|
||||||
"recent": "Neueste Themen",
|
"recent": "Neueste Themen",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "Benutzer online",
|
"users/online": "Benutzer online",
|
||||||
"users/latest": "Neuste Benutzer",
|
"users/latest": "Neuste Benutzer",
|
||||||
"users/sort-posts": "Benutzer mit den meisten Beiträgen",
|
"users/sort-posts": "Benutzer mit den meisten Beiträgen",
|
||||||
"users/sort-reputation": "Benutzer mit dem höchsten Ansehen",
|
"users/sort-reputation": "Benutzer mit dem höchsten Ansehen",
|
||||||
"users/map": "Benutzer Karte",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "Benutzer Suche",
|
"users/search": "Benutzer Suche",
|
||||||
"notifications": "Benachrichtigungen",
|
"notifications": "Benachrichtigungen",
|
||||||
"tags": "Markierungen",
|
"tags": "Markierungen",
|
||||||
@@ -20,7 +21,7 @@
|
|||||||
"reset": "Passwort zurücksetzen",
|
"reset": "Passwort zurücksetzen",
|
||||||
"categories": "Kategorien",
|
"categories": "Kategorien",
|
||||||
"groups": "Gruppen",
|
"groups": "Gruppen",
|
||||||
"group": "%1's Gruppen",
|
"group": "%1 Gruppe",
|
||||||
"chats": "Chats",
|
"chats": "Chats",
|
||||||
"chat": "Chatte mit %1",
|
"chat": "Chatte mit %1",
|
||||||
"account/edit": "Bearbeite %1",
|
"account/edit": "Bearbeite %1",
|
||||||
@@ -31,13 +32,13 @@
|
|||||||
"account/followers": "Nutzer, die %1 folgen",
|
"account/followers": "Nutzer, die %1 folgen",
|
||||||
"account/posts": "Beiträge von %1",
|
"account/posts": "Beiträge von %1",
|
||||||
"account/topics": "Themen verfasst von %1",
|
"account/topics": "Themen verfasst von %1",
|
||||||
"account/groups": "%1's Gruppen",
|
"account/groups": "Gruppen von %1",
|
||||||
"account/favourites": "Von %1 favorisierte Beiträge",
|
"account/favourites": "Von %1 favorisierte Beiträge",
|
||||||
"account/settings": "Benutzer-Einstellungen",
|
"account/settings": "Benutzer-Einstellungen",
|
||||||
"account/watched": "Themen angeschaut von %1",
|
"account/watched": "Themen angeschaut von %1",
|
||||||
"account/upvoted": "Posts upvoted by %1",
|
"account/upvoted": "Von %1 positiv bewertete Beiträge",
|
||||||
"account/downvoted": "Posts downvoted by %1",
|
"account/downvoted": "Von %1 negativ bewertete Beiträge",
|
||||||
"account/best": "Best posts made by %1",
|
"account/best": "Bestbewertete Beiträge von %1",
|
||||||
"maintenance.text": "%1 befindet sich derzeit in der Wartung. Bitte komme später wieder.",
|
"maintenance.text": "%1 befindet sich derzeit in der Wartung. Bitte komme später wieder.",
|
||||||
"maintenance.messageIntro": "Zusätzlich hat der Administrator diese Nachricht hinterlassen:",
|
"maintenance.messageIntro": "Zusätzlich hat der Administrator diese Nachricht hinterlassen:",
|
||||||
"throttled.text": "%1 ist momentan aufgrund von Überlastung nicht verfügbar. Bitte komm später wieder."
|
"throttled.text": "%1 ist momentan aufgrund von Überlastung nicht verfügbar. Bitte komm später wieder."
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"login_to_subscribe": "Bitte registrieren oder einloggen um dieses Thema zu abonnieren",
|
"login_to_subscribe": "Bitte registrieren oder einloggen um dieses Thema zu abonnieren",
|
||||||
"markAsUnreadForAll.success": "Thema für Alle als ungelesen markiert.",
|
"markAsUnreadForAll.success": "Thema für Alle als ungelesen markiert.",
|
||||||
"mark_unread": "Als ungelesen markieren",
|
"mark_unread": "Als ungelesen markieren",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "Beobachten",
|
"watch": "Beobachten",
|
||||||
"unwatch": "Nicht mehr beobachten",
|
"unwatch": "Nicht mehr beobachten",
|
||||||
"watch.title": "Bei neuen Antworten benachrichtigen",
|
"watch.title": "Bei neuen Antworten benachrichtigen",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "Das Thema auf das du antworten möchtest ist ziemlich alt. Möchtest du stattdessen ein neues Thema erstellen und auf dieses in deiner Antwort hinweisen?",
|
"stale.warning": "Das Thema auf das du antworten möchtest ist ziemlich alt. Möchtest du stattdessen ein neues Thema erstellen und auf dieses in deiner Antwort hinweisen?",
|
||||||
"stale.create": "Ein neues Thema erstellen",
|
"stale.create": "Ein neues Thema erstellen",
|
||||||
"stale.reply_anyway": "Auf dieses Thema trotzdem antworten",
|
"stale.reply_anyway": "Auf dieses Thema trotzdem antworten",
|
||||||
"stale.link_back": "Re: [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "Spam",
|
"spam": "Spam",
|
||||||
"offensive": "Beleidigend",
|
"offensive": "Beleidigend",
|
||||||
"custom-flag-reason": "Gib einen Grund für die Markierung ein"
|
"custom-flag-reason": "Gib einen Grund für die Markierung ein"
|
||||||
|
|||||||
@@ -77,9 +77,9 @@
|
|||||||
"has_no_posts": "Dieser Nutzer hat noch nichts gepostet.",
|
"has_no_posts": "Dieser Nutzer hat noch nichts gepostet.",
|
||||||
"has_no_topics": "Dieser Nutzer hat noch keine Themen gepostet.",
|
"has_no_topics": "Dieser Nutzer hat noch keine Themen gepostet.",
|
||||||
"has_no_watched_topics": "Dieser Nutzer beobachtet keine Themen.",
|
"has_no_watched_topics": "Dieser Nutzer beobachtet keine Themen.",
|
||||||
"has_no_upvoted_posts": "This user hasn't upvoted any posts yet.",
|
"has_no_upvoted_posts": "Dieser Benutzer hat bisher keine Beiträge positiv bewertet.",
|
||||||
"has_no_downvoted_posts": "This user hasn't downvoted any posts yet.",
|
"has_no_downvoted_posts": "Dieser Benutzer hat bisher keine Beiträge negativ bewertet.",
|
||||||
"has_no_voted_posts": "This user has no voted posts",
|
"has_no_voted_posts": "Dieser Benutzer hat keine bewerteten Beiträge",
|
||||||
"email_hidden": "E-Mail Adresse versteckt",
|
"email_hidden": "E-Mail Adresse versteckt",
|
||||||
"hidden": "versteckt",
|
"hidden": "versteckt",
|
||||||
"paginate_description": "Themen und Beiträge in Seiten aufteilen, anstelle unendlich zu scrollen",
|
"paginate_description": "Themen und Beiträge in Seiten aufteilen, anstelle unendlich zu scrollen",
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"users-found-search-took": "%1 Benutzer gefunden! Die Suche dauerte %2 ms.",
|
"users-found-search-took": "%1 Benutzer gefunden! Die Suche dauerte %2 ms.",
|
||||||
"filter-by": "Filtern nach",
|
"filter-by": "Filtern nach",
|
||||||
"online-only": "Nur Online",
|
"online-only": "Nur Online",
|
||||||
"picture-only": "Nur mit Bildern",
|
|
||||||
"invite": "Einladen",
|
"invite": "Einladen",
|
||||||
"invitation-email-sent": "Eine Einladungsemail wurde an %1 verschickt",
|
"invitation-email-sent": "Eine Einladungsemail wurde an %1 verschickt",
|
||||||
"user_list": "Nutzerliste",
|
"user_list": "Nutzerliste",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "Ungelesen Themen",
|
"unread_topics": "Ungelesen Themen",
|
||||||
"categories": "Kategorien",
|
"categories": "Kategorien",
|
||||||
"tags": "Schlagworte",
|
"tags": "Schlagworte",
|
||||||
"map": "Karte"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "Άκυρος Κωδικός",
|
"invalid-password": "Άκυρος Κωδικός",
|
||||||
"invalid-username-or-password": "Παρακαλώ γράψε το όνομα χρήστη και τον κωδικό",
|
"invalid-username-or-password": "Παρακαλώ γράψε το όνομα χρήστη και τον κωδικό",
|
||||||
"invalid-search-term": "Άκυρος όρος αναζήτησης",
|
"invalid-search-term": "Άκυρος όρος αναζήτησης",
|
||||||
"invalid-pagination-value": "Άκυρη τιμή σελιδοποίησης",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "Το όνομα χρήστη είναι πιασμένο",
|
"username-taken": "Το όνομα χρήστη είναι πιασμένο",
|
||||||
"email-taken": "Το email είναι πιασμένο",
|
"email-taken": "Το email είναι πιασμένο",
|
||||||
"email-not-confirmed": "Your email has not been confirmed yet, please click here to confirm your email.",
|
"email-not-confirmed": "Your email has not been confirmed yet, please click here to confirm your email.",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "Chat message is too long",
|
"chat-message-too-long": "Chat message is too long",
|
||||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||||
"cant-remove-last-user": "You can't remove the last user",
|
"cant-remove-last-user": "You can't remove the last user",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "Το σύστημα φήμης έχει απενεργοποιηθεί.",
|
"reputation-system-disabled": "Το σύστημα φήμης έχει απενεργοποιηθεί.",
|
||||||
"downvoting-disabled": "Η καταψήφιση έχει απενεργοποιηθεί",
|
"downvoting-disabled": "Η καταψήφιση έχει απενεργοποιηθεί",
|
||||||
"not-enough-reputation-to-downvote": "Δεν έχεις αρκετή φήμη για να καταψηφίσεις αυτή την δημοσίευση",
|
"not-enough-reputation-to-downvote": "Δεν έχεις αρκετή φήμη για να καταψηφίσεις αυτή την δημοσίευση",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "Please use your email to login",
|
"wrong-login-type-email": "Please use your email to login",
|
||||||
"wrong-login-type-username": "Please use your username to login",
|
"wrong-login-type-username": "Please use your username to login",
|
||||||
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
||||||
"no-session-found": "No login session found!"
|
"no-session-found": "No login session found!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "posted in %1 by %2",
|
"posted_in_by": "posted in %1 by %2",
|
||||||
"posted_in_ago": "δημοσιεύτηκε στο %1 πριν από %2",
|
"posted_in_ago": "δημοσιεύτηκε στο %1 πριν από %2",
|
||||||
"posted_in_ago_by": "δημοσιεύτηκε στο %1 πριν από %2 από τον/την %3",
|
"posted_in_ago_by": "δημοσιεύτηκε στο %1 πριν από %2 από τον/την %3",
|
||||||
"posted_in_ago_by_guest": "δημοσιεύτηκε στο %1 πριν από %2 από Επισκέπτη",
|
|
||||||
"replied_ago": "απαντήθηκε πριν από %1",
|
|
||||||
"user_posted_ago": "Ο/Η %1 δημοσίευσε πριν από %2",
|
"user_posted_ago": "Ο/Η %1 δημοσίευσε πριν από %2",
|
||||||
"guest_posted_ago": "Επισκέπτης δημοσίευσε πριν από %1",
|
"guest_posted_ago": "Επισκέπτης δημοσίευσε πριν από %1",
|
||||||
"last_edited_by_ago": "επεξεργάστηκε τελευταία φορά από τον/την %1 πριν από %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "Δεν υπάρχουν πρόσφατες δημοσιεύσεις",
|
"norecentposts": "Δεν υπάρχουν πρόσφατες δημοσιεύσεις",
|
||||||
"norecenttopics": "Δεν υπάρχουν πρόσφατα θέματα",
|
"norecenttopics": "Δεν υπάρχουν πρόσφατα θέματα",
|
||||||
"recentposts": "Πρόσφατες Δημοσιεύσεις",
|
"recentposts": "Πρόσφατες Δημοσιεύσεις",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Popular topics this month",
|
"popular-month": "Popular topics this month",
|
||||||
"popular-alltime": "All time popular topics",
|
"popular-alltime": "All time popular topics",
|
||||||
"recent": "Πρόσφατα Θέματα",
|
"recent": "Πρόσφατα Θέματα",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "Online Users",
|
"users/online": "Online Users",
|
||||||
"users/latest": "Latest Users",
|
"users/latest": "Latest Users",
|
||||||
"users/sort-posts": "Users with the most posts",
|
"users/sort-posts": "Users with the most posts",
|
||||||
"users/sort-reputation": "Users with the most reputation",
|
"users/sort-reputation": "Users with the most reputation",
|
||||||
"users/map": "User Map",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "User Search",
|
"users/search": "User Search",
|
||||||
"notifications": "Ειδοποιήσεις",
|
"notifications": "Ειδοποιήσεις",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"login_to_subscribe": "Παρακαλώ εγγράψου ή συνδέσου για για γραφτείς σε αυτό το θέμα.",
|
"login_to_subscribe": "Παρακαλώ εγγράψου ή συνδέσου για για γραφτείς σε αυτό το θέμα.",
|
||||||
"markAsUnreadForAll.success": "Το θέμα σημειώθηκε ως μη αναγνωσμένο για όλους.",
|
"markAsUnreadForAll.success": "Το θέμα σημειώθηκε ως μη αναγνωσμένο για όλους.",
|
||||||
"mark_unread": "Mark unread",
|
"mark_unread": "Mark unread",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "Παρακολούθηση",
|
"watch": "Παρακολούθηση",
|
||||||
"unwatch": "Ξεπαρακολούθηση",
|
"unwatch": "Ξεπαρακολούθηση",
|
||||||
"watch.title": "Να ειδοποιούμαι για νέες απαντήσεις σε αυτό το θέμα",
|
"watch.title": "Να ειδοποιούμαι για νέες απαντήσεις σε αυτό το θέμα",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
||||||
"stale.create": "Create a new topic",
|
"stale.create": "Create a new topic",
|
||||||
"stale.reply_anyway": "Reply to this topic anyway",
|
"stale.reply_anyway": "Reply to this topic anyway",
|
||||||
"stale.link_back": "Re: [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "Spam",
|
"spam": "Spam",
|
||||||
"offensive": "Offensive",
|
"offensive": "Offensive",
|
||||||
"custom-flag-reason": "Enter a flagging reason"
|
"custom-flag-reason": "Enter a flagging reason"
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"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",
|
|
||||||
"invite": "Invite",
|
"invite": "Invite",
|
||||||
"invitation-email-sent": "An invitation email has been sent to %1",
|
"invitation-email-sent": "An invitation email has been sent to %1",
|
||||||
"user_list": "User List",
|
"user_list": "User List",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "Unread Topics",
|
"unread_topics": "Unread Topics",
|
||||||
"categories": "Categories",
|
"categories": "Categories",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
"map": "Map"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "Invalid Password",
|
"invalid-password": "Invalid Password",
|
||||||
"invalid-username-or-password": "Please specify both a username and password",
|
"invalid-username-or-password": "Please specify both a username and password",
|
||||||
"invalid-search-term": "Invalid search term",
|
"invalid-search-term": "Invalid search term",
|
||||||
"invalid-pagination-value": "Invalid pagination value",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "Username taken",
|
"username-taken": "Username taken",
|
||||||
"email-taken": "Email taken",
|
"email-taken": "Email taken",
|
||||||
"email-not-confirmed": "Your email has not been confirmed yet, please click here to confirm your email.",
|
"email-not-confirmed": "Your email has not been confirmed yet, please click here to confirm your email.",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "Chat message is too long",
|
"chat-message-too-long": "Chat message is too long",
|
||||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||||
"cant-remove-last-user": "You can't remove the last user",
|
"cant-remove-last-user": "You can't remove the last user",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "Reputation system is disabled.",
|
"reputation-system-disabled": "Reputation system is disabled.",
|
||||||
"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",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "Please use your email to login",
|
"wrong-login-type-email": "Please use your email to login",
|
||||||
"wrong-login-type-username": "Please use your username to login",
|
"wrong-login-type-username": "Please use your username to login",
|
||||||
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
||||||
"no-session-found": "No login session found!"
|
"no-session-found": "No login session found!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "posted in %1 by %2",
|
"posted_in_by": "posted in %1 by %2",
|
||||||
"posted_in_ago": "posted in %1 %2",
|
"posted_in_ago": "posted in %1 %2",
|
||||||
"posted_in_ago_by": "posted in %1 %2 by %3",
|
"posted_in_ago_by": "posted in %1 %2 by %3",
|
||||||
"posted_in_ago_by_guest": "posted in %1 %2 by Guest",
|
|
||||||
"replied_ago": "replied %1",
|
|
||||||
"user_posted_ago": "%1 posted %2",
|
"user_posted_ago": "%1 posted %2",
|
||||||
"guest_posted_ago": "Guest posted %1",
|
"guest_posted_ago": "Guest posted %1",
|
||||||
"last_edited_by_ago": "last edited by %1 %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "No Recent Posts",
|
"norecentposts": "No Recent Posts",
|
||||||
"norecenttopics": "No Recent Topics",
|
"norecenttopics": "No Recent Topics",
|
||||||
"recentposts": "Recent Messages",
|
"recentposts": "Recent Messages",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Popular topics this month",
|
"popular-month": "Popular topics this month",
|
||||||
"popular-alltime": "All time popular topics",
|
"popular-alltime": "All time popular topics",
|
||||||
"recent": "Recent Topics",
|
"recent": "Recent Topics",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "Online Users",
|
"users/online": "Online Users",
|
||||||
"users/latest": "Latest Users",
|
"users/latest": "Latest Users",
|
||||||
"users/sort-posts": "Users with the most posts",
|
"users/sort-posts": "Users with the most posts",
|
||||||
"users/sort-reputation": "Users with the most reputation",
|
"users/sort-reputation": "Users with the most reputation",
|
||||||
"users/map": "User Map",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "User Search",
|
"users/search": "User Search",
|
||||||
"notifications": "Notifications",
|
"notifications": "Notifications",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"login_to_subscribe": "Please register or log in in order to subscribe to this topic.",
|
"login_to_subscribe": "Please register or log in in order to subscribe to this topic.",
|
||||||
"markAsUnreadForAll.success": "Topic marked as unread for all.",
|
"markAsUnreadForAll.success": "Topic marked as unread for all.",
|
||||||
"mark_unread": "Mark unread",
|
"mark_unread": "Mark unread",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "Watch",
|
"watch": "Watch",
|
||||||
"unwatch": "Unwatch",
|
"unwatch": "Unwatch",
|
||||||
"watch.title": "Be notified of new replies in this topic",
|
"watch.title": "Be notified of new replies in this topic",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
||||||
"stale.create": "Create a new topic",
|
"stale.create": "Create a new topic",
|
||||||
"stale.reply_anyway": "Reply to this topic anyway",
|
"stale.reply_anyway": "Reply to this topic anyway",
|
||||||
"stale.link_back": "Re: [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "Spam",
|
"spam": "Spam",
|
||||||
"offensive": "Offensive",
|
"offensive": "Offensive",
|
||||||
"custom-flag-reason": "Enter a flagging reason"
|
"custom-flag-reason": "Enter a flagging reason"
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"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",
|
|
||||||
"invite": "Invite",
|
"invite": "Invite",
|
||||||
"invitation-email-sent": "An invitation email has been sent to %1",
|
"invitation-email-sent": "An invitation email has been sent to %1",
|
||||||
"user_list": "User List",
|
"user_list": "User List",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "Unread Topics",
|
"unread_topics": "Unread Topics",
|
||||||
"categories": "Categories",
|
"categories": "Categories",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
"map": "Map"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
"invalid-username-or-password": "Please specify both a username and password",
|
"invalid-username-or-password": "Please specify both a username and password",
|
||||||
"invalid-search-term": "Invalid search term",
|
"invalid-search-term": "Invalid search term",
|
||||||
|
|
||||||
"invalid-pagination-value": "Invalid pagination value",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
|
|
||||||
"username-taken": "Username taken",
|
"username-taken": "Username taken",
|
||||||
"email-taken": "Email taken",
|
"email-taken": "Email taken",
|
||||||
@@ -64,8 +64,8 @@
|
|||||||
"file-too-big": "Maximum allowed file size is %1 kB - please upload a smaller file",
|
"file-too-big": "Maximum allowed file size is %1 kB - please upload a smaller file",
|
||||||
"guest-upload-disabled": "Guest uploading has been disabled",
|
"guest-upload-disabled": "Guest uploading has been disabled",
|
||||||
|
|
||||||
"already-favourited": "You have already favourited this post",
|
"already-favourited": "You have already bookmarked this post",
|
||||||
"already-unfavourited": "You have already unfavourited this post",
|
"already-unfavourited": "You have already unbookmarked 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",
|
"cant-remove-last-admin": "You are the only administrator. Add another user as an administrator before removing yourself as admin",
|
||||||
@@ -106,6 +106,7 @@
|
|||||||
"chat-message-too-long": "Chat message is too long",
|
"chat-message-too-long": "Chat message is too long",
|
||||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||||
"cant-remove-last-user": "You can't remove the last user",
|
"cant-remove-last-user": "You can't remove the last user",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
|
|
||||||
"reputation-system-disabled": "Reputation system is disabled.",
|
"reputation-system-disabled": "Reputation system is disabled.",
|
||||||
"downvoting-disabled": "Downvoting is disabled",
|
"downvoting-disabled": "Downvoting is disabled",
|
||||||
@@ -122,5 +123,7 @@
|
|||||||
|
|
||||||
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
||||||
|
|
||||||
"no-session-found": "No login session found!"
|
"no-session-found": "No login session found!",
|
||||||
|
"not-in-room": "User not in room",
|
||||||
|
"no-users-in-room": "No users in this room"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -110,5 +110,6 @@
|
|||||||
"delete_all": "Delete All",
|
"delete_all": "Delete All",
|
||||||
"map": "Map",
|
"map": "Map",
|
||||||
"sessions": "Login Sessions",
|
"sessions": "Login Sessions",
|
||||||
"ip_address": "IP Address"
|
"ip_address": "IP Address",
|
||||||
|
"enter_page_number": "Enter page number"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,9 +18,9 @@
|
|||||||
"upvoted_your_post_in_multiple": "<strong>%1</strong> and %2 others have upvoted your post in <strong>%3</strong>.",
|
"upvoted_your_post_in_multiple": "<strong>%1</strong> and %2 others have upvoted your post in <strong>%3</strong>.",
|
||||||
"moved_your_post": "<strong>%1</strong> has moved your post to <strong>%2</strong>",
|
"moved_your_post": "<strong>%1</strong> has moved your post to <strong>%2</strong>",
|
||||||
"moved_your_topic": "<strong>%1</strong> has moved <strong>%2</strong>",
|
"moved_your_topic": "<strong>%1</strong> has moved <strong>%2</strong>",
|
||||||
"favourited_your_post_in": "<strong>%1</strong> has favourited your post in <strong>%2</strong>.",
|
"favourited_your_post_in": "<strong>%1</strong> has bookmarked your post in <strong>%2</strong>.",
|
||||||
"favourited_your_post_in_dual": "<strong>%1</strong> and <strong>%2</strong> have favourited your post in <strong>%3</strong>.",
|
"favourited_your_post_in_dual": "<strong>%1</strong> and <strong>%2</strong> have bookmarked your post in <strong>%3</strong>.",
|
||||||
"favourited_your_post_in_multiple": "<strong>%1</strong> and %2 others have favourited your post in <strong>%3</strong>.",
|
"favourited_your_post_in_multiple": "<strong>%1</strong> and %2 others have bookmarked your post in <strong>%3</strong>.",
|
||||||
"user_flagged_post_in": "<strong>%1</strong> flagged a post in <strong>%2</strong>",
|
"user_flagged_post_in": "<strong>%1</strong> flagged a post in <strong>%2</strong>",
|
||||||
"user_flagged_post_in_dual": "<strong>%1</strong> and <strong>%2</strong> flagged a post in <strong>%3</strong>",
|
"user_flagged_post_in_dual": "<strong>%1</strong> and <strong>%2</strong> flagged a post in <strong>%3</strong>",
|
||||||
"user_flagged_post_in_multiple": "<strong>%1</strong> and %2 others flagged a post in <strong>%3</strong>",
|
"user_flagged_post_in_multiple": "<strong>%1</strong> and %2 others flagged a post in <strong>%3</strong>",
|
||||||
|
|||||||
@@ -38,13 +38,15 @@
|
|||||||
"account/posts": "Posts made by %1",
|
"account/posts": "Posts made by %1",
|
||||||
"account/topics": "Topics created by %1",
|
"account/topics": "Topics created by %1",
|
||||||
"account/groups": "%1's Groups",
|
"account/groups": "%1's Groups",
|
||||||
"account/favourites": "%1's Favourite Posts",
|
"account/favourites": "%1's Bookmarked Posts",
|
||||||
"account/settings": "User Settings",
|
"account/settings": "User Settings",
|
||||||
"account/watched": "Topics watched by %1",
|
"account/watched": "Topics watched by %1",
|
||||||
"account/upvoted": "Posts upvoted by %1",
|
"account/upvoted": "Posts upvoted by %1",
|
||||||
"account/downvoted": "Posts downvoted by %1",
|
"account/downvoted": "Posts downvoted by %1",
|
||||||
"account/best": "Best posts made by %1",
|
"account/best": "Best posts made by %1",
|
||||||
|
|
||||||
|
"confirm": "Email Confirmed",
|
||||||
|
|
||||||
"maintenance.text": "%1 is currently undergoing maintenance. Please come back another time.",
|
"maintenance.text": "%1 is currently undergoing maintenance. Please come back another time.",
|
||||||
"maintenance.messageIntro": "Additionally, the administrator has left this message:",
|
"maintenance.messageIntro": "Additionally, the administrator has left this message:",
|
||||||
|
|
||||||
|
|||||||
@@ -79,9 +79,9 @@
|
|||||||
"confirm_move": "Move",
|
"confirm_move": "Move",
|
||||||
"confirm_fork": "Fork",
|
"confirm_fork": "Fork",
|
||||||
|
|
||||||
"favourite": "Favourite",
|
"favourite": "Bookmark",
|
||||||
"favourites": "Favourites",
|
"favourites": "Bookmarks",
|
||||||
"favourites.has_no_favourites": "You don't have any favourites, favourite some posts to see them here!",
|
"favourites.has_no_favourites": "You haven't bookmarked any posts yet.",
|
||||||
|
|
||||||
"loading_more_posts": "Loading More Posts",
|
"loading_more_posts": "Loading More Posts",
|
||||||
"move_topic": "Move Topic",
|
"move_topic": "Move Topic",
|
||||||
@@ -125,7 +125,8 @@
|
|||||||
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
||||||
"stale.create": "Create a new topic",
|
"stale.create": "Create a new topic",
|
||||||
"stale.reply_anyway": "Reply to this topic anyway",
|
"stale.reply_anyway": "Reply to this topic anyway",
|
||||||
"stale.link_back": "Re: [%1](%2)\n\n",
|
|
||||||
|
"link_back": "Re: [%1](%2)\n\n",
|
||||||
|
|
||||||
"spam": "Spam",
|
"spam": "Spam",
|
||||||
"offensive": "Offensive",
|
"offensive": "Offensive",
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
"profile": "Profile",
|
"profile": "Profile",
|
||||||
"profile_views": "Profile views",
|
"profile_views": "Profile views",
|
||||||
"reputation": "Reputation",
|
"reputation": "Reputation",
|
||||||
"favourites":"Favourites",
|
"favourites":"Bookmarks",
|
||||||
"watched": "Watched",
|
"watched": "Watched",
|
||||||
"followers": "Followers",
|
"followers": "Followers",
|
||||||
"following": "Following",
|
"following": "Following",
|
||||||
@@ -58,6 +58,7 @@
|
|||||||
"password": "Password",
|
"password": "Password",
|
||||||
"username_taken_workaround": "The username you requested was already taken, so we have altered it slightly. You are now known as <strong>%1</strong>",
|
"username_taken_workaround": "The username you requested was already taken, so we have altered it slightly. You are now known as <strong>%1</strong>",
|
||||||
"password_same_as_username": "Your password is the same as your username, please select another password.",
|
"password_same_as_username": "Your password is the same as your username, please select another password.",
|
||||||
|
"password_same_as_email": "Your password is the same as your email, please select another password.",
|
||||||
|
|
||||||
"upload_picture": "Upload picture",
|
"upload_picture": "Upload picture",
|
||||||
"upload_a_picture": "Upload a picture",
|
"upload_a_picture": "Upload a picture",
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"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",
|
|
||||||
"invite": "Invite",
|
"invite": "Invite",
|
||||||
"invitation-email-sent": "An invitation email has been sent to %1",
|
"invitation-email-sent": "An invitation email has been sent to %1",
|
||||||
"user_list": "User List",
|
"user_list": "User List",
|
||||||
@@ -17,6 +16,5 @@
|
|||||||
"unread_topics": "Unread Topics",
|
"unread_topics": "Unread Topics",
|
||||||
"categories": "Categories",
|
"categories": "Categories",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
"map": "Map",
|
|
||||||
"no-users-found": "No users found!"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "Invalid Password",
|
"invalid-password": "Invalid Password",
|
||||||
"invalid-username-or-password": "Please specify both a username and password",
|
"invalid-username-or-password": "Please specify both a username and password",
|
||||||
"invalid-search-term": "Invalid search term",
|
"invalid-search-term": "Invalid search term",
|
||||||
"invalid-pagination-value": "Invalid pagination value",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "Username taken",
|
"username-taken": "Username taken",
|
||||||
"email-taken": "Email taken",
|
"email-taken": "Email taken",
|
||||||
"email-not-confirmed": "Your email has not been confirmed yet, please click here to confirm your email.",
|
"email-not-confirmed": "Your email has not been confirmed yet, please click here to confirm your email.",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "Chat message is too long",
|
"chat-message-too-long": "Chat message is too long",
|
||||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||||
"cant-remove-last-user": "You can't remove the last user",
|
"cant-remove-last-user": "You can't remove the last user",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "Reputation system is disabled.",
|
"reputation-system-disabled": "Reputation system is disabled.",
|
||||||
"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",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "Please use your email to login",
|
"wrong-login-type-email": "Please use your email to login",
|
||||||
"wrong-login-type-username": "Please use your username to login",
|
"wrong-login-type-username": "Please use your username to login",
|
||||||
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
||||||
"no-session-found": "No login session found!"
|
"no-session-found": "No login session found!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "posted in %1 by %2",
|
"posted_in_by": "posted in %1 by %2",
|
||||||
"posted_in_ago": "posted in %1 %2",
|
"posted_in_ago": "posted in %1 %2",
|
||||||
"posted_in_ago_by": "posted in %1 %2 by %3",
|
"posted_in_ago_by": "posted in %1 %2 by %3",
|
||||||
"posted_in_ago_by_guest": "posted in %1 %2 by Guest",
|
|
||||||
"replied_ago": "replied %1",
|
|
||||||
"user_posted_ago": "%1 posted %2",
|
"user_posted_ago": "%1 posted %2",
|
||||||
"guest_posted_ago": "Guest posted %1",
|
"guest_posted_ago": "Guest posted %1",
|
||||||
"last_edited_by_ago": "last edited by %1 %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "No Recent Posts",
|
"norecentposts": "No Recent Posts",
|
||||||
"norecenttopics": "No Recent Topics",
|
"norecenttopics": "No Recent Topics",
|
||||||
"recentposts": "Recent Posts",
|
"recentposts": "Recent Posts",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Popular topics this month",
|
"popular-month": "Popular topics this month",
|
||||||
"popular-alltime": "All time popular topics",
|
"popular-alltime": "All time popular topics",
|
||||||
"recent": "Recent Topics",
|
"recent": "Recent Topics",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "Online Users",
|
"users/online": "Online Users",
|
||||||
"users/latest": "Latest Users",
|
"users/latest": "Latest Users",
|
||||||
"users/sort-posts": "Users with the most posts",
|
"users/sort-posts": "Users with the most posts",
|
||||||
"users/sort-reputation": "Users with the most reputation",
|
"users/sort-reputation": "Users with the most reputation",
|
||||||
"users/map": "User Map",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "User Search",
|
"users/search": "User Search",
|
||||||
"notifications": "Notifications",
|
"notifications": "Notifications",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"login_to_subscribe": "Please register or log in in order to subscribe to this topic.",
|
"login_to_subscribe": "Please register or log in in order to subscribe to this topic.",
|
||||||
"markAsUnreadForAll.success": "Topic marked as unread for all.",
|
"markAsUnreadForAll.success": "Topic marked as unread for all.",
|
||||||
"mark_unread": "Mark unread",
|
"mark_unread": "Mark unread",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "Watch",
|
"watch": "Watch",
|
||||||
"unwatch": "Unwatch",
|
"unwatch": "Unwatch",
|
||||||
"watch.title": "Be notified of new replies in this topic",
|
"watch.title": "Be notified of new replies in this topic",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
||||||
"stale.create": "Create a new topic",
|
"stale.create": "Create a new topic",
|
||||||
"stale.reply_anyway": "Reply to this topic anyway",
|
"stale.reply_anyway": "Reply to this topic anyway",
|
||||||
"stale.link_back": "Re: [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "Spam",
|
"spam": "Spam",
|
||||||
"offensive": "Offensive",
|
"offensive": "Offensive",
|
||||||
"custom-flag-reason": "Enter a flagging reason"
|
"custom-flag-reason": "Enter a flagging reason"
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"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",
|
|
||||||
"invite": "Invite",
|
"invite": "Invite",
|
||||||
"invitation-email-sent": "An invitation email has been sent to %1",
|
"invitation-email-sent": "An invitation email has been sent to %1",
|
||||||
"user_list": "User List",
|
"user_list": "User List",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "Unread Topics",
|
"unread_topics": "Unread Topics",
|
||||||
"categories": "Categories",
|
"categories": "Categories",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
"map": "Map"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "Contraseña no válida",
|
"invalid-password": "Contraseña no válida",
|
||||||
"invalid-username-or-password": "Por favor especifica tanto un usuario como contraseña",
|
"invalid-username-or-password": "Por favor especifica tanto un usuario como contraseña",
|
||||||
"invalid-search-term": "Término de búsqueda inválido",
|
"invalid-search-term": "Término de búsqueda inválido",
|
||||||
"invalid-pagination-value": "Valor de paginación no válido.",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "Nombre de usuario ocupado",
|
"username-taken": "Nombre de usuario ocupado",
|
||||||
"email-taken": "Correo electrónico ocupado",
|
"email-taken": "Correo electrónico ocupado",
|
||||||
"email-not-confirmed": "Su cuenta de correo electrónico no ha sido confirmada aún, por favor haga click aquí para confirmarla.",
|
"email-not-confirmed": "Su cuenta de correo electrónico no ha sido confirmada aún, por favor haga click aquí para confirmarla.",
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
"confirm-email-already-sent": "El email de confirmación ya ha sido enviado, por favor espera %1 minuto(s) para enviar otro.",
|
"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",
|
||||||
"password-too-long": "Password too long",
|
"password-too-long": "Contraseña muy corta",
|
||||||
"user-banned": "Usuario baneado",
|
"user-banned": "Usuario baneado",
|
||||||
"user-too-new": "Lo sentimos, es necesario que esperes %1 segundo(s) antes poder hacer tu primera publicación",
|
"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",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "Mensaje de Chat es demasiado largo",
|
"chat-message-too-long": "Mensaje de Chat es demasiado largo",
|
||||||
"cant-edit-chat-message": "No tienes permiso para editar este mensaje",
|
"cant-edit-chat-message": "No tienes permiso para editar este mensaje",
|
||||||
"cant-remove-last-user": "No puedes eliminar el último usuario",
|
"cant-remove-last-user": "No puedes eliminar el último usuario",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "El sistema de reputación está deshabilitado.",
|
"reputation-system-disabled": "El sistema de reputación está deshabilitado.",
|
||||||
"downvoting-disabled": "La votación negativa está deshabilitada.",
|
"downvoting-disabled": "La votación negativa está deshabilitada.",
|
||||||
"not-enough-reputation-to-downvote": "No tienes suficiente reputación para votar negativo este post",
|
"not-enough-reputation-to-downvote": "No tienes suficiente reputación para votar negativo este post",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "Por favor emplea tu email para acceder",
|
"wrong-login-type-email": "Por favor emplea tu email para acceder",
|
||||||
"wrong-login-type-username": "Por favor introduce tu nombre de usuario para acceder",
|
"wrong-login-type-username": "Por favor introduce tu nombre de usuario para acceder",
|
||||||
"invite-maximum-met": "Has alcanzado el número máximo de personas invitadas (%1 de %2).",
|
"invite-maximum-met": "Has alcanzado el número máximo de personas invitadas (%1 de %2).",
|
||||||
"no-session-found": "¡No se ha encontrado ningún inicio de sesión!"
|
"no-session-found": "¡No se ha encontrado ningún inicio de sesión!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -49,9 +49,9 @@
|
|||||||
"users": "Usuarios",
|
"users": "Usuarios",
|
||||||
"topics": "Temas",
|
"topics": "Temas",
|
||||||
"posts": "Posts",
|
"posts": "Posts",
|
||||||
"best": "Best",
|
"best": "Mejor",
|
||||||
"upvoted": "Upvoted",
|
"upvoted": "Votado positivamente",
|
||||||
"downvoted": "Downvoted",
|
"downvoted": "Votado negativamente",
|
||||||
"views": "Visitas",
|
"views": "Visitas",
|
||||||
"reputation": "Reputación",
|
"reputation": "Reputación",
|
||||||
"read_more": "leer más",
|
"read_more": "leer más",
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "publicado en %1 por %2",
|
"posted_in_by": "publicado en %1 por %2",
|
||||||
"posted_in_ago": "publicado en %1 %2",
|
"posted_in_ago": "publicado en %1 %2",
|
||||||
"posted_in_ago_by": "publicado en %1 %2 por %3",
|
"posted_in_ago_by": "publicado en %1 %2 por %3",
|
||||||
"posted_in_ago_by_guest": "publicado en %1 %2 por",
|
|
||||||
"replied_ago": "contestado %1",
|
|
||||||
"user_posted_ago": "%1 publicó %2",
|
"user_posted_ago": "%1 publicó %2",
|
||||||
"guest_posted_ago": "Invitado publicó %1",
|
"guest_posted_ago": "Invitado publicó %1",
|
||||||
"last_edited_by_ago": "última edición por %1 %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "No hay publicaciones recientes",
|
"norecentposts": "No hay publicaciones recientes",
|
||||||
"norecenttopics": "No hay temas recientes",
|
"norecenttopics": "No hay temas recientes",
|
||||||
"recentposts": "Publicaciones recientes",
|
"recentposts": "Publicaciones recientes",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"mark_all_read": "Marcar todas las notificaciones como leídas",
|
"mark_all_read": "Marcar todas las notificaciones como leídas",
|
||||||
"back_to_home": "Volver a %1",
|
"back_to_home": "Volver a %1",
|
||||||
"outgoing_link": "Enlace externo",
|
"outgoing_link": "Enlace externo",
|
||||||
"outgoing_link_message": "You are now leaving %1",
|
"outgoing_link_message": "Ahora estás saliendo %1",
|
||||||
"continue_to": "Continuar a %1",
|
"continue_to": "Continuar a %1",
|
||||||
"return_to": "Regresar a %1",
|
"return_to": "Regresar a %1",
|
||||||
"new_notification": "Nueva notificación",
|
"new_notification": "Nueva notificación",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Temas populares del mes",
|
"popular-month": "Temas populares del mes",
|
||||||
"popular-alltime": "Temas populares de siempre",
|
"popular-alltime": "Temas populares de siempre",
|
||||||
"recent": "Temas recientes",
|
"recent": "Temas recientes",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "Conectados",
|
"users/online": "Conectados",
|
||||||
"users/latest": "Últimos usuarios",
|
"users/latest": "Últimos usuarios",
|
||||||
"users/sort-posts": "Top por mensajes",
|
"users/sort-posts": "Top por mensajes",
|
||||||
"users/sort-reputation": "Más reputados",
|
"users/sort-reputation": "Más reputados",
|
||||||
"users/map": "Actividad",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "Buscar",
|
"users/search": "Buscar",
|
||||||
"notifications": "Notificaciones",
|
"notifications": "Notificaciones",
|
||||||
"tags": "Etiquetas",
|
"tags": "Etiquetas",
|
||||||
@@ -35,9 +36,9 @@
|
|||||||
"account/favourites": "Favoritos de %1",
|
"account/favourites": "Favoritos de %1",
|
||||||
"account/settings": "Preferencias",
|
"account/settings": "Preferencias",
|
||||||
"account/watched": "Temas seguidos por %1",
|
"account/watched": "Temas seguidos por %1",
|
||||||
"account/upvoted": "Posts upvoted by %1",
|
"account/upvoted": "Publicaciones votadas positivamente %1",
|
||||||
"account/downvoted": "Posts downvoted by %1",
|
"account/downvoted": "Publicaciones votadas negativamente %1",
|
||||||
"account/best": "Best posts made by %1",
|
"account/best": "Mejores publicaciones hechas por %1",
|
||||||
"maintenance.text": "%1 está en mantenimiento actualmente. Por favor vuelva en otro momento.",
|
"maintenance.text": "%1 está en mantenimiento actualmente. Por favor vuelva en otro momento.",
|
||||||
"maintenance.messageIntro": "Además, la administración ha dejado este mensaje:",
|
"maintenance.messageIntro": "Además, la administración ha dejado este mensaje:",
|
||||||
"throttled.text": "%1 no está disponible debido a una carga excesiva. Por favor vuelva en otro momento"
|
"throttled.text": "%1 no está disponible debido a una carga excesiva. Por favor vuelva en otro momento"
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"login_to_subscribe": "Por favor, conéctate para subscribirte a este tema.",
|
"login_to_subscribe": "Por favor, conéctate para subscribirte a este tema.",
|
||||||
"markAsUnreadForAll.success": "Publicación marcada como no leída para todos.",
|
"markAsUnreadForAll.success": "Publicación marcada como no leída para todos.",
|
||||||
"mark_unread": "Marcar como no leído",
|
"mark_unread": "Marcar como no leído",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "Seguir",
|
"watch": "Seguir",
|
||||||
"unwatch": "Dejar de seguir",
|
"unwatch": "Dejar de seguir",
|
||||||
"watch.title": "Serás notificado cuando haya nuevas respuestas en este tema",
|
"watch.title": "Serás notificado cuando haya nuevas respuestas en este tema",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "El hilo al que estás respondiendo es muy antiguo. ¿Quieres crear un nuevo hilo en su lugar y añadir una referencia a este en tu mensaje?",
|
"stale.warning": "El hilo al que estás respondiendo es muy antiguo. ¿Quieres crear un nuevo hilo en su lugar y añadir una referencia a este en tu mensaje?",
|
||||||
"stale.create": "Crear un nuevo hilo",
|
"stale.create": "Crear un nuevo hilo",
|
||||||
"stale.reply_anyway": "Publicar este hilo de todos modos.",
|
"stale.reply_anyway": "Publicar este hilo de todos modos.",
|
||||||
"stale.link_back": "Re: [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "SPAM",
|
"spam": "SPAM",
|
||||||
"offensive": "Ofensivo",
|
"offensive": "Ofensivo",
|
||||||
"custom-flag-reason": "Introduzca una razón indicatoria."
|
"custom-flag-reason": "Introduzca una razón indicatoria."
|
||||||
|
|||||||
@@ -77,9 +77,9 @@
|
|||||||
"has_no_posts": "Este usuario no ha publicado nada aún.",
|
"has_no_posts": "Este usuario no ha publicado nada aún.",
|
||||||
"has_no_topics": "Este usuario no ha publicado ninguna tema todavía.",
|
"has_no_topics": "Este usuario no ha publicado ninguna tema todavía.",
|
||||||
"has_no_watched_topics": "Este usuario no esta suscrito a ningún tema aún.",
|
"has_no_watched_topics": "Este usuario no esta suscrito a ningún tema aún.",
|
||||||
"has_no_upvoted_posts": "This user hasn't upvoted any posts yet.",
|
"has_no_upvoted_posts": "Este usuario todavía no ha votado ninguna publicación positivamente.",
|
||||||
"has_no_downvoted_posts": "This user hasn't downvoted any posts yet.",
|
"has_no_downvoted_posts": "Este usuario todavía no ha votado ninguna publicación negativamente.",
|
||||||
"has_no_voted_posts": "This user has no voted posts",
|
"has_no_voted_posts": "Este usuario no ha votado ninguna publicación",
|
||||||
"email_hidden": "Correo electrónico oculto",
|
"email_hidden": "Correo electrónico oculto",
|
||||||
"hidden": "oculto",
|
"hidden": "oculto",
|
||||||
"paginate_description": "Paginar hilos y mensajes en lugar de usar desplazamiento infinito",
|
"paginate_description": "Paginar hilos y mensajes en lugar de usar desplazamiento infinito",
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"users-found-search-took": "¡%1 usuario(s) encontrado! La búsqueda ha llevado %2 segundos.",
|
"users-found-search-took": "¡%1 usuario(s) encontrado! La búsqueda ha llevado %2 segundos.",
|
||||||
"filter-by": "Filtrar Por",
|
"filter-by": "Filtrar Por",
|
||||||
"online-only": "Sólo en línea",
|
"online-only": "Sólo en línea",
|
||||||
"picture-only": "Sólo imagen",
|
|
||||||
"invite": "Invitar",
|
"invite": "Invitar",
|
||||||
"invitation-email-sent": "Un correo de invitación ha sido enviado a %1",
|
"invitation-email-sent": "Un correo de invitación ha sido enviado a %1",
|
||||||
"user_list": "Lista de Usuarios",
|
"user_list": "Lista de Usuarios",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "Temas no leídos",
|
"unread_topics": "Temas no leídos",
|
||||||
"categories": "Categorías ",
|
"categories": "Categorías ",
|
||||||
"tags": "Etiquetas",
|
"tags": "Etiquetas",
|
||||||
"map": "Actividad"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -21,9 +21,9 @@
|
|||||||
"digest.cta": "Vajuta siia et külastada %1",
|
"digest.cta": "Vajuta siia et külastada %1",
|
||||||
"digest.unsub.info": "See uudiskiri on saadetud teile tellimuse seadistuse tõttu.",
|
"digest.unsub.info": "See uudiskiri on saadetud teile tellimuse seadistuse tõttu.",
|
||||||
"digest.no_topics": "Viimase %1 jooksul ei ole olnud ühtegi aktiivset teemat",
|
"digest.no_topics": "Viimase %1 jooksul ei ole olnud ühtegi aktiivset teemat",
|
||||||
"digest.day": "day",
|
"digest.day": "päev",
|
||||||
"digest.week": "week",
|
"digest.week": "nädal",
|
||||||
"digest.month": "month",
|
"digest.month": "kuu",
|
||||||
"notif.chat.subject": "Sulle on saabunud uus sõnum kasutajalt %1",
|
"notif.chat.subject": "Sulle on saabunud uus sõnum kasutajalt %1",
|
||||||
"notif.chat.cta": "Vajuta siia, et jätkata vestlusega",
|
"notif.chat.cta": "Vajuta siia, et jätkata vestlusega",
|
||||||
"notif.chat.unsub.info": "See chat teavitus on saadetud teile tellimuse seadistuse tõttu.",
|
"notif.chat.unsub.info": "See chat teavitus on saadetud teile tellimuse seadistuse tõttu.",
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "Vigane parool",
|
"invalid-password": "Vigane parool",
|
||||||
"invalid-username-or-password": "Palun täpsusta kasutajanime ja parooli",
|
"invalid-username-or-password": "Palun täpsusta kasutajanime ja parooli",
|
||||||
"invalid-search-term": "Vigane otsingusõna",
|
"invalid-search-term": "Vigane otsingusõna",
|
||||||
"invalid-pagination-value": "Vigane lehe väärtus",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "Kasutajanimi on juba võetud",
|
"username-taken": "Kasutajanimi on juba võetud",
|
||||||
"email-taken": "Email on võetud",
|
"email-taken": "Email on võetud",
|
||||||
"email-not-confirmed": "Su emaili aadress ei ole kinnitatud, vajuta siia et kinnitada.",
|
"email-not-confirmed": "Su emaili aadress ei ole kinnitatud, vajuta siia et kinnitada.",
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
"confirm-email-already-sent": "Kinnituskiri on juba saadetud, palun oota %1 minut(it) uue kirja saatmiseks.",
|
"confirm-email-already-sent": "Kinnituskiri on juba saadetud, palun oota %1 minut(it) uue kirja saatmiseks.",
|
||||||
"username-too-short": "Kasutajanimi on liiga lühike",
|
"username-too-short": "Kasutajanimi on liiga lühike",
|
||||||
"username-too-long": "Kasutajanimi on liiga pikk",
|
"username-too-long": "Kasutajanimi on liiga pikk",
|
||||||
"password-too-long": "Password too long",
|
"password-too-long": "Parool liiga pikk",
|
||||||
"user-banned": "Kasutaja bannitud",
|
"user-banned": "Kasutaja bannitud",
|
||||||
"user-too-new": "Vabandust, te peate ootama %1 sekund(it) enne esimese postituse loomist.",
|
"user-too-new": "Vabandust, te peate ootama %1 sekund(it) enne esimese postituse loomist.",
|
||||||
"no-category": "Kategooriat ei eksisteeri",
|
"no-category": "Kategooriat ei eksisteeri",
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
"too-many-tags": "Liiga palju märksõnu. Teemadel ei tohi olla rohkem kui %1 märksõna",
|
"too-many-tags": "Liiga palju märksõnu. Teemadel ei tohi olla rohkem kui %1 märksõna",
|
||||||
"still-uploading": "Palun oota, kuni üleslaadimised on laetud.",
|
"still-uploading": "Palun oota, kuni üleslaadimised on laetud.",
|
||||||
"file-too-big": "Maksimaalne üleslaetava faili suurus on %1 kB - valige väiksema mahuga fail.",
|
"file-too-big": "Maksimaalne üleslaetava faili suurus on %1 kB - valige väiksema mahuga fail.",
|
||||||
"guest-upload-disabled": "Guest uploading has been disabled",
|
"guest-upload-disabled": "Külaliste üleslaadimine on keelatud.",
|
||||||
"already-favourited": "Sa juba märkisid selle postituse lemmikuks",
|
"already-favourited": "Sa juba märkisid selle postituse lemmikuks",
|
||||||
"already-unfavourited": "Sa juba eemaldasid selle postituse lemmikute hulgast",
|
"already-unfavourited": "Sa juba eemaldasid selle postituse lemmikute hulgast",
|
||||||
"cant-ban-other-admins": "Sa ei saa bannida teisi administraatoreid!",
|
"cant-ban-other-admins": "Sa ei saa bannida teisi administraatoreid!",
|
||||||
@@ -60,8 +60,8 @@
|
|||||||
"group-name-too-short": "Grupi nimi liiga lühike",
|
"group-name-too-short": "Grupi nimi liiga lühike",
|
||||||
"group-already-exists": "Grupp juba eksisteerib",
|
"group-already-exists": "Grupp juba eksisteerib",
|
||||||
"group-name-change-not-allowed": "Grupi nimevahetus ei ole lubatud",
|
"group-name-change-not-allowed": "Grupi nimevahetus ei ole lubatud",
|
||||||
"group-already-member": "Already part of this group",
|
"group-already-member": "Oled juba selles grupis",
|
||||||
"group-not-member": "Not a member of this group",
|
"group-not-member": "Ei ole selle grupi liige",
|
||||||
"group-needs-owner": "See grupp nõuab vähemalt ühte omanikku",
|
"group-needs-owner": "See grupp nõuab vähemalt ühte omanikku",
|
||||||
"group-already-invited": "Antud kasutaja on juba kutsutud.",
|
"group-already-invited": "Antud kasutaja on juba kutsutud.",
|
||||||
"group-already-requested": "Teie liikmetaotlus on juba saadetud.",
|
"group-already-requested": "Teie liikmetaotlus on juba saadetud.",
|
||||||
@@ -77,12 +77,13 @@
|
|||||||
"about-me-too-long": "Vabandage, teie tutvustus ei saa olaa pikem kui %1 tähemärk(i).",
|
"about-me-too-long": "Vabandage, teie tutvustus ei saa olaa pikem kui %1 tähemärk(i).",
|
||||||
"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",
|
||||||
"chat-disabled": "Chat system disabled",
|
"chat-disabled": "Vestlus süsteem keelatud",
|
||||||
"too-many-messages": "Oled saatnud liiga palju sõnumeid, oota natukene.",
|
"too-many-messages": "Oled saatnud liiga palju sõnumeid, oota natukene.",
|
||||||
"invalid-chat-message": "Vigane vestluse sõnum",
|
"invalid-chat-message": "Vigane vestluse sõnum",
|
||||||
"chat-message-too-long": "Vestluse sõnum on liiga pikk",
|
"chat-message-too-long": "Vestluse sõnum on liiga pikk",
|
||||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
"cant-edit-chat-message": "Sul ei ole lubatud antud sõnumit muuta",
|
||||||
"cant-remove-last-user": "You can't remove the last user",
|
"cant-remove-last-user": "Sa ei saa viimast kasutajat eemaldada",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "Reputatsiooni süsteem ei ole aktiveeritud",
|
"reputation-system-disabled": "Reputatsiooni süsteem ei ole aktiveeritud",
|
||||||
"downvoting-disabled": "Negatiivsete häälte andmine ei ole võimaldatud",
|
"downvoting-disabled": "Negatiivsete häälte andmine ei ole võimaldatud",
|
||||||
"not-enough-reputation-to-downvote": "Sul ei ole piisavalt reputatsiooni, et anda negatiivset hinnangut sellele postitusele.",
|
"not-enough-reputation-to-downvote": "Sul ei ole piisavalt reputatsiooni, et anda negatiivset hinnangut sellele postitusele.",
|
||||||
@@ -93,6 +94,7 @@
|
|||||||
"parse-error": "Midagi läks valesti...",
|
"parse-error": "Midagi läks valesti...",
|
||||||
"wrong-login-type-email": "Sisse logimiseks kasuta oma emaili",
|
"wrong-login-type-email": "Sisse logimiseks kasuta oma emaili",
|
||||||
"wrong-login-type-username": "Sisse logimiseks kasuta oma kasutajanime",
|
"wrong-login-type-username": "Sisse logimiseks kasuta oma kasutajanime",
|
||||||
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
"invite-maximum-met": "Sa oled kutsunud maksimaalse lubatud inimeste arvu (%1 %2 'st).",
|
||||||
"no-session-found": "No login session found!"
|
"no-session-found": "Sisse logimis sessiooni ei leitud!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -49,9 +49,9 @@
|
|||||||
"users": "Kasutajad",
|
"users": "Kasutajad",
|
||||||
"topics": "Teemat",
|
"topics": "Teemat",
|
||||||
"posts": "Postitust",
|
"posts": "Postitust",
|
||||||
"best": "Best",
|
"best": "Parim",
|
||||||
"upvoted": "Upvoted",
|
"upvoted": "Kiideti heaks",
|
||||||
"downvoted": "Downvoted",
|
"downvoted": "Hääletas vastu",
|
||||||
"views": "Vaatamist",
|
"views": "Vaatamist",
|
||||||
"reputation": "Reputatsioon",
|
"reputation": "Reputatsioon",
|
||||||
"read_more": "loe veel",
|
"read_more": "loe veel",
|
||||||
@@ -59,15 +59,13 @@
|
|||||||
"posted_ago_by_guest": "postitas %1 külaline",
|
"posted_ago_by_guest": "postitas %1 külaline",
|
||||||
"posted_ago_by": "postitas %1 kasutaja %2",
|
"posted_ago_by": "postitas %1 kasutaja %2",
|
||||||
"posted_ago": "postitatud %1",
|
"posted_ago": "postitatud %1",
|
||||||
"posted_in": "posted in %1",
|
"posted_in": "postitas %1 'sse",
|
||||||
"posted_in_by": "posted in %1 by %2",
|
"posted_in_by": "postitati: %1 %2 poolt",
|
||||||
"posted_in_ago": "postitas kategooriasse %1 %2",
|
"posted_in_ago": "postitas kategooriasse %1 %2",
|
||||||
"posted_in_ago_by": "%3 postitas %2 kategooriasse %1",
|
"posted_in_ago_by": "%3 postitas %2 kategooriasse %1",
|
||||||
"posted_in_ago_by_guest": "külaline postitas kategooriasse %1 %2 ",
|
|
||||||
"replied_ago": "vastas %1",
|
|
||||||
"user_posted_ago": "%1 postitas %2",
|
"user_posted_ago": "%1 postitas %2",
|
||||||
"guest_posted_ago": "Külaline postitas %1",
|
"guest_posted_ago": "Külaline postitas %1",
|
||||||
"last_edited_by_ago": "viimati muutis %1 %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "Hiljutisi postitusi ei ole",
|
"norecentposts": "Hiljutisi postitusi ei ole",
|
||||||
"norecenttopics": "Hiljutisi teemasid ei ole",
|
"norecenttopics": "Hiljutisi teemasid ei ole",
|
||||||
"recentposts": "Hiljutised postitused",
|
"recentposts": "Hiljutised postitused",
|
||||||
@@ -87,6 +85,6 @@
|
|||||||
"unfollow": "Ära jälgi",
|
"unfollow": "Ära jälgi",
|
||||||
"delete_all": "Kustuta kõik",
|
"delete_all": "Kustuta kõik",
|
||||||
"map": "Kaart",
|
"map": "Kaart",
|
||||||
"sessions": "Login Sessions",
|
"sessions": "Logitud Sessioonid",
|
||||||
"ip_address": "IP Address"
|
"ip_address": "IP Aadress"
|
||||||
}
|
}
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
"details.has_no_posts": "Selle grupi liikmed ei ole teinud ühtegi postitust.",
|
"details.has_no_posts": "Selle grupi liikmed ei ole teinud ühtegi postitust.",
|
||||||
"details.latest_posts": "Viimased postitused",
|
"details.latest_posts": "Viimased postitused",
|
||||||
"details.private": "Privaatne",
|
"details.private": "Privaatne",
|
||||||
"details.disableJoinRequests": "Disable join requests",
|
"details.disableJoinRequests": "Keela ühinemis taotlused",
|
||||||
"details.grant": "Anna/võta omanikuõigused",
|
"details.grant": "Anna/võta omanikuõigused",
|
||||||
"details.kick": "Viska välja",
|
"details.kick": "Viska välja",
|
||||||
"details.owner_options": "Grupi haldamine",
|
"details.owner_options": "Grupi haldamine",
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
"chat.user_has_messaged_you": "%1 saatis sulle sõnumi.",
|
"chat.user_has_messaged_you": "%1 saatis sulle sõnumi.",
|
||||||
"chat.see_all": "Vaata kõiki vestluseid",
|
"chat.see_all": "Vaata kõiki vestluseid",
|
||||||
"chat.no-messages": "Vali sõnumisaaja, et vaadata sõnumite ajalugu.",
|
"chat.no-messages": "Vali sõnumisaaja, et vaadata sõnumite ajalugu.",
|
||||||
"chat.no-users-in-room": "No users in this room",
|
"chat.no-users-in-room": "Ühtki kasutajat selles ruumis",
|
||||||
"chat.recent-chats": "Hiljutised vestlused",
|
"chat.recent-chats": "Hiljutised vestlused",
|
||||||
"chat.contacts": "Kontaktid",
|
"chat.contacts": "Kontaktid",
|
||||||
"chat.message-history": "Sõnumite ajalugu",
|
"chat.message-history": "Sõnumite ajalugu",
|
||||||
@@ -16,9 +16,9 @@
|
|||||||
"chat.seven_days": "7 Päeva",
|
"chat.seven_days": "7 Päeva",
|
||||||
"chat.thirty_days": "30 Päeva",
|
"chat.thirty_days": "30 Päeva",
|
||||||
"chat.three_months": "3 Kuud",
|
"chat.three_months": "3 Kuud",
|
||||||
"chat.delete_message_confirm": "Are you sure you wish to delete this message?",
|
"chat.delete_message_confirm": "Oled kindel, et soovid selle sõnumi kustutada?",
|
||||||
"chat.roomname": "Chat Room %1",
|
"chat.roomname": "Vestlustuba %1",
|
||||||
"chat.add-users-to-room": "Add users to room",
|
"chat.add-users-to-room": "Lisa kasutajaid ruumi",
|
||||||
"composer.compose": "Koosta",
|
"composer.compose": "Koosta",
|
||||||
"composer.show_preview": "Kuva eelvaadet",
|
"composer.show_preview": "Kuva eelvaadet",
|
||||||
"composer.hide_preview": "Peida eelvaade",
|
"composer.hide_preview": "Peida eelvaade",
|
||||||
@@ -27,11 +27,11 @@
|
|||||||
"composer.discard": "Oled kindel, et soovid selle postituse tühistada?",
|
"composer.discard": "Oled kindel, et soovid selle postituse tühistada?",
|
||||||
"composer.submit_and_lock": "Kinnita ja Lukusta",
|
"composer.submit_and_lock": "Kinnita ja Lukusta",
|
||||||
"composer.toggle_dropdown": "Aktiveeri rippmenüü",
|
"composer.toggle_dropdown": "Aktiveeri rippmenüü",
|
||||||
"composer.uploading": "Uploading %1",
|
"composer.uploading": "%1 Üleslaadimine",
|
||||||
"bootbox.ok": "Olgu",
|
"bootbox.ok": "Olgu",
|
||||||
"bootbox.cancel": "Katkesta",
|
"bootbox.cancel": "Katkesta",
|
||||||
"bootbox.confirm": "Kinnita",
|
"bootbox.confirm": "Kinnita",
|
||||||
"cover.dragging_title": "Cover Photo Positioning",
|
"cover.dragging_title": "Kaanefoto Positsioneerimine",
|
||||||
"cover.dragging_message": "Drag the cover photo to the desired position and click \"Save\"",
|
"cover.dragging_message": "Vea kaanefoto soovitud kohta ja klikka \"Salvesta\"",
|
||||||
"cover.saved": "Cover photo image and position saved"
|
"cover.saved": "Kaanefoto ja paiknemine salvestatud"
|
||||||
}
|
}
|
||||||
@@ -5,30 +5,30 @@
|
|||||||
"mark_all_read": "Märgi kõik teavitused loetuks",
|
"mark_all_read": "Märgi kõik teavitused loetuks",
|
||||||
"back_to_home": "Tagasi %1",
|
"back_to_home": "Tagasi %1",
|
||||||
"outgoing_link": "Väljaminev link",
|
"outgoing_link": "Väljaminev link",
|
||||||
"outgoing_link_message": "You are now leaving %1",
|
"outgoing_link_message": "Lahkud %1",
|
||||||
"continue_to": "Jätka %1",
|
"continue_to": "Jätka %1",
|
||||||
"return_to": "Pöördu tagasi %1",
|
"return_to": "Pöördu tagasi %1",
|
||||||
"new_notification": "Uus teade",
|
"new_notification": "Uus teade",
|
||||||
"you_have_unread_notifications": "Sul ei ole lugemata teateid.",
|
"you_have_unread_notifications": "Sul ei ole lugemata teateid.",
|
||||||
"new_message_from": "Uus sõnum kasutajalt <strong>%1</strong>",
|
"new_message_from": "Uus sõnum kasutajalt <strong>%1</strong>",
|
||||||
"upvoted_your_post_in": "<strong>%1</strong> hääletas sinu postituse poolt teemas <strong>%2</strong>.",
|
"upvoted_your_post_in": "<strong>%1</strong> hääletas sinu postituse poolt teemas <strong>%2</strong>.",
|
||||||
"upvoted_your_post_in_dual": "<strong>%1</strong> and <strong>%2</strong> have upvoted your post in <strong>%3</strong>.",
|
"upvoted_your_post_in_dual": "<strong>%1</strong> ja <strong>%2</strong> kiitsid sinu postituse heaks: <strong>%3</strong>.",
|
||||||
"upvoted_your_post_in_multiple": "<strong>%1</strong> and %2 others have upvoted your post in <strong>%3</strong>.",
|
"upvoted_your_post_in_multiple": "<strong>%1</strong> ja %2 teist on kiitnud sinu postituse heaks: <strong>%3</strong>.",
|
||||||
"moved_your_post": "<strong>%1</strong> has moved your post to <strong>%2</strong>",
|
"moved_your_post": "<strong>%1</strong> liigutas sinu postituse <strong>%2 'sse</strong>",
|
||||||
"moved_your_topic": "<strong>%1</strong> has moved <strong>%2</strong>",
|
"moved_your_topic": "<strong>%1</strong> liigutas <strong>%2</strong>",
|
||||||
"favourited_your_post_in": "<strong>%1</strong> märgistas sinu postituse lemmikuks teemas <strong>%2</strong>.",
|
"favourited_your_post_in": "<strong>%1</strong> märgistas sinu postituse lemmikuks teemas <strong>%2</strong>.",
|
||||||
"favourited_your_post_in_dual": "<strong>%1</strong> and <strong>%2</strong> have favourited your post in <strong>%3</strong>.",
|
"favourited_your_post_in_dual": "<strong>%1 'le</strong> ja <strong>%2 'le</strong> meeldis sinu postitus: <strong>%3</strong>.",
|
||||||
"favourited_your_post_in_multiple": "<strong>%1</strong> and %2 others have favourited your post in <strong>%3</strong>.",
|
"favourited_your_post_in_multiple": "<strong>%1 'le</strong> ja %2 'le teisele meeldis sinu postitus: <strong>%3</strong>.",
|
||||||
"user_flagged_post_in": "<strong>%1</strong> raporteeris postitust <strong>%2</strong>",
|
"user_flagged_post_in": "<strong>%1</strong> raporteeris postitust <strong>%2</strong>",
|
||||||
"user_flagged_post_in_dual": "<strong>%1</strong> and <strong>%2</strong> flagged a post in <strong>%3</strong>",
|
"user_flagged_post_in_dual": "<strong>%1</strong> ja <strong>%2</strong> märgistasid postituse: <strong>%3</strong>",
|
||||||
"user_flagged_post_in_multiple": "<strong>%1</strong> and %2 others flagged a post in <strong>%3</strong>",
|
"user_flagged_post_in_multiple": "<strong>%1</strong> ja %2 teist märgistasid postituse: <strong>%3</strong>",
|
||||||
"user_posted_to": "Kasutaja <strong>%1</strong> postitas vastuse teemasse <strong>%2</strong>",
|
"user_posted_to": "Kasutaja <strong>%1</strong> postitas vastuse teemasse <strong>%2</strong>",
|
||||||
"user_posted_to_dual": "<strong>%1</strong> and <strong>%2</strong> have posted replies to: <strong>%3</strong>",
|
"user_posted_to_dual": "<strong>%1</strong> ja <strong>%2</strong> on postitanud vastused: <strong>%3</strong>",
|
||||||
"user_posted_to_multiple": "<strong>%1</strong> and %2 others have posted replies to: <strong>%3</strong>",
|
"user_posted_to_multiple": "<strong>%1</strong> ja %2 teist on postitanud vastused: <strong>%3</strong>",
|
||||||
"user_posted_topic": "<strong>%1</strong> on postitanud uue teema: <strong>%2</strong>",
|
"user_posted_topic": "<strong>%1</strong> on postitanud uue teema: <strong>%2</strong>",
|
||||||
"user_started_following_you": "<strong>%1</strong> hakkas sind jälgima.",
|
"user_started_following_you": "<strong>%1</strong> hakkas sind jälgima.",
|
||||||
"user_started_following_you_dual": "<strong>%1</strong> and <strong>%2</strong> started following you.",
|
"user_started_following_you_dual": "<strong>%1</strong> ja <strong>%2</strong> hakkasid sind jälgima.",
|
||||||
"user_started_following_you_multiple": "<strong>%1</strong> and %2 others started following you.",
|
"user_started_following_you_multiple": "<strong>%1</strong> ja %2 hakkasid sind jälgima.",
|
||||||
"new_register": "<strong>%1</strong> saatis registreerimistaotluse.",
|
"new_register": "<strong>%1</strong> saatis registreerimistaotluse.",
|
||||||
"email-confirmed": "Emaili aadress kinnitatud",
|
"email-confirmed": "Emaili aadress kinnitatud",
|
||||||
"email-confirmed-message": "Täname, et kinnitasite oma emaili aadressi. Teie kasutaja on nüüd täielikult aktiveeritud.",
|
"email-confirmed-message": "Täname, et kinnitasite oma emaili aadressi. Teie kasutaja on nüüd täielikult aktiveeritud.",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Populaarsed teemad sel kuul",
|
"popular-month": "Populaarsed teemad sel kuul",
|
||||||
"popular-alltime": "Populaarseimad teemad üldse",
|
"popular-alltime": "Populaarseimad teemad üldse",
|
||||||
"recent": "Hiljutised teemad",
|
"recent": "Hiljutised teemad",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "Sisseloginud kasutajad",
|
"users/online": "Sisseloginud kasutajad",
|
||||||
"users/latest": "Hiljutised kasutajad",
|
"users/latest": "Hiljutised kasutajad",
|
||||||
"users/sort-posts": "Kasutajad, kel on enim postitusi",
|
"users/sort-posts": "Kasutajad, kel on enim postitusi",
|
||||||
"users/sort-reputation": "Suurima reputatsiooniga kasutajad",
|
"users/sort-reputation": "Suurima reputatsiooniga kasutajad",
|
||||||
"users/map": "Kasutajate kaart",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "Kasutajate otsing",
|
"users/search": "Kasutajate otsing",
|
||||||
"notifications": "Teated",
|
"notifications": "Teated",
|
||||||
"tags": "Märksõnad",
|
"tags": "Märksõnad",
|
||||||
@@ -24,9 +25,9 @@
|
|||||||
"chats": "Vestlused",
|
"chats": "Vestlused",
|
||||||
"chat": "Vestlus kasutajaga %1",
|
"chat": "Vestlus kasutajaga %1",
|
||||||
"account/edit": "Muudan \"%1\"",
|
"account/edit": "Muudan \"%1\"",
|
||||||
"account/edit/password": "Editing password of \"%1\"",
|
"account/edit/password": "Redigeerid \"%1\" parooli",
|
||||||
"account/edit/username": "Editing username of \"%1\"",
|
"account/edit/username": "Redigeerid \"%1\" kasutajanime",
|
||||||
"account/edit/email": "Editing email of \"%1\"",
|
"account/edit/email": "Redigeerid \"%1\" emaili",
|
||||||
"account/following": "Kasutaja %1 jälgib",
|
"account/following": "Kasutaja %1 jälgib",
|
||||||
"account/followers": "Kasutajad, kes jälgivad %1",
|
"account/followers": "Kasutajad, kes jälgivad %1",
|
||||||
"account/posts": "Postitused, mis on tehtud kasutaja %1 poolt",
|
"account/posts": "Postitused, mis on tehtud kasutaja %1 poolt",
|
||||||
@@ -35,10 +36,10 @@
|
|||||||
"account/favourites": "Kasutaja %1 lemmikud postitused",
|
"account/favourites": "Kasutaja %1 lemmikud postitused",
|
||||||
"account/settings": "Kasutaja sätted",
|
"account/settings": "Kasutaja sätted",
|
||||||
"account/watched": "Teemasid jälgib %1 kasutajat",
|
"account/watched": "Teemasid jälgib %1 kasutajat",
|
||||||
"account/upvoted": "Posts upvoted by %1",
|
"account/upvoted": "Postitused %1 poolt heaks kiidetud",
|
||||||
"account/downvoted": "Posts downvoted by %1",
|
"account/downvoted": "Postitused %1 poolt vastu hääletatud",
|
||||||
"account/best": "Best posts made by %1",
|
"account/best": "Parimad postitused %1 poolt",
|
||||||
"maintenance.text": "%1 foorumil on käimas hooldustööd. Palun külastage meid mõne aja pärast uuesti.",
|
"maintenance.text": "%1 foorumil on käimas hooldustööd. Palun külastage meid mõne aja pärast uuesti.",
|
||||||
"maintenance.messageIntro": "Administraator on jätnud ka omaltpoolt sõnumi:",
|
"maintenance.messageIntro": "Administraator on jätnud ka omaltpoolt sõnumi:",
|
||||||
"throttled.text": "%1 is currently unavailable due to excessive load. Please come back another time."
|
"throttled.text": "%1 ei ole hetkel kättesaadav liigse koormuse tõttu. Palun tulge tagasi mõni teine kord."
|
||||||
}
|
}
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
"notify_me": "Saa teateid uutest postitustest selles teemas",
|
"notify_me": "Saa teateid uutest postitustest selles teemas",
|
||||||
"quote": "Tsiteeri",
|
"quote": "Tsiteeri",
|
||||||
"reply": "Vasta",
|
"reply": "Vasta",
|
||||||
"reply-as-topic": "Reply as topic",
|
"reply-as-topic": "Vasta teemana",
|
||||||
"guest-login-reply": "Logi sisse, et vastata",
|
"guest-login-reply": "Logi sisse, et vastata",
|
||||||
"edit": "Muuda",
|
"edit": "Muuda",
|
||||||
"delete": "Kustuta",
|
"delete": "Kustuta",
|
||||||
@@ -34,7 +34,8 @@
|
|||||||
"not_following_topic.message": "Sulle ei edastata enam teateid uutest postitustest siin teemas.",
|
"not_following_topic.message": "Sulle ei edastata enam teateid uutest postitustest siin teemas.",
|
||||||
"login_to_subscribe": "Palun registreeru kasutajaks või logi sisse, et tellida teateid selle postituse kohta.",
|
"login_to_subscribe": "Palun registreeru kasutajaks või logi sisse, et tellida teateid selle postituse kohta.",
|
||||||
"markAsUnreadForAll.success": "Teema märgitud mitte-loetuks kõikidele.",
|
"markAsUnreadForAll.success": "Teema märgitud mitte-loetuks kõikidele.",
|
||||||
"mark_unread": "Mark unread",
|
"mark_unread": "Märgi lugematuks",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "Vaata",
|
"watch": "Vaata",
|
||||||
"unwatch": "Ära järgi",
|
"unwatch": "Ära järgi",
|
||||||
"watch.title": "Saa teateid uutest postitustest siin teemas",
|
"watch.title": "Saa teateid uutest postitustest siin teemas",
|
||||||
@@ -50,7 +51,7 @@
|
|||||||
"thread_tools.move_all": "Liiguta kõik",
|
"thread_tools.move_all": "Liiguta kõik",
|
||||||
"thread_tools.fork": "Fork Topic",
|
"thread_tools.fork": "Fork Topic",
|
||||||
"thread_tools.delete": "Kustuta teema",
|
"thread_tools.delete": "Kustuta teema",
|
||||||
"thread_tools.delete-posts": "Delete Posts",
|
"thread_tools.delete-posts": "Kustuta Postitusi",
|
||||||
"thread_tools.delete_confirm": "Oled kindel, et soovid selle teema kustutada?",
|
"thread_tools.delete_confirm": "Oled kindel, et soovid selle teema kustutada?",
|
||||||
"thread_tools.restore": "Taasta teema",
|
"thread_tools.restore": "Taasta teema",
|
||||||
"thread_tools.restore_confirm": "Oled kindel, et soovid selle teema taastada?",
|
"thread_tools.restore_confirm": "Oled kindel, et soovid selle teema taastada?",
|
||||||
@@ -77,7 +78,7 @@
|
|||||||
"fork_topic_instruction": "Vajuta postitustele, mida soovid forkida",
|
"fork_topic_instruction": "Vajuta postitustele, mida soovid forkida",
|
||||||
"fork_no_pids": "Sa ei ole postitusi valinud!",
|
"fork_no_pids": "Sa ei ole postitusi valinud!",
|
||||||
"fork_success": "Edukalt ''forkisid'' teema! Vajuta siia, et vaadata loodud teemat.",
|
"fork_success": "Edukalt ''forkisid'' teema! Vajuta siia, et vaadata loodud teemat.",
|
||||||
"delete_posts_instruction": "Click the posts you want to delete/purge",
|
"delete_posts_instruction": "Klikka postitustel, mida tahad kustutada/puhastada",
|
||||||
"composer.title_placeholder": "Sisesta teema pealkiri siia...",
|
"composer.title_placeholder": "Sisesta teema pealkiri siia...",
|
||||||
"composer.handle_placeholder": "Nimi",
|
"composer.handle_placeholder": "Nimi",
|
||||||
"composer.discard": "Katkesta",
|
"composer.discard": "Katkesta",
|
||||||
@@ -100,12 +101,12 @@
|
|||||||
"newest_to_oldest": "Uuematest vanemateni",
|
"newest_to_oldest": "Uuematest vanemateni",
|
||||||
"most_votes": "Kõige rohkem hääli",
|
"most_votes": "Kõige rohkem hääli",
|
||||||
"most_posts": "Kõige rohkem postitusi",
|
"most_posts": "Kõige rohkem postitusi",
|
||||||
"stale.title": "Create new topic instead?",
|
"stale.title": "Loo uus teema selle asemel?",
|
||||||
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
"stale.warning": "Teema, millele vastad on küllaltki vana. Kas sooviksid hoopiski uue teema luua ning viidata sellele sinu vastuses?",
|
||||||
"stale.create": "Create a new topic",
|
"stale.create": "Loo uus teema/alapealkiri",
|
||||||
"stale.reply_anyway": "Reply to this topic anyway",
|
"stale.reply_anyway": "Vasta sellele teemale siiski",
|
||||||
"stale.link_back": "Re: [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "Spam",
|
"spam": "Rämpspost",
|
||||||
"offensive": "Offensive",
|
"offensive": "Solvav",
|
||||||
"custom-flag-reason": "Enter a flagging reason"
|
"custom-flag-reason": "Sisesta teavitamise põhjus"
|
||||||
}
|
}
|
||||||
@@ -30,16 +30,16 @@
|
|||||||
"signature": "Allkiri",
|
"signature": "Allkiri",
|
||||||
"birthday": "Sünnipäev",
|
"birthday": "Sünnipäev",
|
||||||
"chat": "Vestlus",
|
"chat": "Vestlus",
|
||||||
"chat_with": "Chat with %1",
|
"chat_with": "Vestle kasutajaga %1",
|
||||||
"follow": "Jälgi",
|
"follow": "Jälgi",
|
||||||
"unfollow": "Ära jälgi enam",
|
"unfollow": "Ära jälgi enam",
|
||||||
"more": "Rohkem",
|
"more": "Rohkem",
|
||||||
"profile_update_success": "Profiil edukalt uuendatud!",
|
"profile_update_success": "Profiil edukalt uuendatud!",
|
||||||
"change_picture": "Vaheta pilti",
|
"change_picture": "Vaheta pilti",
|
||||||
"change_username": "Change Username",
|
"change_username": "Vaheta kasutajanime",
|
||||||
"change_email": "Change Email",
|
"change_email": "Vaheta emaili",
|
||||||
"edit": "Muuda",
|
"edit": "Muuda",
|
||||||
"default_picture": "Default Icon",
|
"default_picture": "Algne ikoon",
|
||||||
"uploaded_picture": "Üleslaetud pilt",
|
"uploaded_picture": "Üleslaetud pilt",
|
||||||
"upload_new_picture": "Laadi uus pilt",
|
"upload_new_picture": "Laadi uus pilt",
|
||||||
"upload_new_picture_from_url": "Lae uus pilt üles URL'ilt",
|
"upload_new_picture_from_url": "Lae uus pilt üles URL'ilt",
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
"upload_picture": "Laadi pilt",
|
"upload_picture": "Laadi pilt",
|
||||||
"upload_a_picture": "Lae pilt üles",
|
"upload_a_picture": "Lae pilt üles",
|
||||||
"remove_uploaded_picture": "Eemalda üleslaetud pilt",
|
"remove_uploaded_picture": "Eemalda üleslaetud pilt",
|
||||||
"image_spec": "You may only upload PNG, JPG, or BMP files",
|
"image_spec": "Sa saad üles laadida ainult PNG, JPG või BMP vormingus faile.",
|
||||||
"settings": "Seaded",
|
"settings": "Seaded",
|
||||||
"show_email": "Näita minu emaili",
|
"show_email": "Näita minu emaili",
|
||||||
"show_fullname": "Näita minu täisnime",
|
"show_fullname": "Näita minu täisnime",
|
||||||
@@ -77,9 +77,9 @@
|
|||||||
"has_no_posts": "Antud kasutaja pole veel midagi postitanud.",
|
"has_no_posts": "Antud kasutaja pole veel midagi postitanud.",
|
||||||
"has_no_topics": "Antud kasutaja pole veel ühtegi teemat postitanud.",
|
"has_no_topics": "Antud kasutaja pole veel ühtegi teemat postitanud.",
|
||||||
"has_no_watched_topics": "Antud kasutaja pole veel ühtegi teemat vaadanud.",
|
"has_no_watched_topics": "Antud kasutaja pole veel ühtegi teemat vaadanud.",
|
||||||
"has_no_upvoted_posts": "This user hasn't upvoted any posts yet.",
|
"has_no_upvoted_posts": "Antud kasutaja pole veel ühtegi postitust kiitnud.",
|
||||||
"has_no_downvoted_posts": "This user hasn't downvoted any posts yet.",
|
"has_no_downvoted_posts": "Antud kasutaja pole veel ühtegi postitust laitnud.",
|
||||||
"has_no_voted_posts": "This user has no voted posts",
|
"has_no_voted_posts": "Antud kasutaja pole veel ühtegi postitust hinnanud.",
|
||||||
"email_hidden": "Peidetud email",
|
"email_hidden": "Peidetud email",
|
||||||
"hidden": "peidetud",
|
"hidden": "peidetud",
|
||||||
"paginate_description": "Nummerda leheküljed ja postitused ning ära kasuta lõputut kerimist",
|
"paginate_description": "Nummerda leheküljed ja postitused ning ära kasuta lõputut kerimist",
|
||||||
@@ -95,11 +95,11 @@
|
|||||||
"grouptitle": "Vali grupile tiitel mida kuvada soovid",
|
"grouptitle": "Vali grupile tiitel mida kuvada soovid",
|
||||||
"no-group-title": "Grupi tiitel puudub",
|
"no-group-title": "Grupi tiitel puudub",
|
||||||
"select-skin": "Vali välimus",
|
"select-skin": "Vali välimus",
|
||||||
"select-homepage": "Select a Homepage",
|
"select-homepage": "Vali avaleht",
|
||||||
"homepage": "Homepage",
|
"homepage": "Avaleht",
|
||||||
"homepage_description": "Select a page to use as the forum homepage or 'None' to use the default homepage.",
|
"homepage_description": "Valige leht, mida kasutada foorumi esilehena või 'None', et kasutada vaikimisi esilehte.",
|
||||||
"custom_route": "Custom Homepage Route",
|
"custom_route": "Kohandatud Esilehe Teekond",
|
||||||
"custom_route_help": "Enter a route name here, without any preceding slash (e.g. \"recent\", or \"popular\")",
|
"custom_route_help": "Sisestage tee nimi siia, ilma eelnevate kaldkriipsudeta (nt. \"recent\", või \"popular\")",
|
||||||
"sso.title": "Ühekordse sisselogimisega teenused",
|
"sso.title": "Ühekordse sisselogimisega teenused",
|
||||||
"sso.associated": "Seotud koos",
|
"sso.associated": "Seotud koos",
|
||||||
"sso.not-associated": "Kliki siia, et siduda koos"
|
"sso.not-associated": "Kliki siia, et siduda koos"
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"users-found-search-took": "%1 kasutaja(t) leiti! Otsing kestis %2 sekundit.",
|
"users-found-search-took": "%1 kasutaja(t) leiti! Otsing kestis %2 sekundit.",
|
||||||
"filter-by": "Filtreeri",
|
"filter-by": "Filtreeri",
|
||||||
"online-only": "Ainult seesolevad",
|
"online-only": "Ainult seesolevad",
|
||||||
"picture-only": "Ainult pilt",
|
|
||||||
"invite": "Kutsuge",
|
"invite": "Kutsuge",
|
||||||
"invitation-email-sent": "Kutse on saadetud e-mailile %1",
|
"invitation-email-sent": "Kutse on saadetud e-mailile %1",
|
||||||
"user_list": "Kasutajate list",
|
"user_list": "Kasutajate list",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "Lugemata teemad",
|
"unread_topics": "Lugemata teemad",
|
||||||
"categories": "Kategooriad",
|
"categories": "Kategooriad",
|
||||||
"tags": "Märksõnad",
|
"tags": "Märksõnad",
|
||||||
"map": "Kaart"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "کلمه عبور نامعتبر است.",
|
"invalid-password": "کلمه عبور نامعتبر است.",
|
||||||
"invalid-username-or-password": "لطفا هم نام کاربری و هم کلمه عبور را مشخص کنید",
|
"invalid-username-or-password": "لطفا هم نام کاربری و هم کلمه عبور را مشخص کنید",
|
||||||
"invalid-search-term": "کلمه جستجو نامعتبر است",
|
"invalid-search-term": "کلمه جستجو نامعتبر است",
|
||||||
"invalid-pagination-value": "عدد صفحهبندی نامعتبر است.",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "این نام کاربری گرفته شده است.",
|
"username-taken": "این نام کاربری گرفته شده است.",
|
||||||
"email-taken": "این ایمیل گرفته شده است.",
|
"email-taken": "این ایمیل گرفته شده است.",
|
||||||
"email-not-confirmed": "ایمیل شما تاکنون تایید نشده است، برای تایید ایمیل خود را اینجا را کلیک کنید.",
|
"email-not-confirmed": "ایمیل شما تاکنون تایید نشده است، برای تایید ایمیل خود را اینجا را کلیک کنید.",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "پیام طولانی تر از حد مجاز است",
|
"chat-message-too-long": "پیام طولانی تر از حد مجاز است",
|
||||||
"cant-edit-chat-message": "شما اجازه ی ویرایش این پیام را ندارید",
|
"cant-edit-chat-message": "شما اجازه ی ویرایش این پیام را ندارید",
|
||||||
"cant-remove-last-user": "You can't remove the last user",
|
"cant-remove-last-user": "You can't remove the last user",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "سیستم اعتبار غیر فعال شده است",
|
"reputation-system-disabled": "سیستم اعتبار غیر فعال شده است",
|
||||||
"downvoting-disabled": "رأی منفی غیر فعال شده است",
|
"downvoting-disabled": "رأی منفی غیر فعال شده است",
|
||||||
"not-enough-reputation-to-downvote": "شما اعتبار کافی برای دادن رأی منفی به این پست را ندارید.",
|
"not-enough-reputation-to-downvote": "شما اعتبار کافی برای دادن رأی منفی به این پست را ندارید.",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "لطفا از ایمیل خود برای ورود استفاده کنید",
|
"wrong-login-type-email": "لطفا از ایمیل خود برای ورود استفاده کنید",
|
||||||
"wrong-login-type-username": "لطفا از نام کاربری خود برای ورود استفاده کنید",
|
"wrong-login-type-username": "لطفا از نام کاربری خود برای ورود استفاده کنید",
|
||||||
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
||||||
"no-session-found": "No login session found!"
|
"no-session-found": "No login session found!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "پشت شده در %1 توسط 2%",
|
"posted_in_by": "پشت شده در %1 توسط 2%",
|
||||||
"posted_in_ago": "ارسال شده در %1 %2",
|
"posted_in_ago": "ارسال شده در %1 %2",
|
||||||
"posted_in_ago_by": "ارسال شده در %1 %2 توسط %3",
|
"posted_in_ago_by": "ارسال شده در %1 %2 توسط %3",
|
||||||
"posted_in_ago_by_guest": "ارسال شده در %1 %2 توسط مهمان",
|
|
||||||
"replied_ago": "پاسخ داده شده در %1",
|
|
||||||
"user_posted_ago": "%1 در %2 ارسال کرده است",
|
"user_posted_ago": "%1 در %2 ارسال کرده است",
|
||||||
"guest_posted_ago": "مهمان در %1 ارسال کرده است",
|
"guest_posted_ago": "مهمان در %1 ارسال کرده است",
|
||||||
"last_edited_by_ago": "آخرین ویرایش توسط %1 %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "هیچ دیدگاه تازهای نیست",
|
"norecentposts": "هیچ دیدگاه تازهای نیست",
|
||||||
"norecenttopics": "هیچ جستار تازهای نیست",
|
"norecenttopics": "هیچ جستار تازهای نیست",
|
||||||
"recentposts": "دیدگاههای تازه",
|
"recentposts": "دیدگاههای تازه",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "موضوعات پربازدید این ماه",
|
"popular-month": "موضوعات پربازدید این ماه",
|
||||||
"popular-alltime": "پربازدیدترین موضوعات",
|
"popular-alltime": "پربازدیدترین موضوعات",
|
||||||
"recent": "جستارهای تازه",
|
"recent": "جستارهای تازه",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "کاربران آنلاین",
|
"users/online": "کاربران آنلاین",
|
||||||
"users/latest": "آخرین کاربران",
|
"users/latest": "آخرین کاربران",
|
||||||
"users/sort-posts": "کاربران با بیشترین پست",
|
"users/sort-posts": "کاربران با بیشترین پست",
|
||||||
"users/sort-reputation": "کاربران دارای بیشترین اعتبار",
|
"users/sort-reputation": "کاربران دارای بیشترین اعتبار",
|
||||||
"users/map": "نقشه ی کاربر",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "جستجوی کاربر",
|
"users/search": "جستجوی کاربر",
|
||||||
"notifications": "آگاهسازیها",
|
"notifications": "آگاهسازیها",
|
||||||
"tags": "برچسبها",
|
"tags": "برچسبها",
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"login_to_subscribe": "برای دنبال کردن این موضوع، لطفا ثبت نام کنید و یا با نام کاربری خود وارد شوید",
|
"login_to_subscribe": "برای دنبال کردن این موضوع، لطفا ثبت نام کنید و یا با نام کاربری خود وارد شوید",
|
||||||
"markAsUnreadForAll.success": "موضوع برای همگان نخوانده در نظر گرفته شد.",
|
"markAsUnreadForAll.success": "موضوع برای همگان نخوانده در نظر گرفته شد.",
|
||||||
"mark_unread": "Mark unread",
|
"mark_unread": "Mark unread",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "پیگیری",
|
"watch": "پیگیری",
|
||||||
"unwatch": "عدم پیگیری",
|
"unwatch": "عدم پیگیری",
|
||||||
"watch.title": "از پاسخهای تازه به این موضوع آگاه شوید.",
|
"watch.title": "از پاسخهای تازه به این موضوع آگاه شوید.",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "موضوعی که شما در حال پاسخگویی به آن هستید قدیمی می باشد. آیا میلید به جای آن یک موضوع جدید ایجاد کنید و در آن به این موضوع ارجاع دهید؟",
|
"stale.warning": "موضوعی که شما در حال پاسخگویی به آن هستید قدیمی می باشد. آیا میلید به جای آن یک موضوع جدید ایجاد کنید و در آن به این موضوع ارجاع دهید؟",
|
||||||
"stale.create": "ایجاد یک موضوع جدید",
|
"stale.create": "ایجاد یک موضوع جدید",
|
||||||
"stale.reply_anyway": "در هر صورت می خواهم به این موضوع پاسخ دهم",
|
"stale.reply_anyway": "در هر صورت می خواهم به این موضوع پاسخ دهم",
|
||||||
"stale.link_back": "پاسخ : [%1](2%)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "اسپم",
|
"spam": "اسپم",
|
||||||
"offensive": "توهین آمیز",
|
"offensive": "توهین آمیز",
|
||||||
"custom-flag-reason": "وارد کردن دلیل پرچمگذاری"
|
"custom-flag-reason": "وارد کردن دلیل پرچمگذاری"
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"users-found-search-took": "%1 کاربر(ها) یافت شد! جستجو %2 ثانیه طولید",
|
"users-found-search-took": "%1 کاربر(ها) یافت شد! جستجو %2 ثانیه طولید",
|
||||||
"filter-by": "فیلتر با",
|
"filter-by": "فیلتر با",
|
||||||
"online-only": "فقط آنلاین",
|
"online-only": "فقط آنلاین",
|
||||||
"picture-only": "عکس فقط",
|
|
||||||
"invite": "دعوت",
|
"invite": "دعوت",
|
||||||
"invitation-email-sent": "ایمیل ی دعوتنامه به %1 ارسال شد",
|
"invitation-email-sent": "ایمیل ی دعوتنامه به %1 ارسال شد",
|
||||||
"user_list": "فهرست کاربران",
|
"user_list": "فهرست کاربران",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "موضوع های خوانده نشده",
|
"unread_topics": "موضوع های خوانده نشده",
|
||||||
"categories": "دسته ها",
|
"categories": "دسته ها",
|
||||||
"tags": "برچسبها",
|
"tags": "برچسبها",
|
||||||
"map": "نقشه"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "Virheellinen salasana",
|
"invalid-password": "Virheellinen salasana",
|
||||||
"invalid-username-or-password": "Ole hyvä ja anna sekä käyttäjänimi että salasana",
|
"invalid-username-or-password": "Ole hyvä ja anna sekä käyttäjänimi että salasana",
|
||||||
"invalid-search-term": "Virheellinen hakutermi",
|
"invalid-search-term": "Virheellinen hakutermi",
|
||||||
"invalid-pagination-value": "Virheellinen taittoarvo",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "Käyttäjänimi varattu",
|
"username-taken": "Käyttäjänimi varattu",
|
||||||
"email-taken": "Sähköpostiosoite varattu",
|
"email-taken": "Sähköpostiosoite varattu",
|
||||||
"email-not-confirmed": "Sähköpostiasi ei ole vielä vahvistettu, ole hyvä ja napsauta tätä vahvistaaksesi sen.",
|
"email-not-confirmed": "Sähköpostiasi ei ole vielä vahvistettu, ole hyvä ja napsauta tätä vahvistaaksesi sen.",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "Chat message is too long",
|
"chat-message-too-long": "Chat message is too long",
|
||||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||||
"cant-remove-last-user": "You can't remove the last user",
|
"cant-remove-last-user": "You can't remove the last user",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "Reputation system is disabled.",
|
"reputation-system-disabled": "Reputation system is disabled.",
|
||||||
"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",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "Please use your email to login",
|
"wrong-login-type-email": "Please use your email to login",
|
||||||
"wrong-login-type-username": "Please use your username to login",
|
"wrong-login-type-username": "Please use your username to login",
|
||||||
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
"invite-maximum-met": "You have invited the maximum amount of people (%1 out of %2).",
|
||||||
"no-session-found": "No login session found!"
|
"no-session-found": "No login session found!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "posted in %1 by %2",
|
"posted_in_by": "posted in %1 by %2",
|
||||||
"posted_in_ago": "posted in %1 %2",
|
"posted_in_ago": "posted in %1 %2",
|
||||||
"posted_in_ago_by": "posted in %1 %2 by %3",
|
"posted_in_ago_by": "posted in %1 %2 by %3",
|
||||||
"posted_in_ago_by_guest": "posted in %1 %2 by Guest",
|
|
||||||
"replied_ago": "vastattu %1",
|
|
||||||
"user_posted_ago": "%1 lähetti %2",
|
"user_posted_ago": "%1 lähetti %2",
|
||||||
"guest_posted_ago": "Vieras kirjoitti %1",
|
"guest_posted_ago": "Vieras kirjoitti %1",
|
||||||
"last_edited_by_ago": "last edited by %1 %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "Ei viimeaikaisia viestejä",
|
"norecentposts": "Ei viimeaikaisia viestejä",
|
||||||
"norecenttopics": "Ei viimeaikaisia aiheita",
|
"norecenttopics": "Ei viimeaikaisia aiheita",
|
||||||
"recentposts": "Viimeisimmät viestit",
|
"recentposts": "Viimeisimmät viestit",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Popular topics this month",
|
"popular-month": "Popular topics this month",
|
||||||
"popular-alltime": "All time popular topics",
|
"popular-alltime": "All time popular topics",
|
||||||
"recent": "Viimeisimmät aiheet",
|
"recent": "Viimeisimmät aiheet",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "Online Users",
|
"users/online": "Online Users",
|
||||||
"users/latest": "Latest Users",
|
"users/latest": "Latest Users",
|
||||||
"users/sort-posts": "Users with the most posts",
|
"users/sort-posts": "Users with the most posts",
|
||||||
"users/sort-reputation": "Users with the most reputation",
|
"users/sort-reputation": "Users with the most reputation",
|
||||||
"users/map": "User Map",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "User Search",
|
"users/search": "User Search",
|
||||||
"notifications": "Ilmoitukset",
|
"notifications": "Ilmoitukset",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"login_to_subscribe": "Ole hyvä ja rekisteröidy tai kirjaudu sisään tilataksesi tämän aiheen.",
|
"login_to_subscribe": "Ole hyvä ja rekisteröidy tai kirjaudu sisään tilataksesi tämän aiheen.",
|
||||||
"markAsUnreadForAll.success": "Aihe merkitty lukemattomaksi kaikille.",
|
"markAsUnreadForAll.success": "Aihe merkitty lukemattomaksi kaikille.",
|
||||||
"mark_unread": "Mark unread",
|
"mark_unread": "Mark unread",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "Tarkkaile",
|
"watch": "Tarkkaile",
|
||||||
"unwatch": "Älä seuraa",
|
"unwatch": "Älä seuraa",
|
||||||
"watch.title": "Ilmoita, kun tähän keskusteluun tulee uusia viestejä",
|
"watch.title": "Ilmoita, kun tähän keskusteluun tulee uusia viestejä",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
"stale.warning": "The topic you are replying to is quite old. Would you like to create a new topic instead, and reference this one in your reply?",
|
||||||
"stale.create": "Create a new topic",
|
"stale.create": "Create a new topic",
|
||||||
"stale.reply_anyway": "Reply to this topic anyway",
|
"stale.reply_anyway": "Reply to this topic anyway",
|
||||||
"stale.link_back": "Re: [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "Spam",
|
"spam": "Spam",
|
||||||
"offensive": "Offensive",
|
"offensive": "Offensive",
|
||||||
"custom-flag-reason": "Enter a flagging reason"
|
"custom-flag-reason": "Enter a flagging reason"
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"users-found-search-took": "%1 käyttäjä(ä) löytyi! Haku kesti %2 sekuntia.",
|
"users-found-search-took": "%1 käyttäjä(ä) löytyi! Haku kesti %2 sekuntia.",
|
||||||
"filter-by": "Suodata",
|
"filter-by": "Suodata",
|
||||||
"online-only": "Vain verkossa olevat",
|
"online-only": "Vain verkossa olevat",
|
||||||
"picture-only": "Picture only",
|
|
||||||
"invite": "Invite",
|
"invite": "Invite",
|
||||||
"invitation-email-sent": "An invitation email has been sent to %1",
|
"invitation-email-sent": "An invitation email has been sent to %1",
|
||||||
"user_list": "User List",
|
"user_list": "User List",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "Unread Topics",
|
"unread_topics": "Unread Topics",
|
||||||
"categories": "Categories",
|
"categories": "Categories",
|
||||||
"tags": "Tags",
|
"tags": "Tags",
|
||||||
"map": "Map"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"invalid-password": "Mot de passe invalide",
|
"invalid-password": "Mot de passe invalide",
|
||||||
"invalid-username-or-password": "Veuillez entrer un nom d'utilisateur et un mot de passe",
|
"invalid-username-or-password": "Veuillez entrer un nom d'utilisateur et un mot de passe",
|
||||||
"invalid-search-term": "Données de recherche invalides",
|
"invalid-search-term": "Données de recherche invalides",
|
||||||
"invalid-pagination-value": "Valeur de pagination invalide",
|
"invalid-pagination-value": "Invalid pagination value, must be at least %1 and at most %2",
|
||||||
"username-taken": "Nom d’utilisateur déjà utilisé",
|
"username-taken": "Nom d’utilisateur déjà utilisé",
|
||||||
"email-taken": "Email déjà utilisé",
|
"email-taken": "Email déjà utilisé",
|
||||||
"email-not-confirmed": "Votre adresse email n'est pas confirmée, cliquez ici pour la valider.",
|
"email-not-confirmed": "Votre adresse email n'est pas confirmée, cliquez ici pour la valider.",
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
"confirm-email-already-sent": "L'email de confirmation a déjà été envoyé. Veuillez attendre %1 minute(s) avant de redemander un nouvel envoi.",
|
"confirm-email-already-sent": "L'email de confirmation a déjà été envoyé. Veuillez attendre %1 minute(s) avant de redemander un nouvel envoi.",
|
||||||
"username-too-short": "Nom d'utilisateur trop court",
|
"username-too-short": "Nom d'utilisateur trop court",
|
||||||
"username-too-long": "Nom d'utilisateur trop long",
|
"username-too-long": "Nom d'utilisateur trop long",
|
||||||
"password-too-long": "Password too long",
|
"password-too-long": "Mot de passe trop long",
|
||||||
"user-banned": "Utilisateur banni",
|
"user-banned": "Utilisateur banni",
|
||||||
"user-too-new": "Désolé, vous devez attendre encore %1 seconde(s) avant d'envoyer votre premier message",
|
"user-too-new": "Désolé, vous devez attendre encore %1 seconde(s) avant d'envoyer votre premier message",
|
||||||
"no-category": "Cette catégorie n'existe pas",
|
"no-category": "Cette catégorie n'existe pas",
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
"chat-message-too-long": "Le message de Chat est trop long",
|
"chat-message-too-long": "Le message de Chat est trop long",
|
||||||
"cant-edit-chat-message": "Vous n'avez pas l'autorisation de modifier ce message",
|
"cant-edit-chat-message": "Vous n'avez pas l'autorisation de modifier ce message",
|
||||||
"cant-remove-last-user": "Vous ne pouvez pas supprimer le dernier utilisateur",
|
"cant-remove-last-user": "Vous ne pouvez pas supprimer le dernier utilisateur",
|
||||||
|
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||||
"reputation-system-disabled": "Le système de réputation est désactivé",
|
"reputation-system-disabled": "Le système de réputation est désactivé",
|
||||||
"downvoting-disabled": "Les votes négatifs ne sont pas autorisés",
|
"downvoting-disabled": "Les votes négatifs ne sont pas autorisés",
|
||||||
"not-enough-reputation-to-downvote": "Vous n'avez pas une réputation assez élevée pour noter négativement ce message",
|
"not-enough-reputation-to-downvote": "Vous n'avez pas une réputation assez élevée pour noter négativement ce message",
|
||||||
@@ -94,5 +95,6 @@
|
|||||||
"wrong-login-type-email": "Veuillez utiliser votre adresse email pour vous connecter",
|
"wrong-login-type-email": "Veuillez utiliser votre adresse email pour vous connecter",
|
||||||
"wrong-login-type-username": "Veuillez utiliser votre identifiant pour vous connecter",
|
"wrong-login-type-username": "Veuillez utiliser votre identifiant pour vous connecter",
|
||||||
"invite-maximum-met": "Vous avez invité la quantité maximale de personnes (%1 de %2).",
|
"invite-maximum-met": "Vous avez invité la quantité maximale de personnes (%1 de %2).",
|
||||||
"no-session-found": "Pas de session de connexion trouvé!"
|
"no-session-found": "Pas de session de connexion trouvé!",
|
||||||
|
"not-in-room": "User not in room"
|
||||||
}
|
}
|
||||||
@@ -49,9 +49,9 @@
|
|||||||
"users": "Utilisateurs",
|
"users": "Utilisateurs",
|
||||||
"topics": "Sujets",
|
"topics": "Sujets",
|
||||||
"posts": "Messages",
|
"posts": "Messages",
|
||||||
"best": "Best",
|
"best": "Meilleurs",
|
||||||
"upvoted": "Upvoted",
|
"upvoted": "Votes pour",
|
||||||
"downvoted": "Downvoted",
|
"downvoted": "Votes contre",
|
||||||
"views": "Vues",
|
"views": "Vues",
|
||||||
"reputation": "Réputation",
|
"reputation": "Réputation",
|
||||||
"read_more": "En lire plus",
|
"read_more": "En lire plus",
|
||||||
@@ -63,11 +63,9 @@
|
|||||||
"posted_in_by": "posté dans %1 par %2",
|
"posted_in_by": "posté dans %1 par %2",
|
||||||
"posted_in_ago": "posté dans %1 %2",
|
"posted_in_ago": "posté dans %1 %2",
|
||||||
"posted_in_ago_by": "posté dans %1 %2 par %3",
|
"posted_in_ago_by": "posté dans %1 %2 par %3",
|
||||||
"posted_in_ago_by_guest": "posté dans %1 %2 par un invité",
|
|
||||||
"replied_ago": "a répondu %1",
|
|
||||||
"user_posted_ago": "%1 a posté %2",
|
"user_posted_ago": "%1 a posté %2",
|
||||||
"guest_posted_ago": "Un invité a posté %1",
|
"guest_posted_ago": "Un invité a posté %1",
|
||||||
"last_edited_by_ago": "dernière édition par %1 %2",
|
"last_edited_by": "last edited by %1",
|
||||||
"norecentposts": "Aucun message récent",
|
"norecentposts": "Aucun message récent",
|
||||||
"norecenttopics": "Aucun sujet récent",
|
"norecenttopics": "Aucun sujet récent",
|
||||||
"recentposts": "Messages récents",
|
"recentposts": "Messages récents",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"mark_all_read": "Marquer toutes les notifications comme lues",
|
"mark_all_read": "Marquer toutes les notifications comme lues",
|
||||||
"back_to_home": "Revenir à %1",
|
"back_to_home": "Revenir à %1",
|
||||||
"outgoing_link": "Lien sortant",
|
"outgoing_link": "Lien sortant",
|
||||||
"outgoing_link_message": "You are now leaving %1",
|
"outgoing_link_message": "Vous quittez %1",
|
||||||
"continue_to": "Continuer vers %1",
|
"continue_to": "Continuer vers %1",
|
||||||
"return_to": "Revenir à %1",
|
"return_to": "Revenir à %1",
|
||||||
"new_notification": "Nouvelle notification",
|
"new_notification": "Nouvelle notification",
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
"popular-month": "Sujets populaires ce mois-ci",
|
"popular-month": "Sujets populaires ce mois-ci",
|
||||||
"popular-alltime": "Sujets populaires depuis toujours",
|
"popular-alltime": "Sujets populaires depuis toujours",
|
||||||
"recent": "Sujets récents",
|
"recent": "Sujets récents",
|
||||||
|
"flagged-posts": "Flagged Posts",
|
||||||
"users/online": "Utilisateurs en ligne",
|
"users/online": "Utilisateurs en ligne",
|
||||||
"users/latest": "Derniers inscrits",
|
"users/latest": "Derniers inscrits",
|
||||||
"users/sort-posts": "Utilisateurs avec le plus de messages",
|
"users/sort-posts": "Utilisateurs avec le plus de messages",
|
||||||
"users/sort-reputation": "Utilisateurs avec la plus grande réputation",
|
"users/sort-reputation": "Utilisateurs avec la plus grande réputation",
|
||||||
"users/map": "Carte des utilisateurs",
|
"users/banned": "Banned Users",
|
||||||
"users/search": "Rechercher des utilisateurs",
|
"users/search": "Rechercher des utilisateurs",
|
||||||
"notifications": "Notifications",
|
"notifications": "Notifications",
|
||||||
"tags": "Mots-clés",
|
"tags": "Mots-clés",
|
||||||
@@ -35,9 +36,9 @@
|
|||||||
"account/favourites": "Messages favoris de %1",
|
"account/favourites": "Messages favoris de %1",
|
||||||
"account/settings": "Paramètres d'utilisateur",
|
"account/settings": "Paramètres d'utilisateur",
|
||||||
"account/watched": "Sujets surveillés par %1",
|
"account/watched": "Sujets surveillés par %1",
|
||||||
"account/upvoted": "Posts upvoted by %1",
|
"account/upvoted": "Messages pour lesquels %1 a voté",
|
||||||
"account/downvoted": "Posts downvoted by %1",
|
"account/downvoted": "Messages contre lesquels %1 a voté",
|
||||||
"account/best": "Best posts made by %1",
|
"account/best": "Meilleurs messages postés par %1",
|
||||||
"maintenance.text": "%1 est en maintenance. Veuillez revenir un peu plus tard.",
|
"maintenance.text": "%1 est en maintenance. Veuillez revenir un peu plus tard.",
|
||||||
"maintenance.messageIntro": "De plus, l'administrateur a laissé ce message:",
|
"maintenance.messageIntro": "De plus, l'administrateur a laissé ce message:",
|
||||||
"throttled.text": "%1 est actuellement indisponible en raison d'une charge excessive. Merci de réessayer plus tard."
|
"throttled.text": "%1 est actuellement indisponible en raison d'une charge excessive. Merci de réessayer plus tard."
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"login_to_subscribe": "Veuillez vous enregistrer ou vous connecter afin de vous abonner à ce sujet.",
|
"login_to_subscribe": "Veuillez vous enregistrer ou vous connecter afin de vous abonner à ce sujet.",
|
||||||
"markAsUnreadForAll.success": "Sujet marqué comme non lu pour tout le monde.",
|
"markAsUnreadForAll.success": "Sujet marqué comme non lu pour tout le monde.",
|
||||||
"mark_unread": "Marquer comme non-lu",
|
"mark_unread": "Marquer comme non-lu",
|
||||||
|
"mark_unread.success": "Topic marked as unread.",
|
||||||
"watch": "Surveiller",
|
"watch": "Surveiller",
|
||||||
"unwatch": "Ne plus surveiller",
|
"unwatch": "Ne plus surveiller",
|
||||||
"watch.title": "Être notifié des nouvelles réponses dans ce sujet",
|
"watch.title": "Être notifié des nouvelles réponses dans ce sujet",
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
"stale.warning": "Le sujet auquel vous répondez est assez ancien. Ne voudriez-vous pas créer un nouveau sujet à la place et placer une référence vers celui-ci dans votre réponse ?",
|
"stale.warning": "Le sujet auquel vous répondez est assez ancien. Ne voudriez-vous pas créer un nouveau sujet à la place et placer une référence vers celui-ci dans votre réponse ?",
|
||||||
"stale.create": "Créer un nouveau sujet",
|
"stale.create": "Créer un nouveau sujet",
|
||||||
"stale.reply_anyway": "Répondre à ce sujet quand même",
|
"stale.reply_anyway": "Répondre à ce sujet quand même",
|
||||||
"stale.link_back": "Re : [%1](%2)",
|
"link_back": "Re: [%1](%2)",
|
||||||
"spam": "Spam",
|
"spam": "Spam",
|
||||||
"offensive": "Offensif",
|
"offensive": "Offensif",
|
||||||
"custom-flag-reason": "Entrez une raison pour laquelle vous signalez ce message"
|
"custom-flag-reason": "Entrez une raison pour laquelle vous signalez ce message"
|
||||||
|
|||||||
@@ -77,9 +77,9 @@
|
|||||||
"has_no_posts": "Cet utilisateur n'a encore rien posté.",
|
"has_no_posts": "Cet utilisateur n'a encore rien posté.",
|
||||||
"has_no_topics": "Cet utilisateur n'a encore créé aucun sujet.",
|
"has_no_topics": "Cet utilisateur n'a encore créé aucun sujet.",
|
||||||
"has_no_watched_topics": "Cet utilisateur n'a encore consulté aucun sujet.",
|
"has_no_watched_topics": "Cet utilisateur n'a encore consulté aucun sujet.",
|
||||||
"has_no_upvoted_posts": "This user hasn't upvoted any posts yet.",
|
"has_no_upvoted_posts": "Cet utilisateur n'a voté pour aucun message",
|
||||||
"has_no_downvoted_posts": "This user hasn't downvoted any posts yet.",
|
"has_no_downvoted_posts": "Cet utilisateur n'a voté contre aucun message",
|
||||||
"has_no_voted_posts": "This user has no voted posts",
|
"has_no_voted_posts": "Personne n'a voté pour des messages de cet utilisateur",
|
||||||
"email_hidden": "Email masqué",
|
"email_hidden": "Email masqué",
|
||||||
"hidden": "masqué",
|
"hidden": "masqué",
|
||||||
"paginate_description": "Utiliser la pagination des sujets et des messages à la place du défilement infini",
|
"paginate_description": "Utiliser la pagination des sujets et des messages à la place du défilement infini",
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"users-found-search-took": "%1 utilisateur(s) trouvé(s)! La recherche a pris %2 secondes.",
|
"users-found-search-took": "%1 utilisateur(s) trouvé(s)! La recherche a pris %2 secondes.",
|
||||||
"filter-by": "Filtrer par",
|
"filter-by": "Filtrer par",
|
||||||
"online-only": "En ligne uniquement",
|
"online-only": "En ligne uniquement",
|
||||||
"picture-only": "Avec image uniquement",
|
|
||||||
"invite": "Invitation",
|
"invite": "Invitation",
|
||||||
"invitation-email-sent": "Un email d'invitation a été envoyé à %1",
|
"invitation-email-sent": "Un email d'invitation a été envoyé à %1",
|
||||||
"user_list": "Liste d'Utilisateurs",
|
"user_list": "Liste d'Utilisateurs",
|
||||||
@@ -17,5 +16,5 @@
|
|||||||
"unread_topics": "Sujets Non-Lus",
|
"unread_topics": "Sujets Non-Lus",
|
||||||
"categories": "Catégories",
|
"categories": "Catégories",
|
||||||
"tags": "Mots-clés",
|
"tags": "Mots-clés",
|
||||||
"map": "Carte"
|
"no-users-found": "No users found!"
|
||||||
}
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user