mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-06-26 02:19:39 +02:00
Merge commit 'a0d989a11220532af216290a1085109f78fa520d' into weekly
This commit is contained in:
17
Gruntfile.js
17
Gruntfile.js
@@ -7,15 +7,16 @@ var fork = require('child_process').fork,
|
||||
|
||||
|
||||
module.exports = function(grunt) {
|
||||
var args = [];
|
||||
if (!grunt.option('verbose')) {
|
||||
args.push('--log-level=info');
|
||||
}
|
||||
|
||||
function update(action, filepath, target) {
|
||||
var args = [],
|
||||
var updateArgs = args.slice(),
|
||||
fromFile = '',
|
||||
compiling = '',
|
||||
time = Date.now();
|
||||
|
||||
if (!grunt.option('verbose')) {
|
||||
args.push('--log-level=info');
|
||||
}
|
||||
|
||||
if (target === 'lessUpdated_Client') {
|
||||
fromFile = ['js', 'tpl', 'acpLess'];
|
||||
@@ -37,11 +38,11 @@ module.exports = function(grunt) {
|
||||
return incomplete.indexOf(ext) === -1;
|
||||
});
|
||||
|
||||
args.push('--from-file=' + fromFile.join(','));
|
||||
updateArgs.push('--from-file=' + fromFile.join(','));
|
||||
incomplete.push(compiling);
|
||||
|
||||
worker.kill();
|
||||
worker = fork('app.js', args, { env: env });
|
||||
worker = fork('app.js', updateArgs, { env: env });
|
||||
|
||||
worker.on('message', function() {
|
||||
if (incomplete.length) {
|
||||
@@ -101,6 +102,6 @@ module.exports = function(grunt) {
|
||||
|
||||
env.NODE_ENV = 'development';
|
||||
|
||||
worker = fork('app.js', [], { env: env });
|
||||
worker = fork('app.js', args, { env: env });
|
||||
grunt.event.on('watch', update);
|
||||
};
|
||||
7
nodebb
7
nodebb
@@ -118,12 +118,13 @@ var getRunningPid = function(callback) {
|
||||
version: async.apply(getCurrentVersion)
|
||||
}),
|
||||
function(payload, next) {
|
||||
if (!payload.plugins.length) {
|
||||
var toCheck = Object.keys(payload.plugins);
|
||||
|
||||
if (!toCheck.length) {
|
||||
process.stdout.write('OK'.green + '\n'.reset);
|
||||
return next(null, []); // no extraneous plugins installed
|
||||
}
|
||||
|
||||
var toCheck = Object.keys(payload.plugins);
|
||||
request({
|
||||
method: 'GET',
|
||||
url: 'https://packages.nodebb.org/api/v1/suggest?version=' + payload.version + '&package[]=' + toCheck.join('&package[]='),
|
||||
@@ -195,7 +196,7 @@ var getRunningPid = function(callback) {
|
||||
description: 'Proceed with upgrade (y|n)?'.reset,
|
||||
type: 'string'
|
||||
}, function(err, result) {
|
||||
if (result.upgrade === 'y' || result.upgrade === 'yes') {
|
||||
if (['y', 'Y', 'yes', 'YES'].indexOf(result.upgrade) !== -1) {
|
||||
process.stdout.write('\nUpgrading packages...');
|
||||
var args = ['npm', 'i'];
|
||||
found.forEach(function(suggestObj) {
|
||||
|
||||
10
package.json
10
package.json
@@ -2,7 +2,7 @@
|
||||
"name": "nodebb",
|
||||
"license": "GPL-3.0",
|
||||
"description": "NodeBB Forum",
|
||||
"version": "1.0.3-auto.3",
|
||||
"version": "1.0.3",
|
||||
"homepage": "http://www.nodebb.org",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -46,7 +46,7 @@
|
||||
"morgan": "^1.3.2",
|
||||
"mousetrap": "^1.5.3",
|
||||
"nconf": "~0.8.2",
|
||||
"nodebb-plugin-composer-default": "3.0.21",
|
||||
"nodebb-plugin-composer-default": "3.0.22",
|
||||
"nodebb-plugin-dbsearch": "1.0.1",
|
||||
"nodebb-plugin-emoji-one": "1.1.0",
|
||||
"nodebb-plugin-emoji-extended": "1.1.0",
|
||||
@@ -56,8 +56,8 @@
|
||||
"nodebb-plugin-spam-be-gone": "0.4.6",
|
||||
"nodebb-rewards-essentials": "0.0.8",
|
||||
"nodebb-theme-lavender": "3.0.9",
|
||||
"nodebb-theme-persona": "4.0.118",
|
||||
"nodebb-theme-vanilla": "5.0.63",
|
||||
"nodebb-theme-persona": "4.0.122",
|
||||
"nodebb-theme-vanilla": "5.0.66",
|
||||
"nodebb-widget-essentials": "2.0.9",
|
||||
"nodemailer": "2.0.0",
|
||||
"nodemailer-sendmail-transport": "1.0.0",
|
||||
@@ -115,4 +115,4 @@
|
||||
"url": "https://github.com/barisusakli"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "day",
|
||||
"digest.week": "week",
|
||||
"digest.month": "month",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "هناك محادثة جديدة من %1",
|
||||
"notif.chat.cta": "انقر هنا لمتابعة المحادثة",
|
||||
"notif.chat.unsub.info": "تم إرسال هذا الإشعار بوجودة محادثة جديدة وفقا لخيارات تسجيلك.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "نظام السمعة معطل",
|
||||
"downvoting-disabled": "التصويتات السلبية معطلة",
|
||||
"not-enough-reputation-to-downvote": "ليس لديك سمعة تكفي لإضافة صوت سلبي لهذا الموضوع",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "أدوات",
|
||||
"flag": "تبليغ",
|
||||
"locked": "مقفل",
|
||||
"bookmark_instructions": "Click here to return to the last unread post in this thread.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "إشعار بمشاركة مخلة.",
|
||||
"flag_success": "تم الإشعار بهذه المشاركة على أنها مخلة",
|
||||
"deleted_message": "هذه المشاركة محذوفة. فقط من لهم صلاحية الإشراف على ا لمشاركات يمكنهم معاينتها.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "فتح الروابط الخارجية في نافدة جديدة",
|
||||
"enable_topic_searching": "تفعيل خاصية البحث داخل المواضيع",
|
||||
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behaviour and allow you to search through the entire topic, instead of what is only shown on screen",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "متابعة المواضيع التي تقوم بالرد فيها",
|
||||
"follow_topics_you_create": "متابعة المواضيع التي تنشئها",
|
||||
"grouptitle": "حدد عنوان المجموعة الذي تريد عرضه",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "لا يوجد عنوان للمجموعة",
|
||||
"select-skin": "Select a Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "ден",
|
||||
"digest.week": "месец",
|
||||
"digest.month": "година",
|
||||
"digest.subject": "Резюме за %1",
|
||||
"notif.chat.subject": "Получено е ново съобщение от %1",
|
||||
"notif.chat.cta": "Натиснете тук, за да продължите разговора",
|
||||
"notif.chat.unsub.info": "Това известие за разговор беше изпратено до Вас поради настройките Ви за абонаментите.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "Нямате право да редактирате това съобщение",
|
||||
"cant-remove-last-user": "Не можете да премахнете последния потребител",
|
||||
"cant-delete-chat-message": "Нямате право да изтриете това съобщение",
|
||||
"already-voting-for-this-post": "Вече сте дали глас за тази публикация.",
|
||||
"reputation-system-disabled": "Системата за репутация е изключена.",
|
||||
"downvoting-disabled": "Отрицателното гласуване е изключено",
|
||||
"not-enough-reputation-to-downvote": "Нямате достатъчно репутация, за да гласувате отрицателно за тази публикация",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Инструменти",
|
||||
"flag": "Докладване",
|
||||
"locked": "Заключена",
|
||||
"bookmark_instructions": "Натиснете тук, за да се върнете на последната непрочетена публикация в тази тема.",
|
||||
"bookmark_instructions": "Щракнете тук, за да се върнете към последно прочетената публикация в тази тема.",
|
||||
"flag_title": "Докладване на тази публикация до модератор",
|
||||
"flag_success": "Тази публикация е била докладвана до модератор.",
|
||||
"deleted_message": "Тази тема е била изтрита. Само потребители с права за управление на темите могат да я видят.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Отваряне на външните връзки в нов подпрозорец",
|
||||
"enable_topic_searching": "Включване на търсенето в темите",
|
||||
"topic_search_help": "Ако е включено, търсенето в темата ще замени стандартното поведение на браузъра при търсене в страницата и ще Ви позволи да претърсвате цялата тема, а не само това, което се вижда на екрана",
|
||||
"delay_image_loading": "Отлагане на зареждането на изображения",
|
||||
"image_load_delay_help": "Ако е включено, изображенията в темите няма да бъдат зареждани, докато не превъртите страницата до тях",
|
||||
"scroll_to_my_post": "След публикуване на отговор, да се показва новата публикация",
|
||||
"follow_topics_you_reply_to": "Следване на темите, на които отговаряте",
|
||||
"follow_topics_you_create": "Следване на темите, които създавате",
|
||||
"grouptitle": "Изберете заглавието на групата, което искате да се показва",
|
||||
"grouptitle": "Заглавие на групата",
|
||||
"no-group-title": "Няма заглавие на група",
|
||||
"select-skin": "Изберете облик",
|
||||
"select-homepage": "Изберете начална страница",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "day",
|
||||
"digest.week": "week",
|
||||
"digest.month": "month",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "%1 এর থেকে নতুন মেসেজ এসেছে।",
|
||||
"notif.chat.cta": "কথপোকথন চালিয়ে যেতে এখানে ক্লিক করুন",
|
||||
"notif.chat.unsub.info": "আপনার সাবস্ক্রীপশন সেটিংসের কারনে আপনার এই নোটিফিকেশন পাঠানো হয়েছে",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "সম্মাননা ব্যাবস্থা নিস্ক্রীয় রাখা হয়েছে",
|
||||
"downvoting-disabled": "ঋণাত্মক ভোট নিস্ক্রীয় রাখা হয়েছে।",
|
||||
"not-enough-reputation-to-downvote": "আপনার এই পোস্ট downvote করার জন্য পর্যাপ্ত সম্মাননা নেই",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "টুলস",
|
||||
"flag": "ফ্ল্যাগ",
|
||||
"locked": "বন্ধ",
|
||||
"bookmark_instructions": "Click here to return to the last unread post in this thread.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "মডারেশনের জন্য এই পোস্টটি ফ্ল্যাগ করুন",
|
||||
"flag_success": "এই পোস্টটি মডারেশনের জন্য ফ্ল্যাগ করা হয়েছে।",
|
||||
"deleted_message": "এই টপিকটি মুছে ফেলা হয়েছে। শুধুমাত্র টপিক ব্যবস্থাপনার ক্ষমতাপ্রাপ্ত সদস্যগণ এটি দেখতে পারবেন।",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "আউটগোয়িং লিংকগুলো নতুন ট্যাবে খুলুন",
|
||||
"enable_topic_searching": "In-Topic সার্চ সক্রীয় করো",
|
||||
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behaviour and allow you to search through the entire topic, instead of what is only shown on screen",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Follow topics that you reply to",
|
||||
"follow_topics_you_create": "Follow topics you create",
|
||||
"grouptitle": "Select the group title you would like to display",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "No group title",
|
||||
"select-skin": "Select a Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "day",
|
||||
"digest.week": "week",
|
||||
"digest.month": "month",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "Nová zpráva z chatu od %1",
|
||||
"notif.chat.cta": "Chcete-li pokračovat v konverzaci, klikněte zde.",
|
||||
"notif.chat.unsub.info": "Toto oznámení z chatu vám bylo zasláno, protože jste si to nastavili ve vašich odběrech.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Systém reputací je zakázán.",
|
||||
"downvoting-disabled": "Downvoting is disabled",
|
||||
"not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Nástroje",
|
||||
"flag": "Flag",
|
||||
"locked": "Locked",
|
||||
"bookmark_instructions": "Click here to return to the last unread post in this thread.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Flag this post for moderation",
|
||||
"flag_success": "This post has been flagged for moderation.",
|
||||
"deleted_message": "This topic has been deleted. Only users with topic management privileges can see it.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Open outgoing links in new tab",
|
||||
"enable_topic_searching": "Enable In-Topic Searching",
|
||||
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behaviour and allow you to search through the entire topic, instead of what is only shown on screen",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Follow topics that you reply to",
|
||||
"follow_topics_you_create": "Follow topics you create",
|
||||
"grouptitle": "Select the group title you would like to display",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "No group title",
|
||||
"select-skin": "Select a Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "dag",
|
||||
"digest.week": "uge",
|
||||
"digest.month": "måned",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "Ny chat besked modtaget fra %1",
|
||||
"notif.chat.cta": "Klik her for at forsætte med samtalen",
|
||||
"notif.chat.unsub.info": "Denne chat notifikation blev sendt til dig pga. indstillingerne i dit abonnement.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "Du har ikke tilladelse til at redigere denne besked",
|
||||
"cant-remove-last-user": "Du kan ikke fjerne den sidste bruger",
|
||||
"cant-delete-chat-message": "Du har ikke tilladelse til at slette denne besked",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Vurderingssystem er slået fra.",
|
||||
"downvoting-disabled": "Nedvurdering er slået fra",
|
||||
"not-enough-reputation-to-downvote": "Du har ikke nok omdømme til at nedstemme dette indlæg",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Værktøjer",
|
||||
"flag": "Marker",
|
||||
"locked": "Låst",
|
||||
"bookmark_instructions": "Klik her for at returnere til det seneste ulæste indlæg i denne tråd.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Meld dette indlæg til moderation",
|
||||
"flag_success": "Dette indlæg er blevet meldt til moderation.",
|
||||
"deleted_message": "Denne tråd er blevet slettet. Kun brugere med emne behandlings privilegier kan se den.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Åben udgående link i en ny tab",
|
||||
"enable_topic_searching": "Slå In-Topic søgning til",
|
||||
"topic_search_help": "Hvis slået til, så vil in-topic søgning overskrive browserens almindelige søge function og tillade dig at søge hele emnet, istedet for kun det der er vist på skærmen",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Følg emner du har skrevet indlæg i",
|
||||
"follow_topics_you_create": "Følg emner du opretter",
|
||||
"grouptitle": "Vælg gruppe titlen du gerne vil fremvise",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "Ingen gruppe titel",
|
||||
"select-skin": "Vælg et skin",
|
||||
"select-homepage": "Vælg en hjemmeside",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "des letzten Tages",
|
||||
"digest.week": "der letzten Woche",
|
||||
"digest.month": "des letzen Monats",
|
||||
"digest.subject": "Übersicht für %1",
|
||||
"notif.chat.subject": "Neue Chatnachricht von %1 erhalten",
|
||||
"notif.chat.cta": "Klicke hier, um die Unterhaltung fortzusetzen",
|
||||
"notif.chat.unsub.info": "Diese Chat-Benachrichtigung wurde dir aufgrund deiner Abonnement-Einstellungen gesendet.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "Du darfst diese Nachricht nicht ändern",
|
||||
"cant-remove-last-user": "Du kannst den letzten Benutzer nicht entfernen",
|
||||
"cant-delete-chat-message": "Du darfst diese Nachricht nicht löschen",
|
||||
"already-voting-for-this-post": "Du hast diesen Beitrag bereits bewertet.",
|
||||
"reputation-system-disabled": "Das Reputationssystem ist deaktiviert.",
|
||||
"downvoting-disabled": "Downvotes sind deaktiviert.",
|
||||
"not-enough-reputation-to-downvote": "Dein Ansehen ist zu niedrig, um diesen Beitrag negativ zu bewerten.",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Werkzeuge",
|
||||
"flag": "Markieren",
|
||||
"locked": "Gesperrt",
|
||||
"bookmark_instructions": "Klicke hier um zum letzten ungelesenen Beitrag in diesem Thema zu springen.",
|
||||
"bookmark_instructions": "Klicke hier, um zum letzten gelesenen Beitrag des Themas zurückzukehren.",
|
||||
"flag_title": "Diesen Beitrag zur Moderation markieren",
|
||||
"flag_success": "Dieser Beitrag wurde erfolgreich für die Moderation markiert.",
|
||||
"deleted_message": "Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Ausgehende Links in neuem Tab öffnen",
|
||||
"enable_topic_searching": "Suchen innerhalb von Themen aktivieren",
|
||||
"topic_search_help": "Wenn aktiviert, ersetzt die im-Thema-Suche die Standardsuche des Browsers. Dadurch kannst du im ganzen Thema suchen, nicht nur im sichtbaren Abschnitt.",
|
||||
"delay_image_loading": "Bilder nachladen",
|
||||
"image_load_delay_help": "Wenn aktiviert, werden Bilder in Themen erst dann geladen, wenn sie in den sichtbaren Bereich gescrollt werden",
|
||||
"scroll_to_my_post": "Zeige eigene Antwort nach dem Erstellen im Thema an",
|
||||
"follow_topics_you_reply_to": "Themen folgen, in denen auf dich geantwortet wird",
|
||||
"follow_topics_you_reply_to": "Themen folgen, auf die du antwortest",
|
||||
"follow_topics_you_create": "Themen folgen, die du erstellst",
|
||||
"grouptitle": "Wähle den anzuzeigenden Gruppen Titel aus",
|
||||
"grouptitle": "Gruppentitel",
|
||||
"no-group-title": "Kein Gruppentitel",
|
||||
"select-skin": "Einen Skin auswählen",
|
||||
"select-homepage": "Startseite",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "day",
|
||||
"digest.week": "week",
|
||||
"digest.month": "month",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "Νέο μήνυμα συνομιλίας από τον/την %1",
|
||||
"notif.chat.cta": "Κάνε κλικ εδώ για να πας στην συνομιλία",
|
||||
"notif.chat.unsub.info": "Αυτή η ειδοποίηση για συνομιλία σου στάλθηκε λόγω των ρυθμίσεών σου. ",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Το σύστημα φήμης έχει απενεργοποιηθεί.",
|
||||
"downvoting-disabled": "Η καταψήφιση έχει απενεργοποιηθεί",
|
||||
"not-enough-reputation-to-downvote": "Δεν έχεις αρκετή φήμη για να καταψηφίσεις αυτή την δημοσίευση",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Εργαλεία",
|
||||
"flag": "Σημαία",
|
||||
"locked": "Κλειδωμένο",
|
||||
"bookmark_instructions": "Click here to return to the last unread post in this thread.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Επισήμανση αυτής της δημοσίευσης για συντονισμό",
|
||||
"flag_success": "Αυτή η δημοσίευση έχει επισημανθεί για συντονισμό.",
|
||||
"deleted_message": "Το θέμα αυτό έχει διαγραφεί. Μόνο οι χρήστες με δικαιώματα διαχειριστή θεμάτων μπορούν να το δουν.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Open outgoing links in new tab",
|
||||
"enable_topic_searching": "Enable In-Topic Searching",
|
||||
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behaviour and allow you to search through the entire topic, instead of what is only shown on screen",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Follow topics that you reply to",
|
||||
"follow_topics_you_create": "Follow topics you create",
|
||||
"grouptitle": "Select the group title you would like to display",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "No group title",
|
||||
"select-skin": "Select a Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "day",
|
||||
"digest.week": "week",
|
||||
"digest.month": "month",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "New chat message received from %1",
|
||||
"notif.chat.cta": "Click here to continue the conversation",
|
||||
"notif.chat.unsub.info": "This chat notification was sent to you due to your subscription settings.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Reputation system is disabled.",
|
||||
"downvoting-disabled": "Downvoting is disabled",
|
||||
"not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Tools",
|
||||
"flag": "Flag",
|
||||
"locked": "Locked",
|
||||
"bookmark_instructions": "Click here to return to the last unread post in this thread.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Flag this post for moderation",
|
||||
"flag_success": "This post has been flagged for moderation.",
|
||||
"deleted_message": "This topic has been deleted. Only users with topic management privileges can see it.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Open outgoing links in new tab",
|
||||
"enable_topic_searching": "Enable In-Topic Searching",
|
||||
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behaviour and allow you to search through the entire topic, instead of what is only shown on screen",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Follow topics that you reply to",
|
||||
"follow_topics_you_create": "Follow topics you create",
|
||||
"grouptitle": "Select the group title you would like to display",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "No group title",
|
||||
"select-skin": "Select a Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
"no-email-to-confirm": "This forum requires email confirmation, please click here to enter an email",
|
||||
"email-confirm-failed": "We could not confirm your email, please try again later.",
|
||||
"confirm-email-already-sent": "Confirmation email already sent, please wait %1 minute(s) to send another one.",
|
||||
"sendmail-not-found": "The sendmail executable could not be found, please ensure it is installed and executable by the user running NodeBB.",
|
||||
|
||||
"username-too-short": "Username too short",
|
||||
"username-too-long": "Username too long",
|
||||
|
||||
@@ -6,5 +6,8 @@
|
||||
"selected": "Selected",
|
||||
"all": "All",
|
||||
"all_categories": "All categories",
|
||||
"topics_marked_as_read.success": "Topics marked as read!"
|
||||
"topics_marked_as_read.success": "Topics marked as read!",
|
||||
"all-topics": "All Topics",
|
||||
"new-topics": "New Topics",
|
||||
"watched-topics": "Watched Topics"
|
||||
}
|
||||
@@ -112,7 +112,7 @@
|
||||
"follow_topics_you_reply_to": "Follow topics that you reply to",
|
||||
"follow_topics_you_create": "Follow topics you create",
|
||||
|
||||
"grouptitle": "Select the group title you would like to display",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "No group title",
|
||||
|
||||
"select-skin": "Select a Skin",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "day",
|
||||
"digest.week": "week",
|
||||
"digest.month": "month",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "New chat message received from %1",
|
||||
"notif.chat.cta": "Click here to continue the conversation",
|
||||
"notif.chat.unsub.info": "This chat notification was sent to you due to your subscription settings.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Reputation system is disabled.",
|
||||
"downvoting-disabled": "Downvoting is disabled",
|
||||
"not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Open outgoing links in new tab",
|
||||
"enable_topic_searching": "Enable In-Topic Searching",
|
||||
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behavior and allow you to search through the entire topic, instead of what is only shown on screen",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Follow topics that you reply to",
|
||||
"follow_topics_you_create": "Follow topics you create",
|
||||
"grouptitle": "Select the group title you would like to display",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "No group title",
|
||||
"select-skin": "Select a Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "día",
|
||||
"digest.week": "semana",
|
||||
"digest.month": "mes",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "Nuevo mensaje de chat recibido de %1",
|
||||
"notif.chat.cta": "Haz click aquí para continuar la conversación",
|
||||
"notif.chat.unsub.info": "Esta notificación de chat se te envió debido a tus ajustes de suscripción.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "No tienes permiso para editar este mensaje",
|
||||
"cant-remove-last-user": "No puedes eliminar el último usuario",
|
||||
"cant-delete-chat-message": "No tienes permiso para eliminar este mensaje",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "El sistema de reputación está deshabilitado.",
|
||||
"downvoting-disabled": "La votación negativa está deshabilitada.",
|
||||
"not-enough-reputation-to-downvote": "No tienes suficiente reputación para votar negativo este post",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Herramientas",
|
||||
"flag": "Reportar",
|
||||
"locked": "Cerrado",
|
||||
"bookmark_instructions": "Clic aquí para regresar al último aporte sin leer en este hilo.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Reportar este mensaje",
|
||||
"flag_success": "Este mensaje ha sido reportado para moderación.",
|
||||
"deleted_message": "Este tema ha sido borrado. Solo los usuarios que tengan privilegios de administración de temas pueden verlo.",
|
||||
@@ -35,7 +35,7 @@
|
||||
"login_to_subscribe": "Por favor, conéctate para subscribirte a este tema.",
|
||||
"markAsUnreadForAll.success": "Publicación marcada como no leída para todos.",
|
||||
"mark_unread": "Marcar como no leído",
|
||||
"mark_unread.success": "Topic marked as unread.",
|
||||
"mark_unread.success": "Tema marcado como no leído.",
|
||||
"watch": "Seguir",
|
||||
"unwatch": "Dejar de seguir",
|
||||
"watch.title": "Serás notificado cuando haya nuevas respuestas en este tema",
|
||||
@@ -65,9 +65,9 @@
|
||||
"disabled_categories_note": "Las categorías deshabilitadas están en gris",
|
||||
"confirm_move": "Mover",
|
||||
"confirm_fork": "Dividir",
|
||||
"favourite": "Bookmark",
|
||||
"favourites": "Bookmarks",
|
||||
"favourites.has_no_favourites": "You haven't bookmarked any posts yet.",
|
||||
"favourite": "Marcador",
|
||||
"favourites": "Marcadores",
|
||||
"favourites.has_no_favourites": "No has marcado ningún tema aún.",
|
||||
"loading_more_posts": "Cargando más publicaciones",
|
||||
"move_topic": "Mover tema",
|
||||
"move_topics": "Mover temas",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"uploading-file": "Uploading the file...",
|
||||
"select-file-to-upload": "Select a file to upload!",
|
||||
"upload-success": "File uploaded successfully!",
|
||||
"maximum-file-size": "Maximum %1 kb"
|
||||
"uploading-file": "Subiendo el archivo...",
|
||||
"select-file-to-upload": "¡Selecciona un archivo para subir!",
|
||||
"upload-success": "¡Archivo subido correctamente!",
|
||||
"maximum-file-size": "Máximo %1 kb"
|
||||
}
|
||||
@@ -22,7 +22,7 @@
|
||||
"profile": "Perfil",
|
||||
"profile_views": "Visitas",
|
||||
"reputation": "Reputación",
|
||||
"favourites": "Bookmarks",
|
||||
"favourites": "Marcadores",
|
||||
"watched": "Suscritos",
|
||||
"followers": "Seguidores",
|
||||
"following": "Siguiendo",
|
||||
@@ -39,7 +39,7 @@
|
||||
"change_username": "Cambiar nombre de usuario",
|
||||
"change_email": "Cambiar email",
|
||||
"edit": "Editar",
|
||||
"edit-profile": "Edit Profile",
|
||||
"edit-profile": "Editar Perfil",
|
||||
"default_picture": "Icono por defecto",
|
||||
"uploaded_picture": "Imagen subida",
|
||||
"upload_new_picture": "Subir nueva imagen",
|
||||
@@ -56,11 +56,11 @@
|
||||
"password": "Contraseña",
|
||||
"username_taken_workaround": "El nombre de usuario que has solicitada ya está siendo usado, por tanto lo hemos alterado ligeramente. Ahora eres conocido como <strong>%1</strong>.",
|
||||
"password_same_as_username": "Tu Constraseña es igual al nombre de Usuario, por favor seleccione otra Constraseña.",
|
||||
"password_same_as_email": "Your password is the same as your email, please select another password.",
|
||||
"password_same_as_email": "Tu contraseña es igual que tu dirección de correo, por favor elige otra contraseña.",
|
||||
"upload_picture": "Subir foto",
|
||||
"upload_a_picture": "Subir una foto",
|
||||
"remove_uploaded_picture": "Borrar Imagen subida",
|
||||
"upload_cover_picture": "Upload cover picture",
|
||||
"upload_cover_picture": "Subir imagen de portada",
|
||||
"settings": "Opciones",
|
||||
"show_email": "Mostrar mi correo electrónico",
|
||||
"show_fullname": "Mostrar mi nombre completo",
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Abrir los enlaces externos en una nueva pestaña",
|
||||
"enable_topic_searching": "Activar la búsqueda \"in-topic\"",
|
||||
"topic_search_help": "Si está activada, la búsqueda 'in-topic' sustituirá el comportamiento por defecto del navegador y le permitirá buscar en el tema al completo, en vez de hacer una búsqueda únicamente sobre el contenido mostrado en pantalla",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"delay_image_loading": "Retrasar la carga de imágenes",
|
||||
"image_load_delay_help": "Si se habilita, las imágenes no cargarán hasta que se vean en pantalla",
|
||||
"scroll_to_my_post": "Luego de enviar una respuesta, mostrar el nuevo mensaje",
|
||||
"follow_topics_you_reply_to": "Seguir los temas en los que respondes",
|
||||
"follow_topics_you_create": "Seguir publicaciones que creas",
|
||||
"grouptitle": "Selecciona el título del grupo que deseas visualizar",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "Sin título de grupo",
|
||||
"select-skin": "Seleccionar una plantilla",
|
||||
"select-homepage": "Seleccione una Página de inicio",
|
||||
|
||||
@@ -16,5 +16,5 @@
|
||||
"unread_topics": "Temas no leídos",
|
||||
"categories": "Categorías ",
|
||||
"tags": "Etiquetas",
|
||||
"no-users-found": "No users found!"
|
||||
"no-users-found": "¡No se encontraron usuarios!"
|
||||
}
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "päev",
|
||||
"digest.week": "nädal",
|
||||
"digest.month": "kuu",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "Sulle on saabunud uus sõnum kasutajalt %1",
|
||||
"notif.chat.cta": "Vajuta siia, et jätkata vestlusega",
|
||||
"notif.chat.unsub.info": "See chat teavitus on saadetud teile tellimuse seadistuse tõttu.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "Sul ei ole lubatud antud sõnumit muuta",
|
||||
"cant-remove-last-user": "Sa ei saa viimast kasutajat eemaldada",
|
||||
"cant-delete-chat-message": "Sul ei ole lubatud antud sõnumit kustutada",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Reputatsiooni süsteem ei ole aktiveeritud",
|
||||
"downvoting-disabled": "Negatiivsete häälte andmine ei ole võimaldatud",
|
||||
"not-enough-reputation-to-downvote": "Sul ei ole piisavalt reputatsiooni, et anda negatiivset hinnangut sellele postitusele.",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Tööriistad",
|
||||
"flag": "Märgista",
|
||||
"locked": "Lukustatud",
|
||||
"bookmark_instructions": "Kliki siia, et naasta viimasele lugemata postitusele selles teemas.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Märgista see postitus modereerimiseks",
|
||||
"flag_success": "See postitus on nüüd märgistatud modereerimiseks.",
|
||||
"deleted_message": "See teema on kustutatud. Ainult kasutajad kellel on piisavalt õigusi saavad seda näha.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Ava väljaminevad lingid uues aknas",
|
||||
"enable_topic_searching": "Võimalda teemasisene otsing",
|
||||
"topic_search_help": "Kui see on sisse lükatud, siis teemasisene otsing võtab üle brauseri tavapärase otsingu ning võimaldab otsida ainult ekraanile mahtuva teema asemel terve teema ulatuses.",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Järgi teemasid, millele olete vastanud.",
|
||||
"follow_topics_you_create": "Järgi teemasi, mis on teie loodud.",
|
||||
"grouptitle": "Vali grupile tiitel mida kuvada soovid",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "Grupi tiitel puudub",
|
||||
"select-skin": "Vali välimus",
|
||||
"select-homepage": "Vali avaleht",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "روز",
|
||||
"digest.week": "هفته",
|
||||
"digest.month": "ماه",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "پیام چتی جدیدی از %1 دریافت شد",
|
||||
"notif.chat.cta": "برای ادامهی چت اینجا کلیک کنید",
|
||||
"notif.chat.unsub.info": "این اطلاعیه ی چتیی که برای شما فرستاده شده به علت تنظیمات اشترک شماست.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "شما اجازه ی ویرایش این پیام را ندارید",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "سیستم اعتبار غیر فعال شده است",
|
||||
"downvoting-disabled": "رأی منفی غیر فعال شده است",
|
||||
"not-enough-reputation-to-downvote": "شما اعتبار کافی برای دادن رأی منفی به این پست را ندارید.",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "ابزارها",
|
||||
"flag": "پرچم",
|
||||
"locked": "قفل شده است",
|
||||
"bookmark_instructions": "برای بازگشت به آخرین پست خوانده نشده در این دسته اینجا کلیک کنید",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "پرچمگذاری این موضوع برای بررسی ناظران",
|
||||
"flag_success": "این موضوع برای بررسی ناظران پرچم گذاشته شد.",
|
||||
"deleted_message": "این موضوع پاک شده است. تنها کاربرانِ با حق مدیریت موضوع میتوانند آن را ببینند.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "پیوندهای به بیرون را در برگ جدید باز کن",
|
||||
"enable_topic_searching": "فعال کردن جستجوی داخل-موضوع",
|
||||
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behaviour and allow you to search through the entire topic, instead of what is only shown on screen",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "تاپیک هایی که پاسخ داده ای را دنبال کن",
|
||||
"follow_topics_you_create": "موضوع هایی که ایجاد کرده ای را دنبال کن",
|
||||
"grouptitle": "عنوان گروهی که میخواهید نشان داده شود را انتخاب کنید.",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "عنوان گروهی نیست",
|
||||
"select-skin": "Select a Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "päivä",
|
||||
"digest.week": "viikko",
|
||||
"digest.month": "kuukausi",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "Uusi chatviesti henkilöltä %1",
|
||||
"notif.chat.cta": "Click here to continue the conversation",
|
||||
"notif.chat.unsub.info": "This chat notification was sent to you due to your subscription settings.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Reputation system is disabled.",
|
||||
"downvoting-disabled": "Downvoting is disabled",
|
||||
"not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Työkalut",
|
||||
"flag": "Ilmianna",
|
||||
"locked": "Lukittu",
|
||||
"bookmark_instructions": "Click here to return to the last unread post in this thread.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Ilmianna tämä viesti moderaattoreille",
|
||||
"flag_success": "Tämä viesti ilmiannettiin moderaattoreille.",
|
||||
"deleted_message": "Tämä aihe on poistettu. Vain käyttäjät, joilla on aiheen hallintaoikeudet, voivat nähdä sen.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Open outgoing links in new tab",
|
||||
"enable_topic_searching": "Salli aiheen sisäiset haut",
|
||||
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behaviour and allow you to search through the entire topic, instead of what is only shown on screen",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Follow topics that you reply to",
|
||||
"follow_topics_you_create": "Follow topics you create",
|
||||
"grouptitle": "Select the group title you would like to display",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "No group title",
|
||||
"select-skin": "Select a Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "jour",
|
||||
"digest.week": "semaine",
|
||||
"digest.month": "mois",
|
||||
"digest.subject": "Compte-rendu pour %1",
|
||||
"notif.chat.subject": "Nouveau message de chat reçu de %1",
|
||||
"notif.chat.cta": "Cliquez ici pour continuer la conversation",
|
||||
"notif.chat.unsub.info": "Cette notification de chat a été envoyé en raison de vos paramètres d'abonnement.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"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-delete-chat-message": "Vous n'avez pas l'autorisation de supprimer ce message",
|
||||
"already-voting-for-this-post": "Vous avez déjà voté pour ce message.",
|
||||
"reputation-system-disabled": "Le système de réputation est désactivé",
|
||||
"downvoting-disabled": "Les votes négatifs ne sont pas autorisés",
|
||||
"not-enough-reputation-to-downvote": "Vous n'avez pas une réputation assez élevée pour noter négativement ce message",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Outils",
|
||||
"flag": "Signaler",
|
||||
"locked": "Verrouillé",
|
||||
"bookmark_instructions": "Cliquez ici pour retourner au dernier message non lu dans ce fil de discussion.",
|
||||
"bookmark_instructions": "Cliquez ici pour retourner au dernier message lu de ce fil.",
|
||||
"flag_title": "Signaler ce message à la modération",
|
||||
"flag_success": "Ce message a bien été signalé aux modérateurs.",
|
||||
"deleted_message": "Ce sujet a été supprimé. Seuls les utilisateurs avec les droits d'administration peuvent le voir.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Ouvrir les liens externes dans un nouvel onglet",
|
||||
"enable_topic_searching": "Activer la recherche dans les sujets",
|
||||
"topic_search_help": "Une fois activé, la recherche dans les sujets va remplacer la recherche de page du navigateur et vous permettra de rechercher dans l'intégralité d'un sujet au lieu des seuls posts affichés à l'écran.",
|
||||
"delay_image_loading": "Délayer le chargement des images",
|
||||
"image_load_delay_help": "Lorsque cette option est activée, les images des sujets ne seront pas chargées avant qu'elles soient visibles dans la fenêtre.",
|
||||
"scroll_to_my_post": "Après avoir répondu, montrer le nouveau message",
|
||||
"follow_topics_you_reply_to": "Suivre les sujets auxquels vous répondez",
|
||||
"follow_topics_you_create": "Suivre les sujets que vous créez",
|
||||
"grouptitle": "Sélectionnez le titre de groupe que vous souhaitez afficher",
|
||||
"grouptitle": "Nom du groupe",
|
||||
"no-group-title": "Aucun titre de groupe",
|
||||
"select-skin": "Sélectionner un thème",
|
||||
"select-homepage": "Sélectionner une page d'accueil",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "día",
|
||||
"digest.week": "semana",
|
||||
"digest.month": "mes",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "Nova charla recibida de %1",
|
||||
"notif.chat.cta": "Pica aquí para continuar a conversación",
|
||||
"notif.chat.unsub.info": "Esta notificación de charla foiche enviada polas túas opcións de subscrición.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "Non tes permitido editar esta mensaxe.",
|
||||
"cant-remove-last-user": "Non podes quitar o último usuario",
|
||||
"cant-delete-chat-message": "Non tes permitido borrar esta mensaxe.",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "O sistema de reputación está deshabilitado",
|
||||
"downvoting-disabled": "Os votos negativos están deshabilitados",
|
||||
"not-enough-reputation-to-downvote": "Non tes reputación dabonda para esta acción",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Ferramentas",
|
||||
"flag": "Reportar",
|
||||
"locked": "Pechado",
|
||||
"bookmark_instructions": "Clic aquí para ir á última publicación sen ler neste tema. ",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Reportar esta mensaxe",
|
||||
"flag_success": "Esta mensaxe foi reportada para moderación.",
|
||||
"deleted_message": "Este tema foi borrado. Só os usuarios con privilexios administrativos poden velo.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Abrir ligazóns externos nunca nova pestaña",
|
||||
"enable_topic_searching": "Permitir buscar dentro dun tema",
|
||||
"topic_search_help": "Se se activa, o buscador do NodeBB superporase ao propio do navegador dentro de cada tema, permitindo buscar en todo o tema e non só naquilo que se presenta na pantalla.",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Segui-los temas nos que respostas",
|
||||
"follow_topics_you_create": "Segui-los temas que ti fas",
|
||||
"grouptitle": "Escolle o título de grupo que che gustaría amosar",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "Sen titulo de grupo",
|
||||
"select-skin": "Seleccionar apariencia",
|
||||
"select-homepage": "Escolla unha páxina de inicio",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "יום",
|
||||
"digest.week": "שבוע",
|
||||
"digest.month": "חודש",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "הודעת צ'אט חדשה התקבלה מ%1",
|
||||
"notif.chat.cta": "לחץ כאן כדי להמשיך את השיחה",
|
||||
"notif.chat.unsub.info": "התראה הצ'אט הזו נשלחה אליך על-פי הגדרות החשבון שלך.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "אתה לא רשאי לערוך הודעה זו",
|
||||
"cant-remove-last-user": "אינך יכול למחוק את המשתמש האחרון",
|
||||
"cant-delete-chat-message": "אתה לא רשאי למחוק הודעה זו",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "מערכת המוניטין לא פעילה.",
|
||||
"downvoting-disabled": "היכולת להצביע נגד לא פעילה",
|
||||
"not-enough-reputation-to-downvote": "אין לך מספיק מוניטין כדי להוריד את הדירוג של פוסט זה",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "כלים",
|
||||
"flag": "דווח",
|
||||
"locked": "נעול",
|
||||
"bookmark_instructions": "לחץ כאן כדי לחזור לפוסט האחרון שלא קראת באשכול זה",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "דווח על פוסט זה למנהל",
|
||||
"flag_success": "התקבל דיווח על פוסט זה.",
|
||||
"deleted_message": "נושא זה נמחק. רק משתמשים עם ההרשאות המתאימות יכולים לצפות בו.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "פתח קישורים חיצוניים בכרטיסייה חדשה",
|
||||
"enable_topic_searching": "הפעל חיפוש בתוך נושא",
|
||||
"topic_search_help": "אם מאופשר, החיפוש בתוך הנושא יעקוף את שיטת החיפוש של הדפדפן, ויאפשר לך לחפש בכל הנושא - ולא רק במה שמוצג על המסך",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "עקוב אחרת נושאים שהגבת בהם",
|
||||
"follow_topics_you_create": "עקוב אחר נושאים שיצרת",
|
||||
"grouptitle": "בחר את כותרת הקבוצה שברצונך להציג",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "ללא כותרת לקבוצה",
|
||||
"select-skin": "בחר מראה",
|
||||
"select-homepage": "בחר דף בית",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "day",
|
||||
"digest.week": "week",
|
||||
"digest.month": "month",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "Új chat üzenet érkezett a következőtől: %1",
|
||||
"notif.chat.cta": "Kattints ide a beszélgetés folytatásához",
|
||||
"notif.chat.unsub.info": "Ez a chat-értesítés a feliratkozási beállításaid miatt lett kiküldve.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Hírnév funkció kikapcsolva.",
|
||||
"downvoting-disabled": "Leszavazás funkció kikapcsolva",
|
||||
"not-enough-reputation-to-downvote": "Nem rendelkezel elég Hírnév ponttal, hogy leszavazhasd ezt a hozzászólást",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Eszközök",
|
||||
"flag": "Jelentés",
|
||||
"locked": "Locked",
|
||||
"bookmark_instructions": "Click here to return to the last unread post in this thread.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "A hozzászólás jelentése a moderátoroknál",
|
||||
"flag_success": "This post has been flagged for moderation.",
|
||||
"deleted_message": "This topic has been deleted. Only users with topic management privileges can see it.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Open outgoing links in new tab",
|
||||
"enable_topic_searching": "Témán belüli keresés bekapcsolása",
|
||||
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behaviour and allow you to search through the entire topic, instead of what is only shown on screen",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Follow topics that you reply to",
|
||||
"follow_topics_you_create": "Follow topics you create",
|
||||
"grouptitle": "Select the group title you would like to display",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "No group title",
|
||||
"select-skin": "Select a Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "day",
|
||||
"digest.week": "week",
|
||||
"digest.month": "month",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "Pesan yang baru diterima dari %1",
|
||||
"notif.chat.cta": "Klik di sini untuk melanjutkan percakapan",
|
||||
"notif.chat.unsub.info": "Sesuai pengaturan langganan anda, notifikasi obrolan ini dikirmkan kepada anda",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Sistem reputasi ditiadakan.",
|
||||
"downvoting-disabled": "Downvoting ditiadakan",
|
||||
"not-enough-reputation-to-downvote": "Tidak cukup reputation untuk downvote post ini",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Perangkat",
|
||||
"flag": "Tandai",
|
||||
"locked": "Terkunci",
|
||||
"bookmark_instructions": "Click here to return to the last unread post in this thread.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Tandai posting ini untuk moderasi",
|
||||
"flag_success": "Posting ini telah ditandai untuk moderasi",
|
||||
"deleted_message": "Topik ini telah dihapus. Hanya pengguna dengan hak manajemen topik yang dapat melihatnya.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Open outgoing links in new tab",
|
||||
"enable_topic_searching": "Gunakan Pencarian Di dalam Topik",
|
||||
"topic_search_help": "If enabled, in-topic searching will override the browser's default page search behaviour and allow you to search through the entire topic, instead of what is only shown on screen",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Follow topics that you reply to",
|
||||
"follow_topics_you_create": "Follow topics you create",
|
||||
"grouptitle": "Select the group title you would like to display",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "No group title",
|
||||
"select-skin": "Select a Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "day",
|
||||
"digest.week": "week",
|
||||
"digest.month": "month",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "Nuovo messaggio in chat da %1",
|
||||
"notif.chat.cta": "Clicca qui per continuare la conversazione",
|
||||
"notif.chat.unsub.info": "Questa notifica di chat ti è stata inviata perché l'hai scelta nelle impostazioni.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Il sistema di reputazione è disabilitato.",
|
||||
"downvoting-disabled": "Il Downvoting è disabilitato",
|
||||
"not-enough-reputation-to-downvote": "Non hai i privilegi per votare negativamente questo post",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Strumenti",
|
||||
"flag": "Segnala",
|
||||
"locked": "Bloccato",
|
||||
"bookmark_instructions": "Clicca qui per tornare all'ultimo post non letto in questo thread",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Segnala questo post per la moderazione",
|
||||
"flag_success": "Questo post è stato contrassegnato per la moderazione.",
|
||||
"deleted_message": "Questa discussione è stata cancellata. Solo gli utenti con diritti di gestione possono vederla.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Apri i link web in una nuova pagina",
|
||||
"enable_topic_searching": "Abilita la ricerca negli argomenti",
|
||||
"topic_search_help": "Se abilitata, la ricerca negli argomenti ignorerà il comportamento predefinito del browser per consentirti di cercare all'interno delle discussioni, anziché soltanto nel contenuto visibile a schermo",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Segui le discussioni a cui hai risposto",
|
||||
"follow_topics_you_create": "Segui le discussioni che hai iniziato",
|
||||
"grouptitle": "Seleziona il titolo del gruppo che vorresti vedere",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "Nessun titolo al gruppo",
|
||||
"select-skin": "Seleziona uno Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "日",
|
||||
"digest.week": "週",
|
||||
"digest.month": "月",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "%1さんからの新しいチャットメッセージがあります。",
|
||||
"notif.chat.cta": "クリックして会話を続ける",
|
||||
"notif.chat.unsub.info": "このチャットの通知はあなたの購読設定により送られました。",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Reputation system is disabled.",
|
||||
"downvoting-disabled": "Downvoting is disabled",
|
||||
"not-enough-reputation-to-downvote": "You do not have enough reputation to downvote this post",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "日本語",
|
||||
"code": "ja_JP",
|
||||
"code": "ja",
|
||||
"dir": "ltr"
|
||||
}
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "ツール",
|
||||
"flag": "フラグ",
|
||||
"locked": "ロック",
|
||||
"bookmark_instructions": "ここを押して、最後の未読の投稿戻ります",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "リポートする",
|
||||
"flag_success": "このポストをリポートしました。",
|
||||
"deleted_message": "このトピックが削除されました。トピック管理権を持っているユーザーにしか読めません。",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "外リンクを新しいタブに開きます",
|
||||
"enable_topic_searching": "インートピックの検索を有効にします",
|
||||
"topic_search_help": "有効にしたら、インートピックの検索はブラウザの既定機能を無視して、スクリーンに示したよりトピック内からの全部を検索します",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "返信したトピックをフォローします",
|
||||
"follow_topics_you_create": "投稿したトピックをフォローします",
|
||||
"grouptitle": "好きなグループ名を選んで下さい",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "グループ名がありません",
|
||||
"select-skin": "スキンを選んで下さい",
|
||||
"select-homepage": "ホームページを選んで下さい",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "일",
|
||||
"digest.week": "주",
|
||||
"digest.month": "월",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "%1님이 대화 메시지를 보냈습니다.",
|
||||
"notif.chat.cta": "대화를 계속하려면 여기를 클릭하세요.",
|
||||
"notif.chat.unsub.info": "이 대화 알림은 사용자의 구독 설정에 따라 전송되었습니다.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "편집 할 수 있는 권한이 없습니다.",
|
||||
"cant-remove-last-user": "마지막 사용자를 삭제할 수 없습니다.",
|
||||
"cant-delete-chat-message": "메세지를 지울 권한이 없습니다.",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "인지도 기능이 비활성 상태입니다.",
|
||||
"downvoting-disabled": "비추천 기능이 비활성 상태입니다.",
|
||||
"not-enough-reputation-to-downvote": "인지도가 낮아 이 게시물에 반대할 수 없습니다.",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "도구",
|
||||
"flag": "신고",
|
||||
"locked": "잠김",
|
||||
"bookmark_instructions": "여기를 누르면 마지막으로 읽지 않은 포스트로 이동합니다.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "이 게시물을 신고",
|
||||
"flag_success": "이 게시물은 신고되었습니다.",
|
||||
"deleted_message": "이 주제는 삭제되었습니다. 주제 관리 권한이 있는 사용자만 볼 수 있습니다.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "외부 링크를 새로운 탭을 사용하여 열람",
|
||||
"enable_topic_searching": "주제 내 검색 허용",
|
||||
"topic_search_help": "활성화 된후 브라우저의 기본 페이지 검색 기능을 연관 주제 검색 기능으로 대신하고 화면에 보여지는 것 뿐만 아니라 주제와 연관된 모든것을 검색합니다.",
|
||||
"delay_image_loading": "이미지 로딩 지연",
|
||||
"image_load_delay_help": "활성화 되면 이미지 위치로 스크롤을 움직이기 전까지 이미지가 로드 되지 않습니다.",
|
||||
"scroll_to_my_post": "답글 게시 후 새 포스트 보여주기",
|
||||
"follow_topics_you_reply_to": "답글 단 게시물을 팔로우 합니다.",
|
||||
"follow_topics_you_create": "생성한 주제를 팔로우 합니다.",
|
||||
"grouptitle": "표시할 그룹 이름을 선택하세요.",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "그룹 이름이 없습니다.",
|
||||
"select-skin": "스킨 선택",
|
||||
"select-homepage": "홈페이지 선택",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "day",
|
||||
"digest.week": "week",
|
||||
"digest.month": "month",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "Nauja pokalbio žinutė gauta iš %1",
|
||||
"notif.chat.cta": "Pokalbio pratęsimui spauskite čia",
|
||||
"notif.chat.unsub.info": "Šios žinutės perpėjimas buvo išsiųstas į tavo prenumeratos nustatymus",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "You are not allowed to edit this message",
|
||||
"cant-remove-last-user": "You can't remove the last user",
|
||||
"cant-delete-chat-message": "You are not allowed to delete this message",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Reputacijos sistema išjungta.",
|
||||
"downvoting-disabled": "Downvoting yra išjungtas",
|
||||
"not-enough-reputation-to-downvote": "Jūs neturite pakankamai reputacijos balsuoti prieš šį pranešimą",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Įrankiai",
|
||||
"flag": "Pažymėti",
|
||||
"locked": "Užrakinta",
|
||||
"bookmark_instructions": "Click here to return to the last unread post in this thread.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Pažymėti ši pranešimą moderatoriams",
|
||||
"flag_success": "Šis pranešimas buvo pažymėtas moderatorių patikrinimui.",
|
||||
"deleted_message": "Ši tema buvo ištrinta. Tik Vartotojai su temos redagavimo privilegijomis gali matyti ja",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Atidaryti išeinančias nuorodas naujam skirtuke",
|
||||
"enable_topic_searching": "Įjungti Temų Ieškojimą ",
|
||||
"topic_search_help": "Jeigu įjungtas, temų ieškojimas, nepaisys naršyklės puslapio ieškojimo, ir pradės ieškoti tik toje temoje kuri bus rodoma ekrane",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Sekti tas temas kur atrašai tu",
|
||||
"follow_topics_you_create": "Sekti tas temas kurias sukuri tu",
|
||||
"grouptitle": "Pasirinkite grupės pavadinimą kurį norėtumėte kad atvaizduotu",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "Nėra grupės pavadinimo",
|
||||
"select-skin": "Select a Skin",
|
||||
"select-homepage": "Select a Homepage",
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"digest.day": "day",
|
||||
"digest.week": "week",
|
||||
"digest.month": "month",
|
||||
"digest.subject": "Digest for %1",
|
||||
"notif.chat.subject": "Pesanan baru diterima dari %1",
|
||||
"notif.chat.cta": "Klik sini untuk meneruskan perbualan",
|
||||
"notif.chat.unsub.info": "Pemberitahuan sembang ini dihantar berdasarkan tetapan langganan anda.",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"cant-edit-chat-message": "Anda tidak dibenarkan menyunting mesej ini",
|
||||
"cant-remove-last-user": "Anda tidak boleh membuang pengguna akhir",
|
||||
"cant-delete-chat-message": "Anda tidak dibenarkan memadamkan mesej ini",
|
||||
"already-voting-for-this-post": "You have already voted for this post.",
|
||||
"reputation-system-disabled": "Sistem reputasi dilumpuhkan.",
|
||||
"downvoting-disabled": "Undi turun dilumpuhkan",
|
||||
"not-enough-reputation-to-downvote": "Anda tidak mempunyai reputasi mencukupi untuk mengundi turun kiriman ini",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"tools": "Perkakas",
|
||||
"flag": "Tanda",
|
||||
"locked": "Kunci",
|
||||
"bookmark_instructions": "Klik disini untuk kembali ke kiriman terakhir yang anda telah baca di thread ini.",
|
||||
"bookmark_instructions": "Click here to return to the last read post in this thread.",
|
||||
"flag_title": "Tanda kiriman ini untuk diselia",
|
||||
"flag_success": "Kiriman ini telah ditandakan untuk diselia",
|
||||
"deleted_message": "Topik ini telah dipadam. Hanya pengguna dengan kuasa pengurusan boleh melihatnya.",
|
||||
|
||||
@@ -92,10 +92,12 @@
|
||||
"open_links_in_new_tab": "Buka pautan luar di tab yang baru",
|
||||
"enable_topic_searching": "Aktifkan Pencarian Dalam-Topik",
|
||||
"topic_search_help": "Jika diaktifkan, pencarian dalam-topik akan membatalkan fungsi asal pencarian pelayan dan membenarkan anda untuk mencari seluruh topik, daripada menunjukkan apa yang terdapat pada skrin sahaja",
|
||||
"delay_image_loading": "Delay Image Loading",
|
||||
"image_load_delay_help": "If enabled, images in topics will not load until they are scrolled into view",
|
||||
"scroll_to_my_post": "After posting a reply, show the new post",
|
||||
"follow_topics_you_reply_to": "Ikut topik yang anda balas",
|
||||
"follow_topics_you_create": "Ikut topik yang anda buat",
|
||||
"grouptitle": "Pilih nama kumpulan yang anda ingin tunjukkan",
|
||||
"grouptitle": "Group Title",
|
||||
"no-group-title": "Tiada nama kumpulan",
|
||||
"select-skin": "Pilih skin",
|
||||
"select-homepage": "Pilih Laman Utama",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user