diff --git a/install/package.json b/install/package.json
index 2ae58d3e48..89e8b32a6b 100644
--- a/install/package.json
+++ b/install/package.json
@@ -63,7 +63,7 @@
"mongodb": "3.0.8",
"morgan": "^1.9.0",
"mousetrap": "^1.6.1",
- "mubsub": "^1.4.0",
+ "mubsub-nbb": "^1.5.0",
"nconf": "^0.10.0",
"nodebb-plugin-composer-default": "6.0.23",
"nodebb-plugin-dbsearch": "2.0.16",
diff --git a/install/web.js b/install/web.js
index ea24d25fb2..c05f2ba849 100644
--- a/install/web.js
+++ b/install/web.js
@@ -25,7 +25,8 @@ winston.add(winston.transports.File, {
level: 'verbose',
});
-var web = {};
+var web = module.exports;
+
var scripts = [
'node_modules/jquery/dist/jquery.js',
'public/vendor/xregexp/xregexp.js',
@@ -34,6 +35,10 @@ var scripts = [
'public/src/installer/install.js',
];
+var installing = false;
+var success = false;
+var error = false;
+
web.install = function (port) {
port = port || 4567;
winston.info('Launching web installer on port', port);
@@ -103,15 +108,20 @@ function welcome(req, res) {
skipGeneralSetup: !!nconf.get('url'),
databases: databases,
skipDatabaseSetup: !!nconf.get('database'),
- error: !!res.locals.error,
- success: !!res.locals.success,
+ error: error,
+ success: success,
values: req.body,
minimumPasswordLength: defaults.minimumPasswordLength,
+ installing: installing,
});
}
function install(req, res) {
+ if (installing) {
+ return welcome(req, res);
+ }
req.setTimeout(0);
+ installing = true;
var setupEnvVars = nconf.get();
for (var i in req.body) {
if (req.body.hasOwnProperty(i) && !process.env.hasOwnProperty(i)) {
@@ -140,11 +150,9 @@ function install(req, res) {
});
child.on('close', function (data) {
- if (data === 0) {
- res.locals.success = true;
- } else {
- res.locals.error = true;
- }
+ installing = false;
+ success = data === 0;
+ error = data !== 0;
welcome(req, res);
});
@@ -264,5 +272,3 @@ function loadDefaults(next) {
next();
});
}
-
-module.exports = web;
diff --git a/public/language/bg/user.json b/public/language/bg/user.json
index f1743f6626..6fd31f1091 100644
--- a/public/language/bg/user.json
+++ b/public/language/bg/user.json
@@ -150,8 +150,8 @@
"consent.lead": "Този обществен форум събира и обработва лична информация.",
"consent.intro": "Използваме тази информация, само за да персонализираме взаимодействието Ви с форума, както и за да свържем публикациите Ви с Вашия потребителски акаунт. По време на регистрацията ще трябва да въведете потребителско име и е-поща, но ако искате, можете да предоставите и допълнителна информация, за да завършите потребителския си профил в уеб сайта.
Ние съхраняваме тази информация докато съществува потребителският Ви акаунт. Във всеки един момент можете да оттеглите съгласието си за това, като изтриете акаунта си. Във всеки един момент можете да изискате копие на въведеното от Вас в уеб сайт, чрез страницата за „Права и съгласие“.
Ако имате въпроси или притеснения, можете да се свържете с екипа от администратори на форума.",
"consent.email_intro": "Понякога може да изпращаме е-писма на регистрираната Ви е-поща, за да Ви кажем какво се случва, или да Ви уведомим, че има нещо ново, което Ви засяга. Можете да персонализирате честотата на резюметата (както и да ги изключите), както и да изберете какви известия да получавате по е-поща, чрез страницата с потребителските настройки.",
- "consent.digest_frequency": "Unless explicitly changed in your user settings, this community delivers email digests every %1.",
- "consent.digest_off": "Unless explicitly changed in your user settings, this community does not send out email digests",
+ "consent.digest_frequency": "Освен ако не промените това в потребителските си настройки, тази общност ще Ви изпраща резюмета по е-поща на всеки %1.",
+ "consent.digest_off": "Освен ако не промените това в потребителските си настройки, тази общност няма да Ви изпраща резюмета по е-поща.",
"consent.received": "Вие сте се съгласили с това уеб сайтът да събира и обработва личната Ви информация. Не се изискват допълнителни действия.",
"consent.not_received": "Вие не сте се съгласили със събирането и обработването на Ваши данни. Администрацията на уеб сайта може по всяко време да изтрие акаунта Ви, за да спази изискванията за защита на данните.",
"consent.give": "Даване на съгласие",
diff --git a/public/language/cs/user.json b/public/language/cs/user.json
index 2a34de4c17..55230bad6d 100644
--- a/public/language/cs/user.json
+++ b/public/language/cs/user.json
@@ -150,8 +150,8 @@
"consent.lead": "Toto komunitní fórum sbírá zpracovává vaše osobní údaje.",
"consent.intro": "Tyto informace používáme pouze pro peronizaci vašich zkušeností v této komunitě, stejně tak k rozpoznání příspěvků, které jste pod uživatelským účtem vytvořil. Během jednotlivých registračních kroků budete požádán/a o zadání Vašeho uživatelského jména a e-mailové adresy. Můžete také dobrovolně poskytnout některé dodatečné informace do vašeho profilu na webové stránce.Tyto informace uchováváme po dobu životnosti vašeho uživatelského účtu a Vy můžete kdykoliv zrušit tento svůj souhlas smazáním vašeho účtu. Kdykoli můžete požadovat kopii svých příspěvků na této webové stránce pomocí stránky „Práva a souhlas”
Máte-li nějaké otázky nebo obavy, obraťte se na tým správců fóra.",
"consent.email_intro": "Občas Vám zašleme zprávu na vaši registrovanou e-mailovou schránku za účelem poskytnutí přehledu novinek a/nebo Vám oznámíme o nových příspěvcích, které jsou pro vás relevantní. Časový přehled novinek si můžete kdykoliv upravit (popřípadě ho zakázat), stejně tak vybrat, které typy oznámení chcete dostávat na e-mail. Docílíte toho v uživatelském nastavení.",
- "consent.digest_frequency": "Unless explicitly changed in your user settings, this community delivers email digests every %1.",
- "consent.digest_off": "Unless explicitly changed in your user settings, this community does not send out email digests",
+ "consent.digest_frequency": "Není-li ve vašem uživatelském nastavení uvedeno jinak, tato komunita rozesílá e-mailový přehled každých %1.",
+ "consent.digest_off": "Není-li ve vašem uživatelském nastavení uvedeno jinak, tato komunita nerozesílá e-mailové přehledy",
"consent.received": "Souhlasil/a jste, že tato stránka může shromažďovat a zpracovávat informace o Vás. Žádný dodatečný úkon není třeba.",
"consent.not_received": "Neposkytl/a jste souhlas se sběrem a zpracováním dat. V tuto chvíly tato webová stránka a její tým správců může smazat váš účet za účelem naplnění zákona „Obecné nařízení o ochraně osobních údajů (GDPR)”.",
"consent.give": "Dát souhlas",
diff --git a/public/language/de/user.json b/public/language/de/user.json
index f1fc178fb8..53a22b7cbc 100644
--- a/public/language/de/user.json
+++ b/public/language/de/user.json
@@ -150,8 +150,8 @@
"consent.lead": "Dieses Community-Forum sammelt und verarbeitet deine persönlichen Daten.",
"consent.intro": "Wir nutzen diese Daten ausschließlich um dein Erlebnis in dieser Community persönlicher zu gestalten, sowie um deine Beiträge mit deinem Account zu verknüpfen. Während der Registration wurdes du nach einem Benutzernamen und einer EMail-Adresse gefragt. Optional kannst du weitere Informationen bereitstellen um dein Profil auf dieser Website zu vervollständigen.
Wir behalten diese Informationen für die Lebensdauer deines Accounts, womit du jederzeit in der Lage bist deine Zustimmung durch löschen deines Accounts zu widerrufen. Du kannst jederzeit eine Kopie deiner Daten über deine Rechte & Zustimmungen-Seite anfordern.
Solltest du Fragen oder Bedenken haben, melde dich gerne bei den Administratoren dieses Forums.",
"consent.email_intro": "Gelegentlich werden wir EMails zu deiner registrierten EMail Adresse senden um dich über generelles oder dich direkt betreffendes auf dem Laufenden zu halten. Auf deiner Benutzer-Einstellungen-Seite kannst du die häufigkeit dieser Benachrichtigungen Einstellen (sogar komplett deaktivieren), sowie auswählen, welche Art von Benachrichtigungen du erhalten möchtest.",
- "consent.digest_frequency": "Unless explicitly changed in your user settings, this community delivers email digests every %1.",
- "consent.digest_off": "Unless explicitly changed in your user settings, this community does not send out email digests",
+ "consent.digest_frequency": "Sofern nicht explizit in Ihren Benutzereinstellungen geändert, werden alle %1 Zusammenfassungen per E-Mail versandt.",
+ "consent.digest_off": "Sofern in Ihren Benutzereinstellungen nicht explizit geändert, werden keine Zusammenfassungen per E-Mail versandt.",
"consent.received": "Du hast zugestimmt, dass diese Website deine Persönlichen Daten sammeln und verarbeiten darf. Es ist keine weitere Aktion erforderlich.",
"consent.not_received": "Du hast der Sammlung und Verarbeitung von Daten nicht zugestimmt. Diese Website-Administration behält sich vor deinen Account jederzeit zu löschen um die GDPR einzuhalten.",
"consent.give": "Zustimmen",
diff --git a/public/language/fr/modules.json b/public/language/fr/modules.json
index cd3f0decff..20246c53c6 100644
--- a/public/language/fr/modules.json
+++ b/public/language/fr/modules.json
@@ -1,6 +1,6 @@
{
"chat.chatting_with": "Discuter avec",
- "chat.placeholder": "Tapez votre message ici, appuyez sur Entrée pour envoyer",
+ "chat.placeholder": "Écrire ici pour envoyer votre message",
"chat.send": "Envoyer",
"chat.no_active": "Vous n'avez aucune discussion en cours.",
"chat.user_typing": "%1 est en train d'écrire ...",
diff --git a/public/language/fr/reset_password.json b/public/language/fr/reset_password.json
index 01934ac921..ee4875e7e3 100644
--- a/public/language/fr/reset_password.json
+++ b/public/language/fr/reset_password.json
@@ -1,6 +1,6 @@
{
- "reset_password": "Réinitialiser le mot de passe",
- "update_password": "Mettre à jour le mot de passe",
+ "reset_password": "Réinitialiser votre mot de passe",
+ "update_password": "Mettre à jour votre mot de passe",
"password_changed.title": "Mot de passe modifié",
"password_changed.message": "
Votre mot de passe a bien été réinitialisé, veuillez vous reconnecter.",
"wrong_reset_code.title": "Code de réinisialisation incorrect",
diff --git a/public/language/fr/search.json b/public/language/fr/search.json
index 13e088f5f7..402ad9d985 100644
--- a/public/language/fr/search.json
+++ b/public/language/fr/search.json
@@ -11,7 +11,7 @@
"posted-by": "Posté par",
"in-categories": "Dans les catégories",
"search-child-categories": "Rechercher également dans les sous catégories",
- "has-tags": "A les tags",
+ "has-tags": "Contient les tags",
"reply-count": "Nombre de réponses",
"at-least": "Au moins",
"at-most": "Au plus",
diff --git a/public/language/fr/uploads.json b/public/language/fr/uploads.json
index 3b7ca024b3..0e2734ff92 100644
--- a/public/language/fr/uploads.json
+++ b/public/language/fr/uploads.json
@@ -1,5 +1,5 @@
{
- "uploading-file": "Envoi du fichier…",
+ "uploading-file": "Envoi d'un fichier…",
"select-file-to-upload": "Sélectionnez un ficher à envoyer",
"upload-success": "Fichier envoyé",
"maximum-file-size": "%1 Ko maximum",
diff --git a/public/language/fr/user.json b/public/language/fr/user.json
index 417b44acba..5a494225a7 100644
--- a/public/language/fr/user.json
+++ b/public/language/fr/user.json
@@ -150,8 +150,8 @@
"consent.lead": "Ce forum collecte et traite vos informations personnelles.",
"consent.intro": "Nous utilisons ces informations strictement pour personnaliser votre expérience dans cette communauté, ainsi que pour associer les messages que vous publiez à votre compte utilisateur. Lors de l'étape d'enregistrement, vous avez été invité à fournir un nom d'utilisateur et une adresse e-mail. Vous pouvez également fournir des informations supplémentaires pour compléter votre profil.
Nous conservons ces informations durant la durée de vie de votre compte utilisateur. À tout moment vous pouvez supprimer votre compte. À tout moment, vous pouvez demander une copie de vos contribution, via la page de vos données personnelles.
Si vous avez des questions ou préoccupations, nous vous encourageons à contacter l'équipe d'administration de ce forum.",
"consent.email_intro": "Occasionnellement, nous pouvons envoyer des courriels afin de fournir des mises à jour et / ou de vous informer de toute nouvelle activité qui vous concerne. Vous pouvez personnaliser la fréquence d'envoi (y compris la désactiver), ainsi que sélectionner les types de notifications à recevoir, via vos paramètres utilisateur.",
- "consent.digest_frequency": "Unless explicitly changed in your user settings, this community delivers email digests every %1.",
- "consent.digest_off": "Unless explicitly changed in your user settings, this community does not send out email digests",
+ "consent.digest_frequency": "Par défaut, ce forum délivre des résumés par courriels tous les %1.",
+ "consent.digest_off": "Actuellement, ce forum n'envoi pas de résumés par courriel",
"consent.received": "Vous avez donné votre accord pour que ce site collecte et traite vos informations. Aucune action supplémentaire n'est requise.",
"consent.not_received": "Vous n'avez pas donné votre accord pour la collecte et le traitement des données. A tout moment, l'équipe d'administration de ce site peut choisir de supprimer votre compte afin de se conformer au règlement général sur la protection des données.",
"consent.give": "Donner son accord",
diff --git a/public/language/fr/users.json b/public/language/fr/users.json
index 35b6a06787..7176efe144 100644
--- a/public/language/fr/users.json
+++ b/public/language/fr/users.json
@@ -1,8 +1,8 @@
{
"latest_users": "Derniers inscrits",
"top_posters": "Actifs",
- "most_reputation": "Réputés",
- "most_flags": "Les plus souvent signalés",
+ "most_reputation": "Les plus Réputés",
+ "most_flags": "Les plus signalés",
"search": "Rechercher",
"enter_username": "Entrez le nom d'un utilisateur",
"load_more": "Charger la suite",
diff --git a/public/language/he/user.json b/public/language/he/user.json
index 37f0dd70d6..e94394d450 100644
--- a/public/language/he/user.json
+++ b/public/language/he/user.json
@@ -146,24 +146,24 @@
"info.moderation-note": "הערת מודרטור",
"info.moderation-note.success": "הערת מודרטור נשמרה",
"info.moderation-note.add": "הוסף הערה",
- "consent.title": "Your Rights & Consent",
- "consent.lead": "This community forum collects and processes your personal information.",
- "consent.intro": "We use this information strictly to personalise your experience in this community, as well as to associate the posts you make to your user account. During the registration step you were asked to provide a username and email address, you can also optionally provide additional information to complete your user profile on this website.
We retain this information for the life of your user account, and you are able to withdraw consent at any time by deleting your account. At any time you may request a copy of your contribution to this website, via your Rights & Consent page.
If you have any questions or concerns, we encourage you to reach out to this forum's administrative team.",
- "consent.email_intro": "Occasionally, we may send emails to your registered email address in order to provide updates and/or to notify you of new activity that is pertinent to you. You can customise the frequency of the community digest (including disabling it outright), as well as select which types of notifications to receive via email, via your user settings page.",
- "consent.digest_frequency": "Unless explicitly changed in your user settings, this community delivers email digests every %1.",
- "consent.digest_off": "Unless explicitly changed in your user settings, this community does not send out email digests",
- "consent.received": "You have provided consent for this website to collect and process your information. No additional action is required.",
- "consent.not_received": "You have not provided consent for data collection and processing. At any time this website's administration may elect to delete your account in order to become compliant with the General Data Protection Regulation.",
- "consent.give": "Give consent",
- "consent.right_of_access": "You have the Right of Access",
- "consent.right_of_access_description": "You have the right to access any data collected by this website upon request. You can retrieve a copy of this data by clicking the appropriate button below.",
- "consent.right_to_rectification": "You have the Right to Rectification",
- "consent.right_to_rectification_description": "You have the right to change or update any inaccurate data provided to us. Your profile can be updated by editing your profile, and post content can always be edited. If this is not the case, please contact this site's administrative team.",
- "consent.right_to_erasure": "You have the Right to Erasure",
- "consent.right_to_erasure_description": "At any time, you are able to revoke your consent to data collection and/or processing by deleting your account. Your individual profile can be deleted, although your posted content will remain. If you wish to delete both your account and your content, please contact the administrative team for this website.",
- "consent.right_to_data_portability": "You have the Right to Data Portability",
- "consent.right_to_data_portability_description": "You may request from us a machine-readable export of any collected data about you and your account. You can do so by clicking the appropriate button below.",
- "consent.export_profile": "Export Profile (.csv)",
- "consent.export_uploads": "Export Uploaded Content (.zip)",
- "consent.export_posts": "Export Posts (.csv)"
+ "consent.title": "תנאי השימוש באתר",
+ "consent.lead": "אתר זה אוסף ומעבד נתונים הכוללים בחלקם את המידע האישי שלך.",
+ "consent.intro": "אנו משתמשים במידע שנאסף כדי להתאים אישית את החוויה שלך, וכן לקשר את ההודעות שאתה מבצע לחשבון המשתמש שלך. במהלך שלב ההרשמה התבקשת לספק שם משתמש וכתובת דוא\"ל, תוכל גם לספק מידע נוסף כדי להשלים את פרופיל המשתמש שלך באתר זה.
אנו שומרים ומעבדים מידע זה. אתה יכול לבטל את הסכמתך בכל עת על ידי מחיקת החשבון שלך. בכל עת תוכל לבקש עותק של חשבונך לאתר זה, באמצעות דף זה.
אם יש לך שאלות או חששות, אנו ממליצים לך ליצור קשר עם צוות הניהול של האתר.",
+ "consent.email_intro": "מדי פעם, אנו עשויים לשלוח הודעות לכתובת הדוא\"ל הרשומה שלך על מנת לספק עדכונים ו / או להודיע לך על פעילות חדשה הרלוונטית עבורך. ניתן להתאים אישית את התדירות של העדכונים (כולל השבתתם), וכן לבחור אילו סוגי הודעות לקבל באמצעות דוא\"ל, דרך דף הגדרות המשתמש שלך.",
+ "consent.digest_frequency": "אלא אם כן תשנה במפורש את הגדרות המשתמש שלך, אתר זה מספק עדכוני דוא\"ל בכל %1.",
+ "consent.digest_off": "אלא אם כן תשנה במפורש את הגדרות המשתמש שלך, האתר לא ישלח הודעות תמצית.",
+ "consent.received": "הסכמתך לאפשר לאתר לאסוף ולעבד את המידע שלך התקבלה. אין צורך בפעולה נוספת.",
+ "consent.not_received": "הסכמתך לאיסוף נתונים ועיבודם לא התקבלה. מנהל האתר רשאי למחוק את חשבונך בכל עת על מנת להיות תואם לתקנות רגולציה כגון GDPR,.",
+ "consent.give": "הסכם",
+ "consent.right_of_access": "זכותך לנגישות",
+ "consent.right_of_access_description": "שמורה לך הזכות לגשת לנתונים שנאספו על ידי האתר. תוכל לאחזר עותק של נתונים אלה על ידי לחיצה על הלחצן מטה.",
+ "consent.right_to_rectification": "זכותך לתקן טעויות",
+ "consent.right_to_rectification_description": "יש לך זכות לשנות או לעדכן נתונים שנאספו. ניתן לעדכן את הפרופיל שלך וכן לערוך כל תוכן שפורסם. במידת הצורך, אנא צור קשר עם צוות ניהול האתר.",
+ "consent.right_to_erasure": "זכותך למחוק את חשבונך",
+ "consent.right_to_erasure_description": "בכל עת תוכל לבטל את הסכמתך לאיסוף נתונים ו / או עיבודם על ידי מחיקת חשבונך. מחיקת הפרופיל שלך לא תגרום למחיקת התוכנים שפרסמת. על מנת למחוק את חשבונך ואת התוכן המקושר לו צור קשר עם צוות הניהול של האתר.",
+ "consent.right_to_data_portability": "זכותך לניוד הנתונים",
+ "consent.right_to_data_portability_description": "באפרותך לבקש ייצוא של כל הנתונים שנאספו מחשבונך אודותיך. תוכל לעשות זאת על ידי לחיצה על הלחצן המתאים מטה.",
+ "consent.export_profile": "יצוא פרופיל (CVS.)",
+ "consent.export_uploads": "יצוא תוכן שהועלה (ZIP.)",
+ "consent.export_posts": "יצוא פוסטים (CVS.)"
}
\ No newline at end of file
diff --git a/public/language/hu/admin/admin.json b/public/language/hu/admin/admin.json
index 45e0c13425..686ca637c6 100644
--- a/public/language/hu/admin/admin.json
+++ b/public/language/hu/admin/admin.json
@@ -1,5 +1,5 @@
{
- "alert.confirm-rebuild-and-restart": "Are you sure you wish to rebuild and restart NodeBB?",
+ "alert.confirm-rebuild-and-restart": "Biztosan újra kívánod építeni majd újraindítod a NodeBB-t?",
"alert.confirm-restart": "Biztosan újra szeretnéd indítani a NodeBB-t?",
"acp-title": "%1 | NodeBB Adminisztrációs vezérlőpult",
diff --git a/public/language/hu/admin/advanced/errors.json b/public/language/hu/admin/advanced/errors.json
index 546f0f1508..9ad4a82d61 100644
--- a/public/language/hu/admin/advanced/errors.json
+++ b/public/language/hu/admin/advanced/errors.json
@@ -1,14 +1,14 @@
{
- "figure-x": "Figure %1",
- "error-events-per-day": "%1 events per day",
- "error.404": "404 Not Found",
- "error.503": "503 Service Unavailable",
- "manage-error-log": "Manage Error Log",
- "export-error-log": "Export Error Log (CSV)",
- "clear-error-log": "Clear Error Log",
- "route": "Route",
- "count": "Count",
- "no-routes-not-found": "Hooray! No 404 errors!",
- "clear404-confirm": "Are you sure you wish to clear the 404 error logs?",
- "clear404-success": "\"404 Not Found\" errors cleared"
+ "figure-x": "Ábra %1",
+ "error-events-per-day": "%1 esemény naponta",
+ "error.404": "404 Nem található",
+ "error.503": "503 A szolgáltatás nem elérhető",
+ "manage-error-log": "Hibanapló kezelése",
+ "export-error-log": "Hibanapló exportálása (CSV)",
+ "clear-error-log": "Hibanapló törlése",
+ "route": "Útvonal",
+ "count": "Összeg",
+ "no-routes-not-found": "Hurrá! Nincs egy 404-es hiba se!",
+ "clear404-confirm": "Biztosan törölni kívánod a 404-es hibanaplót?",
+ "clear404-success": "\"404 Nem található\" hibák törölve"
}
\ No newline at end of file
diff --git a/public/language/hu/admin/appearance/customise.json b/public/language/hu/admin/appearance/customise.json
index 56c11a2805..eb735b97ca 100644
--- a/public/language/hu/admin/appearance/customise.json
+++ b/public/language/hu/admin/appearance/customise.json
@@ -1,16 +1,16 @@
{
- "custom-css": "Custom CSS/LESS",
- "custom-css.description": "Enter your own CSS/LESS declarations here, which will be applied after all other styles.",
- "custom-css.enable": "Enable Custom CSS/LESS",
+ "custom-css": "Egyéni CSS/LESS",
+ "custom-css.description": "Itt add meg saját CSS/LESS nyilatkozataid, melyek minden egyéb stílus után kerülnek alkalmazásra.",
+ "custom-css.enable": "Egyéni CSS/LESS engedélyezése",
- "custom-js": "Custom Javascript",
- "custom-js.description": "Enter your own javascript here. It will be executed after the page is loaded completely.",
- "custom-js.enable": "Enable Custom Javascript",
+ "custom-js": "Egyéni Javascript",
+ "custom-js.description": "Itt add meg saját javascript-ed. Végrehajtására az oldal teljes betöltése után kerül sor.",
+ "custom-js.enable": "Egyéni Javascript engedélyezése",
- "custom-header": "Custom Header",
- "custom-header.description": "Enter custom HTML here (ex. Meta Tags, etc.), which will be appended to the <head> section of your forum's markup. Script tags are allowed, but are discouraged, as the Custom Javascript tab is available.",
- "custom-header.enable": "Enable Custom Header",
+ "custom-header": "Egyéni fejléc",
+ "custom-header.description": "Itt adhatsz meg egyéni HTML-t (pl. Meta címkék, stb.), ami fórumod jelölőjének <head> részéhez lesz hozzácsatolva. Megengedettek a szkript címkék is, ám ellenjavalltak, mivel rendelkezésre áll az Egyéni Javascript lap.",
+ "custom-header.enable": "Egyéni fejléc engedélyezése",
- "custom-css.livereload": "Enable Live Reload",
- "custom-css.livereload.description": "Enable this to force all sessions on every device under your account to refresh whenever you click save"
+ "custom-css.livereload": "Élő újratöltés engedélyezése",
+ "custom-css.livereload.description": "Engedélyezésével fiókod alá eső minden eszközön az összes munkamenet kényszerűen frissül akárhányszor a mentésre kattintasz"
}
\ No newline at end of file
diff --git a/public/language/hu/admin/appearance/themes.json b/public/language/hu/admin/appearance/themes.json
index 1f20a193ca..07f5cd2e5c 100644
--- a/public/language/hu/admin/appearance/themes.json
+++ b/public/language/hu/admin/appearance/themes.json
@@ -7,5 +7,5 @@
"revert-confirm": "Biztos vissza akarod állítani az alapértelmezett NodeBB témát?",
"theme-changed": "Téma módosítva",
"revert-success": "Sikeresen visszaállítottad a NodeBB alapértelmezett témáját.",
- "restart-to-activate": "Please rebuild and restart your NodeBB to fully activate this theme."
+ "restart-to-activate": "A téma teljes aktiválásához kérlek építsd újra majd indítsd újra a NodeBB-t."
}
\ No newline at end of file
diff --git a/public/language/hu/admin/development/info.json b/public/language/hu/admin/development/info.json
index 30386bcee5..14e1798535 100644
--- a/public/language/hu/admin/development/info.json
+++ b/public/language/hu/admin/development/info.json
@@ -1,6 +1,6 @@
{
- "you-are-on": "Info - You are on %1:%2",
- "nodes-responded": "%1 nodes responded within %2ms!",
+ "you-are-on": "Infó - Most épp itt vagy: %1:%2",
+ "nodes-responded": "%1 csomópont válaszolt %2mp-n belül!",
"host": "host",
"pid": "pid",
"nodejs": "nodejs",
diff --git a/public/language/hu/admin/development/logger.json b/public/language/hu/admin/development/logger.json
index 6ab9558149..06ab9de008 100644
--- a/public/language/hu/admin/development/logger.json
+++ b/public/language/hu/admin/development/logger.json
@@ -1,12 +1,12 @@
{
- "logger-settings": "Logger Settings",
+ "logger-settings": "Naplózó beállítások",
"description": "By enabling the check boxes, you will receive logs to your terminal. If you specify a path, logs will then be saved to a file instead. HTTP logging is useful for collecting statistics about who, when, and what people access on your forum. In addition to logging HTTP requests, we can also log socket.io events. Socket.io logging, in combination with redis-cli monitor, can be very helpful for learning NodeBB's internals.",
- "explanation": "Simply check/uncheck the logging settings to enable or disable logging on the fly. No restart needed.",
- "enable-http": "Enable HTTP logging",
- "enable-socket": "Enable socket.io event logging",
- "file-path": "Path to log file",
+ "explanation": "Egyszerűen jelöld be/töröld a jelölést a naplózó beállításai elől azok menet közbeni engedélyezéséhez illetve tiltásához.",
+ "enable-http": "HTTP naplózás engedélyezése",
+ "enable-socket": "A socket.io eseménynaplózás engedélyezése",
+ "file-path": "A naplófájl elérési útja",
"file-path-placeholder": "/path/to/log/file.log ::: leave blank to log to your terminal",
- "control-panel": "Logger Control Panel",
- "update-settings": "Update Logger Settings"
+ "control-panel": "Naplózó vezérlőpult",
+ "update-settings": "Naplózó beállításainak frissítése"
}
\ No newline at end of file
diff --git a/public/language/hu/admin/extend/plugins.json b/public/language/hu/admin/extend/plugins.json
index 005d9044ae..fe3e5d731f 100644
--- a/public/language/hu/admin/extend/plugins.json
+++ b/public/language/hu/admin/extend/plugins.json
@@ -1,53 +1,53 @@
{
- "installed": "Installed",
- "active": "Active",
- "inactive": "Inactive",
- "out-of-date": "Out of Date",
- "none-found": "No plugins found.",
- "none-active": "No Active Plugins",
- "find-plugins": "Find Plugins",
+ "installed": "Telepített",
+ "active": "Aktív",
+ "inactive": "Inaktív",
+ "out-of-date": "Elavult",
+ "none-found": "Nem találhatók beépülők.",
+ "none-active": "Nincsenek aktív beépülők.",
+ "find-plugins": "Beépülők keresése",
- "plugin-search": "Plugin Search",
- "plugin-search-placeholder": "Search for plugin...",
- "reorder-plugins": "Re-order Plugins",
- "order-active": "Order Active Plugins",
- "dev-interested": "Interested in writing plugins for NodeBB?",
+ "plugin-search": "Beépülő keresés",
+ "plugin-search-placeholder": "Beépülő keresése...",
+ "reorder-plugins": "Beépülők átrendezése",
+ "order-active": "Aktív beépülők elrendezése",
+ "dev-interested": "Szeretnél beépülő modulokat írni a NodeBB-hez?",
"docs-info": "Full documentation regarding plugin authoring can be found in the NodeBB Docs Portal.",
"order.description": "Certain plugins work ideally when they are initialised before/after other plugins.",
"order.explanation": "Plugins load in the order specified here, from top to bottom",
- "plugin-item.themes": "Themes",
- "plugin-item.deactivate": "Deactivate",
- "plugin-item.activate": "Activate",
- "plugin-item.install": "Install",
- "plugin-item.uninstall": "Uninstall",
- "plugin-item.settings": "Settings",
- "plugin-item.installed": "Installed",
- "plugin-item.latest": "Latest",
- "plugin-item.upgrade": "Upgrade",
- "plugin-item.more-info": "For more information:",
- "plugin-item.unknown": "Unknown",
- "plugin-item.unknown-explanation": "The state of this plugin could not be determined, possibly due to a misconfiguration error.",
+ "plugin-item.themes": "Témák",
+ "plugin-item.deactivate": "Deaktiválás",
+ "plugin-item.activate": "Aktiválás",
+ "plugin-item.install": "Telepítés",
+ "plugin-item.uninstall": "Eltávolítás",
+ "plugin-item.settings": "Beállítások",
+ "plugin-item.installed": "Telepítve",
+ "plugin-item.latest": "Legutóbbi",
+ "plugin-item.upgrade": "Frissítés",
+ "plugin-item.more-info": "További információért:",
+ "plugin-item.unknown": "Ismeretlen",
+ "plugin-item.unknown-explanation": "A beépülő állapotát nem lehet meghatározni, valószínűleg egy konfigurációs hiba következtében.",
- "alert.enabled": "Plugin Enabled",
- "alert.disabled": "Plugin Disabled",
- "alert.upgraded": "Plugin Upgraded",
- "alert.installed": "Plugin Installed",
- "alert.uninstalled": "Plugin Uninstalled",
- "alert.activate-success": "Please restart your NodeBB to fully activate this plugin",
- "alert.deactivate-success": "Plugin successfully deactivated",
- "alert.upgrade-success": "Please rebuild and restart your NodeBB to fully upgrade this plugin.",
- "alert.install-success": "Plugin successfully installed, please activate the plugin.",
- "alert.uninstall-success": "The plugin has been successfully deactivated and uninstalled.",
+ "alert.enabled": "Beépülő engedélyezve",
+ "alert.disabled": "Beépülő letiltva",
+ "alert.upgraded": "Beépülő frissítve",
+ "alert.installed": "Beépülő telepítve",
+ "alert.uninstalled": "Beépülő eltávolítva",
+ "alert.activate-success": "A beépülő teljes aktiválásához kérlek indítsd újra a NodeBB-t.",
+ "alert.deactivate-success": "A beépülő sikeresen deaktiválva",
+ "alert.upgrade-success": "A beépülő teljes frissítéséhez kérlek építsd újra majd indítsd újra a NodeBB-t.",
+ "alert.install-success": "A beépülő sikeresen telepítve, kérlek aktiváld.",
+ "alert.uninstall-success": "A beépülő sikeresen deaktiválásra majd eltávolításra került.",
"alert.suggest-error": "
NodeBB could not reach the package manager, proceed with installation of latest version?
NodeBB could not reach the package manager, an upgrade is not suggested at this time.
", "alert.incompatible": "Your version of NodeBB (v%1) is only cleared to upgrade to v%2 of this plugin. Please update your NodeBB if you wish to install a newer version of this plugin.
", "alert.possibly-incompatible": "No Compatibility Information Found
This plugin did not specify a specific version for installation given your NodeBB version. Full compatibility cannot be guaranteed, and may cause your NodeBB to no longer start properly.
In the event that NodeBB cannot boot properly:
$ ./nodebb reset plugin=\"%1\"Continue installation of latest version of this plugin?
", - "alert.reorder": "Plugins Re-ordered", - "alert.reorder-success": "Please rebuild and restart your NodeBB to fully complete the process.", + "alert.reorder": "Beépülők átrendezve", + "alert.reorder-success": "A folyamat teljes befejezéséhez kérlek építsd újra majd indítsd újra a NodeBB-t.", - "license.title": "Plugin License Information", + "license.title": "Beépülő licencinformáció", "license.intro": "The plugin %1 is licensed under the %2. Please read and understand the license terms prior to activating this plugin.", - "license.cta": "Do you wish to continue with activating this plugin?" + "license.cta": "Biztosan szeretnéd folytatni a beépülő aktiválását?" } diff --git a/public/language/hu/admin/extend/rewards.json b/public/language/hu/admin/extend/rewards.json index 5383a90b33..1258e3a0c6 100644 --- a/public/language/hu/admin/extend/rewards.json +++ b/public/language/hu/admin/extend/rewards.json @@ -1,17 +1,17 @@ { - "rewards": "Rewards", - "condition-if-users": "If User's", - "condition-is": "Is:", - "condition-then": "Then:", - "max-claims": "Amount of times reward is claimable", - "zero-infinite": "Enter 0 for infinite", - "delete": "Delete", - "enable": "Enable", - "disable": "Disable", - "control-panel": "Rewards Control", - "new-reward": "New Reward", + "rewards": "Jutalmak", + "condition-if-users": "Ha a felhasználó", + "condition-is": "Kisebb/nagyobb/egyenlő:", + "condition-then": "Akkor:", + "max-claims": "Hány alkalommal igényelhető a jutalom", + "zero-infinite": "Írj 0-t a végtelenhez", + "delete": "Törlés", + "enable": "Engedélyezés", + "disable": "Tiltás", + "control-panel": "Jutalom vezérlés", + "new-reward": "Új jutalom", - "alert.delete-success": "Successfully deleted reward", - "alert.no-inputs-found": "Illegal reward - no inputs found!", - "alert.save-success": "Successfully saved rewards" + "alert.delete-success": "Jutalom sikeresen törölve", + "alert.no-inputs-found": "Helytelen jutalom - nem található bevitel!", + "alert.save-success": "Jutalmak sikeresen elmentve" } \ No newline at end of file diff --git a/public/language/hu/admin/extend/widgets.json b/public/language/hu/admin/extend/widgets.json index 025f48b327..c29dbcc143 100644 --- a/public/language/hu/admin/extend/widgets.json +++ b/public/language/hu/admin/extend/widgets.json @@ -1,22 +1,22 @@ { - "available": "Available Widgets", - "explanation": "Select a widget from the dropdown menu and then drag and drop it into a template's widget area on the left.", - "none-installed": "No widgets found! Activate the essential widgets plugin in the plugins control panel.", - "clone-from": "Clone widgets from", - "containers.available": "Available Containers", - "containers.explanation": "Drag and drop on top of any active widget", - "containers.none": "None", - "container.well": "Well", + "available": "Elérhető modulok", + "explanation": "Válassz egy modult a legördülő menüből, majd húzd rá az egyik sablon modul területére a bal oldalon.", + "none-installed": "Nem találhatók modulok! Aktiváld az essential widgets beépülőt a beépülők vezérlőpulton.", + "clone-from": "Modul klónozása innen", + "containers.available": "Elérhető tárolók", + "containers.explanation": "Húzd rá az alábbiakat bármely aktív modulra", + "containers.none": "Nincs", + "container.well": "Akna", "container.jumbotron": "Jumbotron", "container.panel": "Panel", - "container.panel-header": "Panel Header", - "container.panel-body": "Panel Body", - "container.alert": "Alert", + "container.panel-header": "Panel fejléc", + "container.panel-body": "Panel test", + "container.alert": "Riasztás", - "alert.confirm-delete": "Are you sure you wish to delete this widget?", - "alert.updated": "Widgets Updated", - "alert.update-success": "Successfully updated widgets", - "alert.clone-success": "Successfully cloned widgets", + "alert.confirm-delete": "Biztosan szeretnéd törölni ezt a modult?", + "alert.updated": "Modulok frissítve", + "alert.update-success": "Modulok sikeresen frissítve", + "alert.clone-success": "Modulok sikersen klónozva", - "error.select-clone": "Please select a page to clone from" + "error.select-clone": "Kérlek válassz oldalt a klónozáshoz" } \ No newline at end of file diff --git a/public/language/hu/admin/general/dashboard.json b/public/language/hu/admin/general/dashboard.json index ed74742f32..d48f93176a 100644 --- a/public/language/hu/admin/general/dashboard.json +++ b/public/language/hu/admin/general/dashboard.json @@ -1,72 +1,72 @@ { - "forum-traffic": "Forum Traffic", - "page-views": "Page Views", - "unique-visitors": "Unique Visitors", - "users": "Users", - "posts": "Posts", - "topics": "Topics", - "page-views-seven": "Last 7 Days", - "page-views-thirty": "Last 30 Days", - "page-views-last-day": "Last 24 hours", - "page-views-custom": "Custom Date Range", - "page-views-custom-start": "Range Start", - "page-views-custom-end": "Range End", - "page-views-custom-help": "Enter a date range of page views you would like to view. If no date picker is available, the accepted format isYYYY-MM-DD",
- "page-views-custom-error": "Please enter a valid date range in the format YYYY-MM-DD",
+ "forum-traffic": "Fórum forgalma",
+ "page-views": "Oldal megtekintések",
+ "unique-visitors": "Egyedi látogatók",
+ "users": "Felhasználók",
+ "posts": "Hozzászólások",
+ "topics": "Témakörök",
+ "page-views-seven": "Az utóbbi 7 napban",
+ "page-views-thirty": "Az utóbbi 30 napban",
+ "page-views-last-day": "Az utóbbi 24 órában",
+ "page-views-custom": "Egyéni dátum tartomány",
+ "page-views-custom-start": "Tartomény kezdete",
+ "page-views-custom-end": "Tartomány vége",
+ "page-views-custom-help": "Adj meg egy dátum tartományt a kívánt oldal megtekintések megtekintéséhez. Ha nem áll rendelkezésre dátumválasztó, az elfogadott formátum ÉÉÉÉ-HH-NN",
+ "page-views-custom-error": "Kérlek, érvényes dátum tartományt adj meg ÉÉÉÉ-HH-NN formátumban.",
- "stats.day": "Day",
- "stats.week": "Week",
- "stats.month": "Month",
- "stats.all": "All Time",
+ "stats.day": "Naponta",
+ "stats.week": "Hetente",
+ "stats.month": "Havonta",
+ "stats.all": "Mindenkori",
- "updates": "Updates",
- "running-version": "You are running NodeBB v%1.",
- "keep-updated": "Always make sure that your NodeBB is up to date for the latest security patches and bug fixes.",
- "up-to-date": "You are up-to-date
", - "upgrade-available": "A new version (v%1) has been released. Consider upgrading your NodeBB.
", + "updates": "Frissítések", + "running-version": "Jelenleg a NodeBB v%1 verzióját futtatod.", + "keep-updated": "Mindig tégy róla, hogy a NodeBB naprakész a legfrissebb biztonsági javítások és hibajavítások végett.", + "up-to-date": "Naprakész vagy
", + "upgrade-available": "Kiadásra került egy új verzió (v%1). Vedd fontolóra a NodeBB frissítését.
", "prerelease-upgrade-available": "This is an outdated pre-release version of NodeBB. A new version (v%1) has been released. Consider upgrading your NodeBB.
", "prerelease-warning": "This is a pre-release version of NodeBB. Unintended bugs may occur.
", "running-in-development": "Forum is running in development mode. The forum may be open to potential vulnerabilities; please contact your system administrator.", "latest-lookup-failed": "Failed to look up latest available version of NodeBB
", - "notices": "Notices", - "restart-not-required": "Restart not required", - "restart-required": "Restart required", - "search-plugin-installed": "Search Plugin installed", - "search-plugin-not-installed": "Search Plugin not installed", - "search-plugin-tooltip": "Install a search plugin from the plugin page in order to activate search functionality", + "notices": "Értesítések", + "restart-not-required": "Nem szükséges az újraindítás", + "restart-required": "Újraindítás szükséges", + "search-plugin-installed": "Kereső beépülő telepítve", + "search-plugin-not-installed": "Kereső beépülő nincs telepítve", + "search-plugin-tooltip": "Telepíts egy kereső beépülőt a beépülők oldaláról a keresési funkciók aktiválásához", - "control-panel": "System Control", - "rebuild-and-restart": "Rebuild & Restart", - "restart": "Restart", - "restart-warning": "Rebuilding or Restarting your NodeBB will drop all existing connections for a few seconds.", + "control-panel": "Rendszervezérlés", + "rebuild-and-restart": "Újraépítés & újraindítás", + "restart": "Újraindítás", + "restart-warning": "A NodeBB újraépítésével ill. újraindításával pár másodpercre elvész minden meglévő kapcsolat.", "restart-disabled": "Rebuilding and Restarting your NodeBB has been disabled as you do not seem to be running it via the appropriate daemon.", - "maintenance-mode": "Maintenance Mode", - "maintenance-mode-title": "Click here to set up maintenance mode for NodeBB", - "realtime-chart-updates": "Realtime Chart Updates", + "maintenance-mode": "Karbantartási mód", + "maintenance-mode-title": "Kattints ide a NodeBB karbantartási módjának beállításához", + "realtime-chart-updates": "Valós idejű grafikon frissítések ", - "active-users": "Active Users", - "active-users.users": "Users", - "active-users.guests": "Guests", - "active-users.total": "Total", - "active-users.connections": "Connections", + "active-users": "Aktív felhasználók", + "active-users.users": "Felhasználók", + "active-users.guests": "Vendégek", + "active-users.total": "Összesen", + "active-users.connections": "Kapcsolatok", - "anonymous-registered-users": "Anonymous vs Registered Users", - "anonymous": "Anonymous", - "registered": "Registered", + "anonymous-registered-users": "Névtelen vs regisztrált felhasználók", + "anonymous": "Névtelen", + "registered": "Regisztrált", - "user-presence": "User Presence", - "on-categories": "On categories list", - "reading-posts": "Reading posts", - "browsing-topics": "Browsing topics", - "recent": "Recent", - "unread": "Unread", + "user-presence": "Felhasználói jelentlét", + "on-categories": "A kategória listán", + "reading-posts": "Hozzászólásokat olvas", + "browsing-topics": "Témaköröket böngész", + "recent": "Mostanában", + "unread": "Olvasatlan", - "high-presence-topics": "High Presence Topics", + "high-presence-topics": "Témakörök nagy jelenléttel", - "graphs.page-views": "Page Views", - "graphs.unique-visitors": "Unique Visitors", - "graphs.registered-users": "Registered Users", - "graphs.anonymous-users": "Anonymous Users", - "last-restarted-by": "Last restarted by" + "graphs.page-views": "Oldal megtekintések", + "graphs.unique-visitors": "Egyedi látogatók", + "graphs.registered-users": "Regisztrált felhasználók", + "graphs.anonymous-users": "Névtelen felhasználók", + "last-restarted-by": "Utoljára újraindította:" } diff --git a/public/language/hu/admin/general/homepage.json b/public/language/hu/admin/general/homepage.json index 7428d59eeb..679ff06af5 100644 --- a/public/language/hu/admin/general/homepage.json +++ b/public/language/hu/admin/general/homepage.json @@ -1,8 +1,8 @@ { - "home-page": "Home Page", - "description": "Choose what page is shown when users navigate to the root URL of your forum.", - "home-page-route": "Home Page Route", - "custom-route": "Custom Route", - "allow-user-home-pages": "Allow User Home Pages", - "home-page-title": "Title of the home page (default \"Home\")" + "home-page": "Kezdőlap", + "description": "Válaszd ki milyen oldal jelenjen meg, amikor a felhasználók fórumod gyökér URL címéhez navigálnak.", + "home-page-route": "Kezdőlap útvonala", + "custom-route": "Egyéni útvonal", + "allow-user-home-pages": "Felhasználói kezdőlapok engedélyezése", + "home-page-title": "A kezdőlap címe (alapértelmezés \"Kezdőlap\")" } \ No newline at end of file diff --git a/public/language/hu/admin/general/languages.json b/public/language/hu/admin/general/languages.json index bdd57849b3..63de413af4 100644 --- a/public/language/hu/admin/general/languages.json +++ b/public/language/hu/admin/general/languages.json @@ -1,6 +1,6 @@ { - "language-settings": "Language Settings", - "description": "The default language determines the language settings for all users who are visiting your forum.registered-users group is granted a specific privilege, all other groups receive an implicit privilege, even if they are not explicitly defined/checked. This implicit privilege is shown to you because all users are part of the registered-users user group, and so, privileges for additional groups need not be explicitly granted.",
- "analytics.back": "Back to Categories List",
- "analytics.title": "Analytics for \"%1\" category",
+ "analytics.back": "Visszatérés a kategórialistához",
+ "analytics.title": "Elemzés \"%1\" kategóriához",
"analytics.pageviews-hourly": "Figure 1 – Hourly page views for this category",
"analytics.pageviews-daily": "Figure 2 – Daily page views for this category",
"analytics.topics-daily": "Figure 3 – Daily topics created in this category",
@@ -53,19 +53,19 @@
"alert.created": "Created",
"alert.create-success": "Category successfully created!",
"alert.none-active": "You have no active categories.",
- "alert.create": "Create a Category",
+ "alert.create": "Kategória létrehozása",
"alert.confirm-moderate": "Are you sure you wish to grant the moderation privilege to this user group? This group is public, and any users can join at will.",
"alert.confirm-purge": "Do you really want to purge this category \"%1\"?
Purging a category will remove all topics and posts, and delete the category from the database. If you want to remove a category temporarily, you'll want to \"disable\" the category instead.
", - "alert.purge-success": "Category purged!", - "alert.copy-success": "Settings Copied!", - "alert.set-parent-category": "Set Parent Category", - "alert.updated": "Updated Categories", - "alert.updated-success": "Category IDs %1 successfully updated.", - "alert.upload-image": "Upload category image", - "alert.find-user": "Find a User", - "alert.user-search": "Search for a user here...", - "alert.find-group": "Find a Group", - "alert.group-search": "Search for a group here...", - "collapse-all": "Collapse All", - "expand-all": "Expand All" + "alert.purge-success": "Kategória kitörölve!", + "alert.copy-success": "Beállítások lemásolva!", + "alert.set-parent-category": "Szülő kategória beállítása", + "alert.updated": "Kategóriák frissítve", + "alert.updated-success": "A kategória ID-k %1 sikeresen frissítve.", + "alert.upload-image": "Kategóriakép feltöltése", + "alert.find-user": "Felhasználó keresése", + "alert.user-search": "Itt megkereshetsz egy felhasználót...", + "alert.find-group": "Csoport keresése", + "alert.group-search": "Itt megkereshetsz egy csoportot...", + "collapse-all": "Mind összecsukása", + "expand-all": "Mind kibontása" } \ No newline at end of file diff --git a/public/language/hu/admin/manage/registration.json b/public/language/hu/admin/manage/registration.json index f51b4d56e6..e543e600ae 100644 --- a/public/language/hu/admin/manage/registration.json +++ b/public/language/hu/admin/manage/registration.json @@ -1,20 +1,20 @@ { - "queue": "Queue", + "queue": "Várósor", "description": "There are no users in the registration queue.pdf,xls,doc). An empty list means all extensions are allowed.",
- "profile-avatars": "Profile Avatars",
- "allow-profile-image-uploads": "Allow users to upload profile images",
- "convert-profile-image-png": "Convert profile image uploads to PNG",
- "default-avatar": "Custom Default Avatar",
- "upload": "Upload",
- "profile-image-dimension": "Profile Image Dimension",
- "profile-image-dimension-help": "(in pixels, default: 128 pixels)",
- "max-profile-image-size": "Maximum Profile Image File Size",
- "max-profile-image-size-help": "(in kibibytes, default: 256 KiB)",
- "max-cover-image-size": "Maximum Cover Image File Size",
- "max-cover-image-size-help": "(in kibibytes, default: 2,048 KiB)",
- "keep-all-user-images": "Keep old versions of avatars and profile covers on the server",
- "profile-covers": "Profile Covers",
- "default-covers": "Default Cover Images",
- "default-covers-help": "Add comma-separated default cover images for accounts that don't have an uploaded cover image"
+ "posts": "Hozzászólások",
+ "allow-files": "Szokásos fájlok feltöltésének engedélyezése a felhasználók számára",
+ "private": "Feltöltött fájlok priváttá tevése",
+ "max-image-width": "Képek méretének csökkentése megadott szélességre (pixelben)",
+ "max-image-width-help": "(pixelben, alapérték: 760 pixel, 0-ra állítva letiltódik)",
+ "resize-image-quality": "Használandó minőség képek átméretezésekor",
+ "resize-image-quality-help": "Alacsonyabb minőség beállítás használata az átméretezett képek fájlméretének csökkentésére.",
+ "max-file-size": "Maximum fájlméret (KiB-ban)",
+ "max-file-size-help": "(kibibájtban, alapérték: 2048 KiB)",
+ "allow-topic-thumbnails": "Kis képek feltöltésének engedélyezése témakörhöz a felhasználók számára",
+ "topic-thumb-size": "Témakörkép mérete",
+ "allowed-file-extensions": "Megengedett fájlkiterjesztések",
+ "allowed-file-extensions-help": "Itt adj meg fájlkiterjesztési listát, vesszővel elválasztva (pl. pdf,xls,doc). Az üres lista azt jelenti, hogy minden kiterjesztés megengedett.",
+ "profile-avatars": "Profil avatárok",
+ "allow-profile-image-uploads": "Profilképek feltöltésének engedélyezése a felhasználók számára",
+ "convert-profile-image-png": "Profilkép feltöltések átkonvertálása PNG-be",
+ "default-avatar": "Egyéni alapértelmezett avatár",
+ "upload": "Feltöltés",
+ "profile-image-dimension": "Profilkép dimenziója",
+ "profile-image-dimension-help": "(pixelben, alapérték: 128 pixel)",
+ "max-profile-image-size": "Profilkép maximális fájlmérete",
+ "max-profile-image-size-help": "(kibibájtban, alapérték: 256 KiB)",
+ "max-cover-image-size": "Borítókép maximális fájlmérete",
+ "max-cover-image-size-help": "(kibibájtban, alapérték: 2.048 KiB)",
+ "keep-all-user-images": "Az avatárok és profil borítók régi változatainak megtartása a szerveren",
+ "profile-covers": "Profil borítók",
+ "default-covers": "Alapértelmezett borítóképek",
+ "default-covers-help": "Alapértelmezett borítóképek hozzáadása fiókokhoz, amik nem rendelkeznek feltöltött borítóképpel, vesszővel elválasztva"
}
diff --git a/public/language/hu/uploads.json b/public/language/hu/uploads.json
index 4ff4fd9b50..8d82cb9a15 100644
--- a/public/language/hu/uploads.json
+++ b/public/language/hu/uploads.json
@@ -3,7 +3,7 @@
"select-file-to-upload": "Válassz feltöltendő fájlt!",
"upload-success": "Fájl feltöltése sikeres!",
"maximum-file-size": "Maximum %1 kb",
- "no-uploads-found": "No uploads found",
- "public-uploads-info": "Uploads are public, all visitors can see them.",
- "private-uploads-info": "Uploads are private, only logged in users can see them."
+ "no-uploads-found": "Nem találhatók feltöltések",
+ "public-uploads-info": "A feltöltések nyilvánosak, minden látogató megtekintheti őket.",
+ "private-uploads-info": "A feltöltések privátak, csak a bejelentkezett felhasználók tekinthetik meg őket."
}
\ No newline at end of file
diff --git a/public/language/hu/user.json b/public/language/hu/user.json
index 94612bd5db..a00039f85e 100644
--- a/public/language/hu/user.json
+++ b/public/language/hu/user.json
@@ -12,7 +12,7 @@
"ban_account_confirm": "Biztos ki akarod tiltani a felhasználót?",
"unban_account": "Fiók feloldása",
"delete_account": "Fiók törlése",
- "delete_account_confirm": "Are you sure you want to delete your account? registered-users zostaje nadane specyficzne uprawnienia, wszystkie inne grupy otrzymują to bezwarunkowe uprawnienie, nawet jeśli ów nie zostało zdefiniowane/zaznaczone. Bezwarunkowe uprawnienie jest wyświetlane ponieważ wszyscy użytkownicy są częścią grupy registered-users, więc uprawnienia dla dodatkowych grup nie mogą się wykluczać.",
diff --git a/public/language/pl/admin/menu.json b/public/language/pl/admin/menu.json
index 2bda01ee6e..60ded366ef 100644
--- a/public/language/pl/admin/menu.json
+++ b/public/language/pl/admin/menu.json
@@ -5,7 +5,7 @@
"general/navigation": "Nawigacja",
"general/languages": "Języki",
"general/sounds": "Dźwięki",
- "general/social": "Social",
+ "general/social": "Społecznościowe",
"section-manage": "Zarządzanie",
"manage/categories": "Kategorie",
@@ -22,8 +22,8 @@
"section-settings": "Ustawienia",
"settings/general": "Ogólne",
"settings/reputation": "Reputacja",
- "settings/email": "Email",
- "settings/user": "Użytkownicy",
+ "settings/email": "E-mail",
+ "settings/user": "Użytkownik",
"settings/group": "Grupy",
"settings/guest": "Goście",
"settings/uploads": "Przesyłanie plików",
@@ -37,7 +37,7 @@
"settings/sockets": "Sockety",
"settings/advanced": "Zaawansowane",
- "settings.page-title": "%1 Ustawienia",
+ "settings.page-title": "Ustawienia %1",
"section-appearance": "Wygląd",
"appearance/themes": "Motywy",
diff --git a/public/language/pl/admin/settings/post.json b/public/language/pl/admin/settings/post.json
index ec154ca846..f1e393a529 100644
--- a/public/language/pl/admin/settings/post.json
+++ b/public/language/pl/admin/settings/post.json
@@ -1,54 +1,54 @@
{
"sorting": "Sortowanie postów",
"sorting.post-default": "Domyślne sortowanie postów",
- "sorting.oldest-to-newest": "Najstarsze do najnowszych",
- "sorting.newest-to-oldest": "Najnowsze do najstarszych",
+ "sorting.oldest-to-newest": "Od najstarszych do najnowszych",
+ "sorting.newest-to-oldest": "Od najnowszych do najstarszych",
"sorting.most-votes": "Najwięcej głosów",
"sorting.most-posts": "Najwięcej postów",
"sorting.topic-default": "Domyślne sortowanie tematów",
- "length": "Rozmiar Wpisu",
- "restrictions": "Ograniczenia pisania",
+ "length": "Długość postu",
+ "restrictions": "Restrykcje postowania",
"restrictions-new": "Restrykcje dla nowych użytkowników",
"restrictions.post-queue": "Włącz kolejkę postów",
"restrictions-new.post-queue": "Włącz restrykcje dla nowych użytkowników",
- "restrictions.post-queue-help": "Włączenie kolejki postów będzie dodawało posty nowych użytkowników do kolejki w celu zatwierdzenia.",
+ "restrictions.post-queue-help": "Włączenie kolejki postów skutkuje dodawaniem postów nowych użytkowników do kolejki w celu zatwierdzenia.",
"restrictions-new.post-queue-help": "Włączenie restrykcji dla nowych użytkowników ustawi restrykcje na ich wpisy.",
"restrictions.seconds-between": "Liczba sekund pomiędzy wpisami",
"restrictions.seconds-between-new": "Liczba sekund pomiędzy wpisami dla nowych użytkowników",
- "restrictions.rep-threshold": "Poziom reputacji, poniżej którego obowiązują zwiększone restrykcje",
+ "restrictions.rep-threshold": "Próg reputacji wymagany do zdjęcia restrykcji",
"restrictions.seconds-defore-new": "Sekundy, po których nowy użytkownik może wysyłać posty",
"restrictions.seconds-edit-after": "Liczba sekund gdy użytkownicy mogą edytować wpisy po opublikowaniu. (0 wyłączone)",
"restrictions.seconds-delete-after": "Liczba sekund gdy użytkownicy mogą skasować wpisy po opublikowaniu. (0 wyłączone)",
"restrictions.replies-no-delete": "Liczba odpowiedzi, po których użytkownicy nie mogą edytować własnych tematów (0 wyłącza).",
- "restrictions.min-title-length": "Minimalna długość tematu",
- "restrictions.max-title-length": "Maksymalna długość tematu",
- "restrictions.min-post-length": "Minimalna długość posta",
- "restrictions.max-post-length": "Maksymalna długość posta",
+ "restrictions.min-title-length": "Minimalna długość tytułu",
+ "restrictions.max-title-length": "Maksymalna długość tytułu",
+ "restrictions.min-post-length": "Minimalna długość postu",
+ "restrictions.max-post-length": "Maksymalna długość postu",
"restrictions.days-until-stale": "Liczba dni, po których temat będzie uznany za martwy",
- "restrictions.stale-help": "Jeśli temat jest uznawany za \"przeterminowany\", wtedy użytkownikom próbującym na niego odpowiedzieć wyświetli się stosowany komunikat.",
+ "restrictions.stale-help": "Jeśli temat został uznany za „martwy”, użytkownikom próbującym na niego odpowiedzieć wyświetli się stosowany komunikat.",
"timestamp": "Znacznik czasowy",
"timestamp.cut-off": "Termin odcięcia (w dniach)",
"timestamp.cut-off-help": "Daty oraz godziny będą wyświetlane w sposób relatywny (np. \"3 godziny temu\" / \"5 dni temu\"), oraz przetłumaczone na różne\n\t\t\t\t\tjęzyki. Po określonym czasie, ten tekst może zostać zmieniony, aby wyświetlać sformatowane daty.\n\t\t\t\t\t(np. 4 Lut 2017 12:45).30, lub jeden miesiąc). Ustaw 0, aby zawsze wyświetlać daty; pozostaw puste, aby korzystać z tylko z relatywnych opisów.",
- "teaser": "Zwiastun posta",
- "teaser.last-post": "Ostatni – Pokazuj ostatni post, włączając pierwszy post, jeśli brak odpowiedzi",
- "teaser.last-reply": "Ostatni – Pokazuj ostatnią odpowiedzieć lub komunikat \"Brak odpowiedzi\" w przypadku ich braku",
+ "teaser": "Zwiastun postu",
+ "teaser.last-post": "Ostatni – Pokaż ostatni post, włączając pierwszy post, w razie braku odpowiedzi",
+ "teaser.last-reply": "Ostatni – Pokaż ostatnią odpowiedź lub komunikat „Brak odpowiedzi” w razie ich braku",
"teaser.first": "Pierwszy",
"unread": "Ustawienia nieprzeczytanych",
- "unread.cutoff": "Dni do odcięcie nieprzeczytanych ",
+ "unread.cutoff": "Dni do odcięcia nieprzeczytanych ",
"unread.min-track-last": "Minimalna liczba postów w temacie przed śledzeniem ostatnio przeczytanego",
"recent": "Ustawienia ostatnich",
"recent.categoryFilter.disable": "Wyłącz filtrowanie tematów w ignorowanych kategoriach na stronie /recent",
- "signature": "Ustawienia podpisów",
- "signature.disable": "Wyłącz podpisy",
- "signature.no-links": "Wyłącz odnośniki w podpisach",
- "signature.no-images": "Wyłącz obrazy w podpisach",
- "signature.max-length": "Maksymalna długość stopki",
+ "signature": "Ustawienia sygnatur",
+ "signature.disable": "Wyłącz sygnatury",
+ "signature.no-links": "Wyłącz odnośniki w sygnaturach",
+ "signature.no-images": "Wyłącz obrazy w sygnaturach",
+ "signature.max-length": "Maksymalna długość sygnatury",
"composer": "Ustawienia okna pisania",
- "composer-help": "Następujące ustawienia zarządzają funkcjonalnością oraz/lub wyglądem okna pisania postów wyświetlanego\n\t\t\t\tużytkownikom kiedy tworzą nowe tematy lub odpowiadają w istniejących.",
- "composer.show-help": "Pokazuj zakładkę \"Pomoc\"",
+ "composer-help": "Następujące ustawienia zarządzają funkcjonalnością oraz/lub wyglądem okna pisania postów wyświetlanego\n\t\t\t\tużytkownikom, gdy tworzą nowe tematy lub odpowiadają w istniejących.",
+ "composer.show-help": "Pokazuj zakładkę „Pomoc”",
"composer.enable-plugin-help": "Zezwalaj wtyczkom na dodawanie zawartości do zakładki pomocy",
"composer.custom-help": "Własny tekst pomocy",
"ip-tracking": "Śledzenie IP",
- "ip-tracking.each-post": "Śledź adres IP każdego z postów",
+ "ip-tracking.each-post": "Śledź adres IP dla każdego postu",
"enable-post-history": "Włącz historię wpisu"
}
\ No newline at end of file
diff --git a/public/language/pl/user.json b/public/language/pl/user.json
index 367d315756..5808215611 100644
--- a/public/language/pl/user.json
+++ b/public/language/pl/user.json
@@ -146,24 +146,24 @@
"info.moderation-note": "Notatka moderatora",
"info.moderation-note.success": "Notatka została zapisana",
"info.moderation-note.add": "Dodaj notatkę",
- "consent.title": "Your Rights & Consent",
+ "consent.title": "Twoje prawa i zgody",
"consent.lead": "To forum gromadzi i przetwarza twoje dane osobowe.",
- "consent.intro": "We use this information strictly to personalise your experience in this community, as well as to associate the posts you make to your user account. During the registration step you were asked to provide a username and email address, you can also optionally provide additional information to complete your user profile on this website.Do you really want to purge this category \"%1\"?
Purging a category will remove all topics and posts, and delete the category from the database. If you want to remove a category temporarily, you'll want to \"disable\" the category instead.
", - "alert.purge-success": "Category purged!", + "alert.purge-success": "Kategori temizlendi!", "alert.copy-success": "Ayarlar Kopyalandı!", "alert.set-parent-category": "Ana Kategori Ayarla", "alert.updated": "Güncellenen Kategoriler", "alert.updated-success": "Category IDs %1 successfully updated.", "alert.upload-image": "Kategori görseli yükle", "alert.find-user": "Bir Kullanıcı Ara", - "alert.user-search": "Search for a user here...", + "alert.user-search": "Burada bir kullanıcı ara...", "alert.find-group": "Bir Grup Ara", - "alert.group-search": "Search for a group here...", + "alert.group-search": "Burada bir grup ara...", "collapse-all": "Hepsini Kapat", "expand-all": "Hepsini Genişlet" } \ No newline at end of file diff --git a/public/language/tr/admin/manage/users.json b/public/language/tr/admin/manage/users.json index 7292583ff6..2df6499374 100644 --- a/public/language/tr/admin/manage/users.json +++ b/public/language/tr/admin/manage/users.json @@ -57,11 +57,11 @@ "create.password": "Parola", "create.password-confirm": "Parolayı Onayla", - "temp-ban.length": "Ban Length", + "temp-ban.length": "Yasaklama uzunluğu", "temp-ban.reason": "Reason (Optional)", "temp-ban.hours": "Saat", "temp-ban.days": "Gün", - "temp-ban.explanation": "Enter the length of time for the ban. Note that a time of 0 will be a considered a permanent ban.", + "temp-ban.explanation": "Yasağın süresini girin. 0'lık bir zamanın kalıcı bir yasak olarak sayılacağını unutmayın.", "alerts.confirm-ban": "Do you really want to ban this user permanently?", "alerts.confirm-ban-multi": "Do you really want to ban these users permanently?", @@ -70,10 +70,10 @@ "alerts.unban-success": "Kullanıcı(ların) yasağı kaldırıldı!", "alerts.lockout-reset-success": "Lockout(s) reset!", "alerts.flag-reset-success": "Flags(s) reset!", - "alerts.no-remove-yourself-admin": "You can't remove yourself as Administrator!", - "alerts.make-admin-success": "User is now administrator.", - "alerts.confirm-remove-admin": "Do you really want to remove this administrator?", - "alerts.remove-admin-success": "User is no longer administrator.", + "alerts.no-remove-yourself-admin": "Kendinizi Yönetici olarak kaldıramazsınız!", + "alerts.make-admin-success": "Kullanıcı şimdi yönetici.", + "alerts.confirm-remove-admin": "Bu yöneticiyi gerçekten kaldırmak istiyor musunuz?", + "alerts.remove-admin-success": "Kullanıcı artık yönetici değil.", "alerts.make-global-mod-success": "User is now global moderator.", "alerts.confirm-remove-global-mod": "Do you really want to remove this global moderator?", "alerts.remove-global-mod-success": "User is no longer global moderator.", diff --git a/public/language/tr/admin/menu.json b/public/language/tr/admin/menu.json index 33218682b8..f6c7f29289 100644 --- a/public/language/tr/admin/menu.json +++ b/public/language/tr/admin/menu.json @@ -49,7 +49,7 @@ "extend/widgets": "Bileşenler", "extend/rewards": "Ödüller", - "section-social-auth": "Social Authentication", + "section-social-auth": "Sosyal Kimlik Doğrulama", "section-plugins": "Eklentiler", "extend/plugins.install": "Eklenti Yükle", @@ -60,7 +60,7 @@ "advanced/logs": "Kayıtlar", "advanced/errors": "Hatalar", "advanced/cache": "Önbellek", - "development/logger": "Logger", + "development/logger": "Kaydedici", "development/info": "bilgi", "rebuild-and-restart-forum": "Rebuild & Restart Forum", @@ -68,11 +68,11 @@ "logout": "Çıkış", "view-forum": "Forumu Görüntüle", - "search.placeholder": "Search for settings", + "search.placeholder": "Ayarları ara", "search.no-results": "Sonuç yok...", "search.search-forum": "Search the forum for ", - "search.keep-typing": "Type more to see results...", - "search.start-typing": "Start typing to see results...", + "search.keep-typing": "Sonuçları görmek için daha fazla yazın...", + "search.start-typing": "Sonuçları görmek için yazmaya başlayın...", "connection-lost": "Connection to %1 has been lost, attempting to reconnect...", diff --git a/public/language/tr/admin/settings/general.json b/public/language/tr/admin/settings/general.json index bd1ba026cf..f3848ce044 100644 --- a/public/language/tr/admin/settings/general.json +++ b/public/language/tr/admin/settings/general.json @@ -27,7 +27,7 @@ "favicon.upload": "Yükle", "touch-icon": "Ana Ekran/Dokunmatik Simge", "touch-icon.upload": "Yükle", - "touch-icon.help": "Recommended size and format: 192x192, PNG format only. If no touch icon is specified, NodeBB will fall back to using the favicon.", + "touch-icon.help": "Önerilen boyut ve format: 192x192, sadece PNG formatı. Dokunma simgesi belirtilmemişse, NodeBB favicon kullanır.", "outgoing-links": "Harici Bağlantılar", "outgoing-links.warning-page": "Dışarı giden bağlantılar için uyarı sayfası kullan", "search-default-sort-by": "Aramada varsayılan sıralama", diff --git a/public/language/tr/admin/settings/post.json b/public/language/tr/admin/settings/post.json index 0e48e995b4..cd28316edd 100644 --- a/public/language/tr/admin/settings/post.json +++ b/public/language/tr/admin/settings/post.json @@ -24,8 +24,8 @@ "restrictions.max-title-length": "Maksimum Başlık Uzunluğu", "restrictions.min-post-length": "Minimum İleti Uzunluğu", "restrictions.max-post-length": "Maksimum İleti Uzunluğu", - "restrictions.days-until-stale": "Days until topic is considered stale", - "restrictions.stale-help": "If a topic is considered \"stale\", then a warning will be shown to users who attempt to reply to that topic.", + "restrictions.days-until-stale": "Konu eskimiş sayılana kadar geçen gün sayısı", + "restrictions.stale-help": "Bir konu \"eskimiş\" olarak kabul edilirse, o konuya cevap vermeye çalışan kullanıcılara bir uyarı gösterilecektir.", "timestamp": "Zaman Damgası", "timestamp.cut-off": "Date cut-off (in days)", "timestamp.cut-off-help": "Dates & times will be shown in a relative manner (e.g. \"3 hours ago\" / \"5 days ago\"), and localised into various\n\t\t\t\t\tlanguages. After a certain point, this text can be switched to display the localised date itself\n\t\t\t\t\t(e.g. 5 Nov 2016 15:30).30, or one month). Set to 0 to always display dates, leave blank to always display relative times.",
@@ -34,10 +34,10 @@
"teaser.last-reply": "Last – Show the latest reply, or a \"No replies\" placeholder if no replies",
"teaser.first": "İlk",
"unread": "Okunmamış Ayarları",
- "unread.cutoff": "Unread cutoff days",
- "unread.min-track-last": "Minimum posts in topic before tracking last read",
+ "unread.cutoff": "Okunmamış gün sınırı",
+ "unread.min-track-last": "Son okumayı takip etmeden önce konuya yapılan asgari gönderim",
"recent": "Güncel Ayarlar",
- "recent.categoryFilter.disable": "Disable filtering of topics in ignored categories on the /recent page",
+ "recent.categoryFilter.disable": "Son sayfada önemsenmeyen kategorilerde konu filtrelemeyi devre dışı bırak",
"signature": "İmza Ayarları",
"signature.disable": "İmzaları devre dışı bırak",
"signature.no-links": "İmzalarda linkleri devre dışı bırak",
@@ -50,5 +50,5 @@
"composer.custom-help": "Özel Yardım Metni",
"ip-tracking": "IP İzleme",
"ip-tracking.each-post": "Her ileti için IP Adresini takip et",
- "enable-post-history": "Enable Post History"
+ "enable-post-history": "Gönderi Geçmişini Etkinleştir"
}
\ No newline at end of file
diff --git a/public/language/tr/admin/settings/user.json b/public/language/tr/admin/settings/user.json
index a3a95605cf..eded464025 100644
--- a/public/language/tr/admin/settings/user.json
+++ b/public/language/tr/admin/settings/user.json
@@ -63,5 +63,5 @@
"email-post-notif": "Abone olduğum konulara cevap gelince bana e-posta gönder",
"follow-created-topics": "Kendi konularımı takip et",
"follow-replied-topics": "Cevap verdiğim konuları takip et",
- "default-notification-settings": "Default notification settings"
+ "default-notification-settings": "Varsayılan bildirim ayarları"
}
\ No newline at end of file
diff --git a/public/language/tr/modules.json b/public/language/tr/modules.json
index 15593b7dff..2f3d5263c7 100644
--- a/public/language/tr/modules.json
+++ b/public/language/tr/modules.json
@@ -22,7 +22,7 @@
"chat.delete_message_confirm": "Bu mesajı silmek istediğinden emin misin?",
"chat.retrieving-users": "Kullanıcılar alınıyor ...",
"chat.manage-room": "Sohbet Odasını Yönet",
- "chat.add-user-help": "Search for users here. When selected, the user will be added to the chat. The new user will not be able to see chat messages written before they were added to the conversation. Only room owners may remove users from chat rooms.",
+ "chat.add-user-help": "Burada kullanıcılar için arama yapın. Kullanıcı seçildiğinde sohbete eklenecektir. Yeni kullanıcı sohbete eklenmeden önce yazılmış olan sohbet mesajlarını göremeyecektir. Yalnızca oda sahipleri kullanıcıları sohbet odalarından kaldırabilir.",
"chat.confirm-chat-with-dnd-user": "Bu kullanıcı durumunu rahatsız etmeyin olarak ayarladı. Hala onunla sohbet etmek istiyor musun?",
"chat.rename-room": "Odanın adını değiştir",
"chat.rename-placeholder": "Oda isminizi buraya girin",
diff --git a/public/language/tr/register.json b/public/language/tr/register.json
index 89984e8573..42ad051df3 100644
--- a/public/language/tr/register.json
+++ b/public/language/tr/register.json
@@ -22,5 +22,5 @@
"interstitial.errors-found": "Kaydınınız tamamlanmadı:",
"gdpr_agree_data": "Bu web sitesinde kişisel bilgilerimin toplanmasını ve işlenmesini kabul ediyorum.",
"gdpr_agree_email": "Bu web sitesinden özet ve bildirim e-posta almaya izin veriyorum.",
- "gdpr_consent_denied": "You must give consent to this site to collect/process your information, and to send you emails."
+ "gdpr_consent_denied": "Bilgilerinizi toplamak/işlemek ve size e-posta göndermek için bu siteye onay vermelisiniz."
}
\ No newline at end of file
diff --git a/public/language/tr/user.json b/public/language/tr/user.json
index e319eb3854..e999014f2b 100644
--- a/public/language/tr/user.json
+++ b/public/language/tr/user.json
@@ -6,7 +6,7 @@
"joindate": "Katılım Tarihi",
"postcount": "İleti Sayısı",
"email": "E-posta",
- "confirm_email": "E-posta Adresini Onayla",
+ "confirm_email": "Eposta Adresini Onayla",
"account_info": "Hesap Bilgisi",
"ban_account": "Hesabı Dondur",
"ban_account_confirm": "Hesabı dondurmak istediğinizden emin misiniz!",
@@ -91,7 +91,7 @@
"has_no_upvoted_posts": "Bu kullanıcı henüz hiç bir gönderiyi artılamamış.",
"has_no_downvoted_posts": "Bu kullanıcı henüz hiç bir gönderiyi eksilememiş.",
"has_no_voted_posts": "Bu kullanıcının hiç oylanmış gönderisi yok.",
- "has_no_blocks": "You have blocked no users.",
+ "has_no_blocks": "Hiçbir kullanıcıyı engellemediniz.",
"email_hidden": "E-posta gizli",
"hidden": "gizli",
"paginate_description": "Sonsuz yükleme yerine konu ve iletileri sayfalara böl",
@@ -146,8 +146,8 @@
"info.moderation-note": "Moderasyon Notu",
"info.moderation-note.success": "Moderasyon notu kaydedildi",
"info.moderation-note.add": "Not ekle",
- "consent.title": "Your Rights & Consent",
- "consent.lead": "This community forum collects and processes your personal information.",
+ "consent.title": "Haklarınız & İzinleriniz",
+ "consent.lead": "Bu topluluk forumu kişisel bilgilerinizi toplar ve işler.",
"consent.intro": "We use this information strictly to personalise your experience in this community, as well as to associate the posts you make to your user account. During the registration step you were asked to provide a username and email address, you can also optionally provide additional information to complete your user profile on this website.
+