Compare commits
93 Commits
v23.03.80
...
release/23
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
da2b6504ae | ||
|
|
49be98662d | ||
|
|
a2c37a93d0 | ||
|
|
d6b575f017 | ||
|
|
063d91c25b | ||
|
|
54cf9ad495 | ||
|
|
aa569e127b | ||
|
|
7e7b9728af | ||
|
|
c72cf64369 | ||
|
|
7aa68ce896 | ||
|
|
c204b36aa9 | ||
|
|
38584bc735 | ||
|
|
2e873fc49b | ||
|
|
5e898d68c2 | ||
|
|
ed9d2e1d02 | ||
|
|
07fb6bd90a | ||
|
|
11003775a1 | ||
|
|
79d8f35dca | ||
|
|
a1d5727a10 | ||
|
|
4e9c4f9752 | ||
|
|
d0e71114de | ||
|
|
a6db2aac70 | ||
|
|
a829b6c991 | ||
|
|
05a6d055b4 | ||
|
|
64f8df4dd2 | ||
|
|
8dcc231bdc | ||
|
|
5efe5cbb88 | ||
|
|
d2f8392ea2 | ||
|
|
57d79bf3fa | ||
|
|
13a573c7f6 | ||
|
|
64a1de8729 | ||
|
|
669ad9f6e2 | ||
|
|
269e29244a | ||
|
|
0b6da7b799 | ||
|
|
6eee09a560 | ||
|
|
2ad5a593b4 | ||
|
|
970ff95fd0 | ||
|
|
5a1a3fbd06 | ||
|
|
9493530b9c | ||
|
|
ec76df5e47 | ||
|
|
095c1fa4c3 | ||
|
|
41874701e6 | ||
|
|
58de466ad5 | ||
|
|
5800180836 | ||
|
|
2b2a864041 | ||
|
|
90399930ec | ||
|
|
8c4ac46a69 | ||
|
|
31951db498 | ||
|
|
fd593bb483 | ||
|
|
1243aef243 | ||
|
|
41ce874f77 | ||
|
|
4d69b70e02 | ||
|
|
b5a46b35f8 | ||
|
|
33ab3fd921 | ||
|
|
357d418cb4 | ||
|
|
76d3484a1e | ||
|
|
aef86017b2 | ||
|
|
40358cba85 | ||
|
|
3ee6877b15 | ||
|
|
e7a0d90746 | ||
|
|
484188c4e1 | ||
|
|
3e967e53bf | ||
|
|
c2f1e0de53 | ||
|
|
69a1d5477e | ||
|
|
a8f29de87a | ||
|
|
275a4f9222 | ||
|
|
95f4c5b9e1 | ||
|
|
d7412c965c | ||
|
|
a94dfde7f7 | ||
|
|
6c7e12c471 | ||
|
|
9949ba8f6d | ||
|
|
2c3ce1e88b | ||
|
|
33533a75bd | ||
|
|
8c6671265c | ||
|
|
bfa643557d | ||
|
|
2b0f6a1d4d | ||
|
|
0e8deee005 | ||
|
|
fe60d11ba3 | ||
|
|
e9d3862537 | ||
|
|
e03b2e9adf | ||
|
|
566743bc19 | ||
|
|
a3b4f05e2c | ||
|
|
977e9bbf99 | ||
|
|
ad11a509aa | ||
|
|
abbe68f9ab | ||
|
|
b7b0749cd8 | ||
|
|
f8ae06f8a7 | ||
|
|
9946ba008b | ||
|
|
376916212d | ||
|
|
1ea6ffe416 | ||
|
|
2d99ae0404 | ||
|
|
88eeed74da | ||
|
|
0032d417ac |
@@ -57,4 +57,4 @@ Dependencies:
|
||||
'frameworks/kdbusaddons': '@latest-kf6'
|
||||
|
||||
Options:
|
||||
require-passing-tests-on: [ 'Linux/Qt5', 'FreeBSD', 'Windows' ]
|
||||
require-passing-tests-on: [ 'Linux/Qt5', 'FreeBSD', 'Windows/Qt5' ]
|
||||
|
||||
@@ -8,8 +8,8 @@ cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
# KDE Applications version, managed by release script.
|
||||
set(RELEASE_SERVICE_VERSION_MAJOR "23")
|
||||
set(RELEASE_SERVICE_VERSION_MINOR "03")
|
||||
set(RELEASE_SERVICE_VERSION_MICRO "80")
|
||||
set(RELEASE_SERVICE_VERSION_MINOR "04")
|
||||
set(RELEASE_SERVICE_VERSION_MICRO "3")
|
||||
set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
|
||||
|
||||
project(NeoChat VERSION ${RELEASE_SERVICE_VERSION})
|
||||
@@ -17,7 +17,7 @@ project(NeoChat VERSION ${RELEASE_SERVICE_VERSION})
|
||||
set(KF_MIN_VERSION "5.91.0")
|
||||
set(QT_MIN_VERSION "5.15.2")
|
||||
if (ANDROID)
|
||||
set(QT_MIN_VERSION "5.15.8")
|
||||
set(QT_MIN_VERSION "5.15.10")
|
||||
endif()
|
||||
|
||||
find_package(ECM ${KF_MIN_VERSION} REQUIRED NO_MODULE)
|
||||
|
||||
@@ -47,6 +47,7 @@ android {
|
||||
compileSdkVersion androidCompileSdkVersion.toInteger()
|
||||
|
||||
buildToolsVersion androidBuildToolsVersion
|
||||
ndkVersion androidNdkVersion
|
||||
|
||||
sourceSets {
|
||||
main {
|
||||
|
||||
@@ -59,6 +59,8 @@ private Q_SLOTS:
|
||||
void receiveRichtextIn();
|
||||
void receiveRichMxcUrl();
|
||||
void receiveRichPlainUrl();
|
||||
|
||||
void receiveLineSeparator();
|
||||
};
|
||||
|
||||
#ifdef QUOTIENT_07
|
||||
@@ -161,14 +163,21 @@ void TextHandlerTest::initTestCase()
|
||||
|
||||
void TextHandlerTest::allowedAttributes()
|
||||
{
|
||||
const QString testInputString = QStringLiteral("<p><span data-mx-spoiler><font color=#FFFFFF>Test</font><span></p>");
|
||||
const QString testOutputString = QStringLiteral("<p><span data-mx-spoiler><font color=#FFFFFF>Test</font><span></p>");
|
||||
const QString testInputString1 = QStringLiteral("<p><span data-mx-spoiler><font color=#FFFFFF>Test</font><span></p>");
|
||||
const QString testOutputString1 = QStringLiteral("<p><span data-mx-spoiler><font color=#FFFFFF>Test</font><span></p>");
|
||||
// Handle urls where the href has either single (') or double (") quotes.
|
||||
const QString testInputString2 = QStringLiteral("<p><a href=\"https://kde.org\">link</a><a href='https://kde.org'>link</a></p>");
|
||||
const QString testOutputString2 = QStringLiteral("<p><a href=\"https://kde.org\">link</a><a href='https://kde.org'>link</a></p>");
|
||||
|
||||
TextHandler testTextHandler;
|
||||
testTextHandler.setData(testInputString);
|
||||
testTextHandler.setData(testInputString1);
|
||||
|
||||
QCOMPARE(testTextHandler.handleSendText(), testOutputString);
|
||||
QCOMPARE(testTextHandler.handleRecieveRichText(), testOutputString);
|
||||
QCOMPARE(testTextHandler.handleSendText(), testOutputString1);
|
||||
QCOMPARE(testTextHandler.handleRecieveRichText(), testOutputString1);
|
||||
|
||||
testTextHandler.setData(testInputString2);
|
||||
QCOMPARE(testTextHandler.handleSendText(), testOutputString2);
|
||||
QCOMPARE(testTextHandler.handleRecieveRichText(), testOutputString2);
|
||||
}
|
||||
|
||||
void TextHandlerTest::stripDisallowedTags()
|
||||
@@ -319,11 +328,19 @@ void TextHandlerTest::receivePlainTextIn()
|
||||
const QString testOutputStringRich = QStringLiteral("<plain text in tag bracket><br>Test link <a href=\"https://kde.org\">https://kde.org</a>.");
|
||||
QString testOutputStringPlain = QStringLiteral("<plain text in tag bracket>\nTest link https://kde.org.");
|
||||
|
||||
// Make sure quotes are maintained in a plain string.
|
||||
const QString testInputString2 = QStringLiteral("last line is \"Time to switch to a new topic.\"");
|
||||
const QString testOutputString2 = QStringLiteral("last line is \"Time to switch to a new topic.\"");
|
||||
|
||||
TextHandler testTextHandler;
|
||||
testTextHandler.setData(testInputString);
|
||||
|
||||
QCOMPARE(testTextHandler.handleRecieveRichText(Qt::PlainText), testOutputStringRich);
|
||||
QCOMPARE(testTextHandler.handleRecievePlainText(), testOutputStringPlain);
|
||||
|
||||
testTextHandler.setData(testInputString2);
|
||||
QCOMPARE(testTextHandler.handleRecieveRichText(Qt::PlainText), testOutputString2);
|
||||
QCOMPARE(testTextHandler.handleRecievePlainText(), testOutputString2);
|
||||
}
|
||||
|
||||
void TextHandlerTest::receiveStripNewlines()
|
||||
@@ -332,6 +349,9 @@ void TextHandlerTest::receiveStripNewlines()
|
||||
const QString testInputStringRich = QStringLiteral("Test<br>many<br />new<br>lines.");
|
||||
const QString testOutputString = QStringLiteral("Test many new lines.");
|
||||
|
||||
const QString testInputStringPlain2 = QStringLiteral("* List\n* Items");
|
||||
const QString testOutputString2 = QStringLiteral("List Items");
|
||||
|
||||
TextHandler testTextHandler;
|
||||
testTextHandler.setData(testInputStringPlain);
|
||||
|
||||
@@ -339,9 +359,11 @@ void TextHandlerTest::receiveStripNewlines()
|
||||
QCOMPARE(testTextHandler.handleRecieveRichText(Qt::PlainText, nullptr, nullptr, true), testOutputString);
|
||||
|
||||
testTextHandler.setData(testInputStringRich);
|
||||
|
||||
QCOMPARE(testTextHandler.handleRecievePlainText(Qt::RichText, true), testOutputString);
|
||||
QCOMPARE(testTextHandler.handleRecieveRichText(Qt::RichText, nullptr, nullptr, true), testOutputString);
|
||||
|
||||
testTextHandler.setData(testInputStringPlain2);
|
||||
QCOMPARE(testTextHandler.handleRecievePlainText(Qt::RichText, true), testOutputString2);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -478,5 +500,13 @@ void TextHandlerTest::receiveRichPlainUrl()
|
||||
QCOMPARE(testTextHandler.handleRecieveRichText(Qt::RichText), testOutputStringMxId);
|
||||
}
|
||||
|
||||
void TextHandlerTest::receiveLineSeparator()
|
||||
{
|
||||
auto text = QStringLiteral("foo\u2028bar");
|
||||
TextHandler textHandler;
|
||||
textHandler.setData(text);
|
||||
QCOMPARE(textHandler.handleRecievePlainText(Qt::PlainText, true), QStringLiteral("foo bar"));
|
||||
}
|
||||
|
||||
QTEST_MAIN(TextHandlerTest)
|
||||
#include "texthandlertest.moc"
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
<name xml:lang="eu">NeoChat</name>
|
||||
<name xml:lang="fi">NeoChat</name>
|
||||
<name xml:lang="fr">NeoChat</name>
|
||||
<name xml:lang="gl">NeoChat</name>
|
||||
<name xml:lang="hu">NeoChat</name>
|
||||
<name xml:lang="ia">Neochat</name>
|
||||
<name xml:lang="id">NeoChat</name>
|
||||
@@ -47,8 +48,8 @@
|
||||
<summary>A client for matrix, the decentralized communication protocol</summary>
|
||||
<summary xml:lang="ar">عميل لماتركس، ميفاق الاتصال اللامركزي</summary>
|
||||
<summary xml:lang="az">Matrix üçün müştəri, mərkəzləşməmiş kommunikasiya protokolu</summary>
|
||||
<summary xml:lang="ca">Un client per al Matrix, el protocol de comunicacions descentralitzat</summary>
|
||||
<summary xml:lang="ca-valencia">Un client per a Matrix, el protocol de comunicacions descentralitzat</summary>
|
||||
<summary xml:lang="ca">Un client de Matrix, el protocol de comunicacions descentralitzat</summary>
|
||||
<summary xml:lang="ca-valencia">Un client de Matrix, el protocol de comunicacions descentralitzat</summary>
|
||||
<summary xml:lang="cs">Klient pro decentralizovaný komunikační protokol matrix</summary>
|
||||
<summary xml:lang="de">Ein Programm für Matrix, das dezentrale Kommunikationsprotokoll</summary>
|
||||
<summary xml:lang="el">Ένας πελάτης για το Matrix, το αποκεντρωμένο πρωτόκολλο επικοινωνίας</summary>
|
||||
@@ -57,6 +58,7 @@
|
||||
<summary xml:lang="eu">Matrix, deszentralizatutako komunikazio protokolorako bezero bat</summary>
|
||||
<summary xml:lang="fi">Asiakas Matrixille, hajautetulle viestintäyhteyskäytännölle</summary>
|
||||
<summary xml:lang="fr">Un client pour « Matrix », le protocole décentralisé de communications.</summary>
|
||||
<summary xml:lang="gl">Un cliente para Matrix, o protocolo de comunicación descentralizada</summary>
|
||||
<summary xml:lang="hu">Kliens a matrixhoz, a decentralizált kommunikációs protokollhoz</summary>
|
||||
<summary xml:lang="ia">Un cliente per Matrix, le protocollo de communication decentralisate</summary>
|
||||
<summary xml:lang="id">Klien untuk matrix, protokol komunikasi terdesentralisasi</summary>
|
||||
@@ -65,7 +67,7 @@
|
||||
<summary xml:lang="ka">კლიენტი Matrix-სთვის, დეცენტრალიზებული კომუნიკაციის პროტოკოლისთვის</summary>
|
||||
<summary xml:lang="ko">Matrix, 분산 대화 프로토콜 클라이언트</summary>
|
||||
<summary xml:lang="nl">Een client voor matrix, het gedecentraliseerde communicatieprotocol</summary>
|
||||
<summary xml:lang="nn">Ein klient for Matrix, den desentraliserte lynmeldingsprotokollen</summary>
|
||||
<summary xml:lang="nn">Ein klient for Matrix – protokollen for desentralisert kommunikasjon</summary>
|
||||
<summary xml:lang="pa">ਮੈਟਰਿਕਸ, ਸਰਬ-ਸਾਂਝੇ ਸੰਚਾਰ ਪਰੋਟੋਕਾਲ, ਲਈ ਕਲਾਈਂਟ ਹੈ</summary>
|
||||
<summary xml:lang="pl">Program do obsługi matriksa, rozproszonego protokołu porozumiewania się</summary>
|
||||
<summary xml:lang="pt">Um cliente para o Matrix, o protocolo de comunicação descentralizado</summary>
|
||||
@@ -74,104 +76,90 @@
|
||||
<summary xml:lang="sk">Klient pre matrix, decentralizovaný komunikačný protokol</summary>
|
||||
<summary xml:lang="sl">Odjemalec za matrix, decentralizirani komunikacijski protokol</summary>
|
||||
<summary xml:lang="sv">En klient för Matrix, det decentraliserade kommunikationsprotokollet</summary>
|
||||
<summary xml:lang="ta">மையமில்லா தகவல் பரிமாற்ற நெறிமுறையான மேட்ரிக்ஸுக்கான செயலி</summary>
|
||||
<summary xml:lang="tr">Merkezi olmayan iletişim protokolü Matrix için bir istemci</summary>
|
||||
<summary xml:lang="uk">Клієнт matrix, децентралізованого протоколу обміну даними</summary>
|
||||
<summary xml:lang="x-test">xxA client for matrix, the decentralized communication protocolxx</summary>
|
||||
<summary xml:lang="zh-CN">分布式通讯协议 Matrix 的客户端</summary>
|
||||
<description>
|
||||
<p>NeoChat is a Matrix client. It allows you to send text messages, videos and audio files to your family, colleagues and friends using the Matrix protocol.</p>
|
||||
<p xml:lang="ar">نيوتشات هو عميل ماتركس Matrix. يتيح لك إرسال رسائل نصية ومقاطع فيديو وملفات صوتية إلى عائلتك وزملائك وأصدقائك باستخدام بروتوكول ماتركس</p>
|
||||
<p xml:lang="az">NeoChat Mtrix müştərisidir. O, Matrix protokolundan istifadə edərək, ailənizə, dostlarınıza, iş yoldaşlarınıza mətn, səsli və görüntülü ismarıclar göndərməyə imkan verir.</p>
|
||||
<p xml:lang="ca">El NeoChat és un client de Matrix. Permet enviar missatges de text, fitxers de vídeo i d'àudio a la família, col·legues i amics usant el protocol Matrix.</p>
|
||||
<p xml:lang="ca-valencia">NeoChat és un client de Matrix. Permet enviar missatges de text, fitxers de vídeo i d'àudio a la família, col·legues i amics utilitzant el protocol Matrix.</p>
|
||||
<p xml:lang="de">NeoChat ist ein Matrix-Client. Er ermöglicht Ihnen das Senden von Textnachrichten, Videos und Audiodateien an Ihre Familie, Kollegen und Freunde unter Verwendung des Matrix-Protokolls.</p>
|
||||
<p xml:lang="el">Το NeoChat είναι μια εφαρμογή του Matrix. Σας επιτρέπει να στέλνετε μηνύματα κειμένου, βίντεο και ήχο στην οικογένειά σας, σε συναδέλφους και φίλους με το πρωτόκολλο Matrix.</p>
|
||||
<p xml:lang="en-GB">NeoChat is a Matrix client. It allows you to send text messages, videos and audio files to your family, colleagues and friends using the Matrix protocol.</p>
|
||||
<p xml:lang="es">NeoChat es un cliente para Matrix. Le permite enviar mensajes de texto, vídeos y archivos de sonido a su familia, compañeros de trabajo y amigos usando el protocolo Matrix.</p>
|
||||
<p xml:lang="eu">NeoChat Matrix bezero bat da. Familiari, lankideei eta lagunei testu-mezuak, bideoak eta audio-fitxategiak bidaltzeko aukera ematen du, Matrix protokoloa erabiliz.</p>
|
||||
<p xml:lang="fi">NeoChat on Matrix-asiakas. Sillä voi lähettää perheelle, tuttaville ja kavereille tekstiviestejä sekä video- ja äänitiedostoja Matrix-yhteyskäytännöllä.</p>
|
||||
<p xml:lang="fr">NeoChat est un client Matrix. Il vous permet d'envoyer des messages de texte, des vidéos et des fichiers audio à votre famille, vos collègues et vos amis en utilisant le protocole Matrix.</p>
|
||||
<p xml:lang="hu">A NeoChat egy Matrix kliens. Szöveges üzeneteket, videókat ésaudio fájlokat küldhet családjának, kollégáinak és barátainak a Matrix protokoll használatával.</p>
|
||||
<p xml:lang="ia">NeoChat es un cliente de Matrix. Illo te permitte inviar messager de texto, files de video e audio a tu familia, collegas e amicos usante le protocollo de Matrix.</p>
|
||||
<p xml:lang="id">NeoChat adalah sebuah klien Matrix. Memungkinkan Anda untuk mengirim pesan teks, file video dan audio ke keluarga, kolega dan teman Anda menggunakan protokol Matrix.</p>
|
||||
<p xml:lang="ie">NeoChat es un cliente de Matrix. On posse usar it por inviar missages textual, video- e audiofiles a su familie, colegos e amics med li protocol Matrix.</p>
|
||||
<p xml:lang="it">NeoChat è un client Matrix. Ti consente di inviare messaggi di testo, file video e audio a familiari, colleghi e amici utilizzando il protocollo Matrix.</p>
|
||||
<p xml:lang="ka">NeoChat არის Matrix კლიენტი. ის საშუალებას გაძლევთ გაგზავნოთ ტექსტური შეტყობინებები, ვიდეოები და აუდიო ფაილები თქვენს ოჯახს, კოლეგებსა და მეგობრებს მატრიქსის პროტოკოლის გამოყენებით.</p>
|
||||
<p xml:lang="ko">NeoChat은 Matrix 클라이언트입니다. Matrix 프로토콜을 사용하여 가족, 동료, 친구에게 텍스트 메시지, 동영상, 오디오 파일을 전송할 수 있습니다.</p>
|
||||
<p xml:lang="nl">NeoChat is een Matrix-client. Het biedt u het verzenden van tekstberichten, video's en geluidsbestanden naar uw familie, collega's en vrienden met het Matrix-protocol.</p>
|
||||
<p xml:lang="pl">NeoChat jest programem do Matrisa. Umożliwia wysyłanie wiadomości tekstowych, filmów oraz dźwięku do twojej rodziny, znajomych oraz przyjaciół poprzez protokół Matriksa.</p>
|
||||
<p xml:lang="pt">O NeoChat é um cliente do Matrix. O mesmo permite-lhe enviar mensagens de texto, ficheiros de vídeo e áudio para a sua família, colegas e amigos com o protocolo Matrix.</p>
|
||||
<p xml:lang="pt-BR">O NeoChat é um cliente Matrix. Ele permite a você enviar mensagens de texto, arquivos de vídeo e áudio para seus familiares, colegas e amigos usando o protocolo Matrix.</p>
|
||||
<p xml:lang="ru">NeoChat — это клиент, поддерживающий работу с протоколом Matrix. Он позволяет отправлять текстовые сообщения, видео и аудиофайлы.</p>
|
||||
<p xml:lang="sk">NeoChat je Matrix klient. Umožňuje vám posielať textové správy, videá a zvukové súbory rodine, kolegom a priateľom pomocou protokolu Matrix.</p>
|
||||
<p xml:lang="sl">NeoChat je odjemalec Matrixa. Dovoljuje vam pošiljanje besedilnih sporočil, videoposnetkov in zvočnih datotek vaši družini, kolegom in prijateljem z uporabo protokola Matrix.</p>
|
||||
<p xml:lang="sv">NeoChat är en Matrix-klient. Den låter dig skicka textmeddelanden, videor och ljudfiler till din familj, kollegor och vänner med användning av Matrix-protokollet.</p>
|
||||
<p xml:lang="tr">NeoChat, bir Matrix istemcisidir. Matrix protokolünü kullanarak ailenize, iş arkadaşlarınıza, arkadaşlarınıza ve başkalarına metin iletileri, video ve ses dosyaların göndermenize olanak verir.</p>
|
||||
<p xml:lang="uk">NeoChat — клієнт мережі обміну повідомленнями Matrix. За допомогою цієї програми ви зможете надсилати текстові повідомлення, відео та звукові файли вашій родині, колегам та друзям за допомогою протоколу Matrix.</p>
|
||||
<p xml:lang="x-test">xxNeoChat is a Matrix client. It allows you to send text messages, videos and audio files to your family, colleagues and friends using the Matrix protocol.xx</p>
|
||||
<p xml:lang="zh-CN">NeoChat 是一个 Matrix 客户端。 它允许您使用 Matrix 协议向您的家人、同事和朋友发送文本消息、视频和音频文件。</p>
|
||||
<p>Matrix is a decentralized communication protocol, putting the user back in control. Currently NeoChat implements large part of the protocol with the exception of encrypted chats and video chat.</p>
|
||||
<p xml:lang="ar">ماتريكس هو بروتوكول اتصال لامركزي ، يعيد المستخدم إلى السيطرة. يطبق نيوتشات حاليًا جزءًا كبيرًا من الميفاق باستثناء الدردشات المشفرة ودردشة الفيديو.</p>
|
||||
<p xml:lang="az">Matrix, istifadəçini nəzarətdə saxlayan, mərkəzləşməmişi rabitə protokoludur. NeoChat, söhbətin və video əlaqəsinin şifrələnməsindən başqa bir çox protokolları həyata keçirə bilir.</p>
|
||||
<p xml:lang="ca">Matrix és un protocol de comunicacions descentralitzat, que retorna el control a l'usuari. Actualment el NeoChat implementa una gran part del protocol amb l'excepció dels xats encriptats i els xats de vídeo.</p>
|
||||
<p xml:lang="ca-valencia">Matrix és un protocol de comunicacions descentralitzat, que retorna el control a l'usuari. Actualment NeoChat implementa una gran part del protocol amb l'excepció dels xats encriptats i els xats de vídeo.</p>
|
||||
<p xml:lang="de">Matrix ist ein dezentralisiertes Kommunikationsprotokoll, das dem Benutzer wieder die Kontrolle zurückgibt. Derzeit implementiert NeoChat einen großen Teil des Protokolls mit der Ausnahme von verschlüsselten Chats und Video-Chat.</p>
|
||||
<p xml:lang="el">Το Matrix είναι ένα αποκεντρωμένο πρωτόκολλο επικοινωνίας, δίνοντας πίσω στον χρήστη τον έλεγχο. Προς το παρόν το NeoChat υλοποιεί ένα μεγάλο μέρος του πρωτοκόλλου με εξαίρεση τις κρυπτογραφημένες συνομιλίες και τη συνομιλία με βίντεο.</p>
|
||||
<p xml:lang="en-GB">Matrix is a decentralised communication protocol, putting the user back in control. Currently NeoChat implements large part of the protocol with the exception of encrypted chats and video chat.</p>
|
||||
<p xml:lang="es">Matrix es un protocolo de comunicaciones descentralizado, que devuelve el control al usuario. En la actualidad, NeoChat implementa gran parte del protocolo con la excepción de chats cifrados y chats de vídeo.</p>
|
||||
<p xml:lang="eu">Matrix komunikazio-protokolo deszentralizatu bat da, erabiltzaileari kontrola itzultzen diona. Gaur egun, NeoChat-ek protokoloaren zati handi bat inplementatzen du, berriketa zifratuak eta bideo berriketak izan ezik.</p>
|
||||
<p xml:lang="fi">Matrix on hajautettu viestintäyhteyskäytäntö, joka antaa hallinnan takaisin käyttäjille. NeoChat tarjoaa nykyisellään valtaosan yhteyskäytännöstä salattuja keskustelu- ja videokeskusteluja lukuun ottamatta.</p>
|
||||
<p xml:lang="fr">Matrix est un protocole de communication décentralisé, donnant le contrôle à l'utilisateur. Actuellement, NeoChat met en œuvre une grande partie du protocole, à l'exception des discussions chiffrées et du chat vidéo.</p>
|
||||
<p xml:lang="hu">A Matrix egy decentralizált kommunikációs protokoll, amely a felhasználók kezébe adja az irányítást.</p>
|
||||
<p xml:lang="ia">Matrix es un protocollo de communication decentrate, ponente le usator in le controlo. Currentemente NeoChat implementa un grande parte del protocollo con le exception de conversationes cryptate e conversationes video.</p>
|
||||
<p xml:lang="id">Matrix adalah protokol komunikasi terdesentralisasi, menempatkan pengguna kembali dalam kendali. Saat ini NeoChat mengimplementasikan sebagian besar protokol dengan pengecualian obrolan terenkripsi dan obrolan video.</p>
|
||||
<p xml:lang="ie">Matrix es un decentralisat protocol de communication quel retroda li control a un usator. Actualmen, NeoChat implementa un grand parte del protocol except ciffrat conversationes e videotelefonada.</p>
|
||||
<p xml:lang="it">Matrix è un protocollo di comunicazione decentralizzato, che restituisce all'utente il controllo. Attualmente NeoChat implementa gran parte del protocollo ad eccezione delle chat cifrate e delle chat video.</p>
|
||||
<p xml:lang="ka">Matrix -ი დეცენტრალიზებული კომუნიკაციის პროტოკოლია, რომელიც მომხმარებელს კონტროლის უფლებას უბრუნებს. ამჟამად NeoChat-ს პროტოკოლის ძირითადი ნაწილის მხარდაჭერა გააჩნია, დაშიფვრისა და ვიდეოჩატის გამოკლებით.</p>
|
||||
<p xml:lang="ko">Matrix는 사용자에게 제어권을 돌려 주는 분산 통신 프로토콜입니다. NeoChat은 암호화된 대화 및 영상 통화를 제외한 프로토콜의 대부분 기능을 구현합니다.</p>
|
||||
<p xml:lang="nl">Matrix is een gedecentraliseerd communicatieprotocol, dat de gebruiker de controle teruggeeft. Op dit moment implementeert NeoChat grote delen van het protocol met de uitzondering van versleutelde chats en video-chat.</p>
|
||||
<p xml:lang="pl">Matrix jest protokołem rozproszonego porozumiewania się oddający użytkownikowi jego władzę. Obecnie NeoChat obsługuje dużą część protokołu poza szyfrowanymi rozmowami tekstowymi i z obrazem.</p>
|
||||
<p xml:lang="pt">O Matrix é um protocolo de comunicações descentralizado, colocando de novo o utilizador no poder. De momento, o NeoChat implementa uma boa parte do protocolo, com a excepção das conversas encriptadas e as conversas de vídeo.</p>
|
||||
<p xml:lang="pt-BR">O Matrix é um protocolo de comunicação descentralizado, colocando o usuário de volta no controle. Atualmente o NeoChat implementa grande parte do protocolo com a exceção de bate-papos criptografados e bate-papo por vídeo.</p>
|
||||
<p xml:lang="ru">Matrix — это децентрализованный коммуникационный протокол, возвращающий пользователю контроль над своими данными. В настоящее время в приложении NeoChat реализована поддержка большей части протокола, за исключением зашифрованных чатов и видеочата.</p>
|
||||
<p xml:lang="sk">Matrix je decentralizovaný komunikačný protokol, ktorý používateľovi vracia kontrolu. V súčasnosti NeoChat implementuje veľkú časť protokolu s výnimkou šifrovaných chatov a videohovorov.</p>
|
||||
<p xml:lang="sl">Matrix je decentraliziran komunikacijski protokol, kjer ima uporabnik uporabnik kontrolo rabe. Trenutno ima NeoChat izveden velik del protokola z izjemo šifriranih klepetov in video klepetov.</p>
|
||||
<p xml:lang="sv">Matrix är ett decentraliserat kommunikationsprotokoll, som ger tillbaka kontrollen till användaren. För närvarande implementerar NeoChat en stor del av protokollet, med undantag för krypterad chatt och videochatt.</p>
|
||||
<p xml:lang="tr">Matrix; tam denetimi kullanıcıya bırakan, merkezi olmayan bir iletişim protokolüdür. Şu anda NeoChat, uçtan uca şifrelenmiş metin ve video sohbetleri dışında protokolün büyük bir bölümünü bünyesinde bulundurur.</p>
|
||||
<p xml:lang="uk">Matrix — протокол децентралізованого спілкування, який передає контроль над даними користувачеві. У поточній версії NeoChat реалізовано більшу частину протоколу, окрім зашифрованого спілкування та відеоспілкування.</p>
|
||||
<p xml:lang="x-test">xxMatrix is a decentralized communication protocol, putting the user back in control. Currently NeoChat implements large part of the protocol with the exception of encrypted chats and video chat.xx</p>
|
||||
<p xml:lang="zh-CN">Matrix 是一个分布式通讯协议,使用户重新得到控制权。 目前,NeoChat 实现了协议的大部分,除了加密聊天和视频聊天。</p>
|
||||
<p>NeoChat works both on mobile and desktop while providing a consistent user experience.</p>
|
||||
<p xml:lang="ar">يعمل نيوتشات على كل من الأجهزة المحمولة وسطح المكتب مع توفير تجربة مستخدم متسقة.</p>
|
||||
<p xml:lang="az">Vahid istifadəçi interfeysi ilə təmin olunan NeoChat, həm mobil telefonda həm də kompyuterlərdə işləyir.</p>
|
||||
<p xml:lang="ca">El NeoChat funciona en els mòbils i a l'escriptori, proporcionant una experiència d'usuari coherent.</p>
|
||||
<p xml:lang="ca-valencia">NeoChat funciona en els mòbils i en l'escriptori, proporcionant una experiència d'usuari coherent.</p>
|
||||
<p xml:lang="de">NeoChat funktioniert sowohl auf Mobilgeräten als auch auf dem PC und bietet ein einheitliches Benutzererlebnis.</p>
|
||||
<p xml:lang="el">Το NeoChat λειτουργεί και στα κινητά και στους υπολογιστές γραφείου παρέχοντας μια αδιάλειπτη εμπειρία χρήσης.</p>
|
||||
<p xml:lang="en-GB">NeoChat works both on mobile and desktop while providing a consistent user experience.</p>
|
||||
<p xml:lang="es">NeoChat funciona en móviles y en el escritorio a la vez que proporciona una experiencia de usuario consistente.</p>
|
||||
<p xml:lang="eu">NeoChat mugikorretan eta mahaigainean dabil, erabiltzaile esperientzia koherentea eskainiz.</p>
|
||||
<p xml:lang="fi">NeoChat toimii sekä mobiili- että työpöytäalustoilla tarjoten yhdenmukaisen käyttökokemuksen.</p>
|
||||
<p xml:lang="fr">NeoChat fonctionne aussi bien sur les mobiles que sur les ordinateurs de bureau, tout en offrant une expérience utilisateur cohérente.</p>
|
||||
<p xml:lang="hu">A NeoChat mobilon és asztali számítógépen is működik, egységes felhasználói élményt nyújtva.</p>
|
||||
<p xml:lang="ia">NeoChat functiona sia sur mobile que ur scriptorio durante que forni un experientia de usator consistente.</p>
|
||||
<p xml:lang="id">NeoChat berfungsi baik di ponsel dan desktop sambil memberikan pengalaman pengguna yang konsisten.</p>
|
||||
<p xml:lang="ie">NeoChat supporta amb computatores e aparates mobil, ancor providente un consistent experientie de usator.</p>
|
||||
<p xml:lang="it">NeoChat funziona sia su dispositivi mobili che desktop, fornendo un'esperienza utente coerente.</p>
|
||||
<p xml:lang="ka">NeoChat მუშაობს როგორც მობილურ, ისე ჩვეულებრივ კომპიუტერებზე იმ დროს, როცა მომხმარებლის ინტერფეისი არ იცვლება.</p>
|
||||
<p xml:lang="ko">NeoChat은 모바일과 데스크톱 모두에서 일관된 사용자 경험을 제공합니다.</p>
|
||||
<p xml:lang="nl">NeoChat werkt zowel op de mobiel en het bureaublad met het leveren van een consistente gebruikerservaring.</p>
|
||||
<p xml:lang="pl">NeoChat działa zarówno na urządzeniach przenośnych jak i biurkowych, zapewniając spójne wrażenia użytkownika</p>
|
||||
<p xml:lang="pt">O NeoChat funciona tanto em dispositivos móveis como no computador, fornecendo uma experiência de utilizador consistente.</p>
|
||||
<p xml:lang="pt-BR">O NeoChat funciona tanto no celular como no computador enquanto fornece uma experiência consistente ao usuário.</p>
|
||||
<p xml:lang="ru">NeoChat работает как на мобильных устройствах, так и на настольных компьютерах, обеспечивая единый пользовательский интерфейс.</p>
|
||||
<p xml:lang="sk">NeoChat funguje na mobilných aj stolových počítačoch a poskytuje konzistentný používateľský zážitok.</p>
|
||||
<p xml:lang="sl">NeoChat deluje tako na mobilnih kot na namiznih platformah z zagotavljanjem konsistentne uporabniške izkušnje.</p>
|
||||
<p xml:lang="sv">NeoChat fungerar både på mobil och skrivbord och tillhandahåller en konsekvent användarupplevelse.</p>
|
||||
<p xml:lang="tr">NeoChat, hem masaüstü hem de taşınabilir ortamlarda çalışarak tutarlı bir kullanıcı deneyimi sunar.</p>
|
||||
<p xml:lang="uk">NeoChat працює на мобільних пристроях та звичайних комп'ютерах, маючи однорідний інтерфейс на усіх підтримуваних пристроях.</p>
|
||||
<p xml:lang="x-test">xxNeoChat works both on mobile and desktop while providing a consistent user experience.xx</p>
|
||||
<p xml:lang="zh-CN">NeoChat 在移动设备和桌面上均可用,并提供一致的用户体验。</p>
|
||||
<p>NeoChat is a client for Matrix, the decentralized communication protocol for instant messaging. It allows you to send text messages, videos and audio files to your family, colleagues and friends. It uses KDE frameworks and most notably Kirigami
|
||||
to provide a convergent experience across multiple platforms.</p>
|
||||
<p xml:lang="ar">نيوتشات هو عميل ماتركس Matrix، (ميفاق الاتصال اللامركزي للمراسلة الفورية). يتيح لك نيوتشات إرسال رسائل نصية ومقاطع فيديو وملفات صوتية إلى عائلتك وزملائك وأصدقائك. يستخدم أطر عمل كيدي وأبرزها Kirigami لتوفير تجربة متقاربة عبر منصات متعددة.</p>
|
||||
<p xml:lang="ca">El NeoChat és un client de Matrix, el protocol descentralitzat de comunicacions de missatgeria instantània. Permet enviar missatges de text, fitxers de vídeo i d'àudio a la família, col·legues i amics. Fa servir els Frameworks de KDE i, sobretot, el Kirigami per a proporcionar una experiència convergent a través de diverses plataformes.</p>
|
||||
<p xml:lang="ca-valencia">NeoChat és un client de Matrix, el protocol descentralitzat de comunicacions de missatgeria instantània. Permet enviar missatges de text, fitxers de vídeo i d'àudio a la família, col·legues i amics. Utilitza els Frameworks de KDE i, sobretot, Kirigami per a proporcionar una experiència convergent a través de diverses plataformes.</p>
|
||||
<p xml:lang="en-GB">NeoChat is a client for Matrix, the decentralised communication protocol for instant messaging. It allows you to send text messages, videos and audio files to your family, colleagues and friends. It uses KDE frameworks and most notably Kirigami to provide a convergent experience across multiple platforms.</p>
|
||||
<p xml:lang="es">NeoChat es un cliente para Matrix, el protocolo de comunicaciones descentralizado para mensajería instantánea. Le permite enviar mensajes de texto, vídeos y archivos de sonido a su familia, compañeros de trabajo y amigos. Usa la infraestructura de KDE y, en particular, Kirigami para proporcionar una experiencia convergente en muchas plataformas.</p>
|
||||
<p xml:lang="fi">NeoChat on asiakassovellus Matrixille, hajautetulle pikaviestinyhteyskäytännölle. Sillä voi lähettää teksti-, video- ja ääniviestejä perheelle, tutuille ja ystäville. Se käyttää KDE-kehystä ja erityisesti Kirigamia tuottaakseen mukautuvan monialustaisen käyttökokemuksen.</p>
|
||||
<p xml:lang="fr">NeoChat est un client pour le protocole Matrix, un protocole décentralisé de communications pour messagerie instantané. Il vous permet d'envoyer des messages de texte, des vidéos et des fichiers audio à votre famille, vos collègues et vos amis. Il utilise les environnements de développement et plus précisément Kirigami pour fournir une expérience convergente sur plusieurs plate-formes. </p>
|
||||
<p xml:lang="gl">NeoChat é un cliente para Matrix, o protocolo de comunicación descentralizada para mensaxería instantánea. Podes enviar mensaxes de texto, vídeos e ficheiros de son á túa familia, colegas e amizades. Usas infraestruturas de KDE e principalmente Kirigami para proporcionar unha experiencia de uso converxente para varias plataformas.</p>
|
||||
<p xml:lang="ia">NeoChat es un cliente per Matrix, le protocollo de communication decentralisate per messager instantanee. Illo te permitte inviar messager de texto, files de video e audio a tu familia, collegas e amicos usante. Illo usa KDE frameworks e super toto Kirigamii forni un experientia convergente trans platteforme multiple.</p>
|
||||
<p xml:lang="it">NeoChat è un client per Matrix, il protocollo di comunicazione decentralizzato per la messaggistica istantanea. Ti consente di inviare messaggi di testo, video e file audio a familiari, colleghi e amici. Utilizza i framework KDE e in particolare Kirigami per fornire un'esperienza convergente su più piattaforme.</p>
|
||||
<p xml:lang="ka">NeoChat არის Matrix კლიენტი. ის საშუალებას გაძლევთ გაგზავნოთ ტექსტური შეტყობინებები, ვიდეოები და აუდიო ფაილები თქვენს ოჯახს, კოლეგებსა და მეგობრებს მატრიქსის პროტოკოლის გამოყენებით. ის იყენებს KDE-ის შესაძლებლობებს და განსაკუთრებით კი Kirigami-ის, რათა პლატფორმებს შორის თავსებადობა უზრუნველყოს.</p>
|
||||
<p xml:lang="nl">NeoChat is een client voor Matrix, het gedecentraliseerde communicatieprotocol voor instant messages. Het biedt u het verzenden van tekstberichten, video's en geluidsbestanden naar uw familie, collega's en vrienden. Het gebruik KDE frameworks en het meest opmerkelijk Kirigami om een convergente ervaring te leveren op meerdere platforms.</p>
|
||||
<p xml:lang="nn">NeoChat er ein klient for Matrix, ein protokoll for desentralisert kommunikasjon. Du kan utveksla tekst, lyd og videoar med kollegaar, vennar og familie. Programmet brukar KDE Frameworks og Kirigami for å gje ei brukarflate tilpassa ulike plattformer.</p>
|
||||
<p xml:lang="pl">NeoChat jest programem do Matriksa, protokołu rozproszonego porozumiewania się w czasie rzeczywistym. Umożliwia wysyłanie wiadomości tekstowych, filmów oraz dźwięku do twojej rodziny, znajomych oraz przyjaciół. Używa szkieletów KDE i głównie Kirigami, aby zapewnić spójne wrażenia na wielu platformach</p>
|
||||
<p xml:lang="sl">Neochat je odjemalec za Matrix, decentralizirani komunikacijski protokol za takojšnje sporočanje. Omogoča vam pošiljanje besedilnih sporočil, videoposnetkov in zvočnih datotek svoji družini, sodelavcem in prijateljem. Uporablja okvire KDE in predvsem Kirigami, da zagotavlja konvergentno izkušnjo na več platformah.</p>
|
||||
<p xml:lang="tr">NeoChat, anlık iletileşme için merkezi olmayan iletişim protokolü olan Matrix için bir istemcidir. Ailenize, iş arkadaşlarınıza ve arkadaşlarınıza metin iletiler, videolar ve ses dosyaları göndermenize olanak tanır. Birden çok platformda yakınsak bir deneyim sağlamak için KDE Frameworks ve en önemlilerinden Kirigami'yi kullanır.</p>
|
||||
<p xml:lang="uk">NeoChat — клієнт Matrix, децентралізованого протоколу спілкування для миттєвого обміну повідомленнями. За його допомогою ви можете надсилати текстові повідомлення, відео та звукові файли вашій родин, колегами та друзям. У програмі використано бібліотеки KDE, зокрема Kirigami, для надання однорідного середовища на декількох програмних та апаратних платформах.</p>
|
||||
<p xml:lang="x-test">xxNeoChat is a client for Matrix, the decentralized communication protocol for instant messaging. It allows you to send text messages, videos and audio files to your family, colleagues and friends. It uses KDE frameworks and most notably Kirigami to provide a convergent experience across multiple platforms.xx</p>
|
||||
<p>NeoChat aims to be a fully featured application for the Matrix specification. As such everything in the current stable specification with the notable exceptions of VoIP, threads and some aspects of End-to-End Encryption are supported. There are a few other smaller omissions due to the fact that the Matrix spec is constantly evolving but the aim remains to provide eventual support for the entire spec.</p>
|
||||
<p xml:lang="ar">يهدف نيوتشات إلى أن يكون تطبيقًا كامل الميزات لمواصفات ماتركس. على هذا النحو يتم دعم كل شيء في المواصفات المستقرة الحالية مع الاستثناءات الملحوظة لـ VoIP والخيوط وبعض جوانب التشفير من طرف إلى طرف. هناك عدد قليل من الإغفالات الصغيرة الأخرى بسبب حقيقة أن مواصفات ماتركس تتطور باستمرار ، ولكن يبقى الهدف توفير الدعم النهائي للمواصفات بأكملها.</p>
|
||||
<p xml:lang="ca">NeoChat pretén ser una aplicació amb totes les característiques per a l'especificació de Matrix. Com a tal, s'ha implementat tota l'especificació actual estable amb les notables excepcions de la VoIP, fils i alguns aspectes de l'encriptatge d'extrem a extrem. Hi ha algunes altres omissions més petites a causa del fet que l'especificació de Matrix està evolucionant constantment, però l'objectiu segueix sent proporcionar suport eventual per a tota l'especificació.</p>
|
||||
<p xml:lang="ca-valencia">NeoChat pretén ser una aplicació amb totes les característiques per a l'especificació de Matrix. Com a tal, s'ha implementat tota l'especificació actual estable amb les notables excepcions de VoIP, fils i alguns aspectes de l'encriptació d'extrem a extrem. Hi ha algunes altres omissions més xicotetes a causa del fet que l'especificació de Matrix està evolucionant constantment, però l'objectiu seguix sent proporcionar suport eventual per a tota l'especificació.</p>
|
||||
<p xml:lang="en-GB">NeoChat aims to be a fully featured application for the Matrix specification. As such everything in the current stable specification with the notable exceptions of VoIP, threads and some aspects of End-to-End Encryption are supported. There are a few other smaller omissions due to the fact that the Matrix spec is constantly evolving but the aim remains to provide eventual support for the entire spec.</p>
|
||||
<p xml:lang="es">NeoChat pretende ser una aplicación con todas las funciones para la especificación de Matrix. Como tal, admite todo en la especificación estable actual, con las notables excepciones de VoIP, subprocesos y algunas funciones de cifrado de extremo a extremo. Existen algunas omisiones menos importantes debido al hecho de que la especificación de Matrix está en constante evolución, pero el objetivo sigue siendo brindar compatibilidad final con toda la especificación.</p>
|
||||
<p xml:lang="fi">NeoChat pyrkii olemaan Matrix-määritelmän täysominaisuuksinen sovellus, joten se tukee kaikkea nykyisessä vakaassa määritelmässä muutamaa huomattavaa poikkeusta lukuun ottamatta (VoIP, säikeet ja jotkin piirteet päästä päähän -salauksessa). Joitakin pienempiäkin puutteita on Matrix-määritelmän jatkuvan kehityksen vuoksi, mutta lopputavoitteena on tarjota määritelmän täysi tuki.</p>
|
||||
<p xml:lang="fr">L'objectif de NeoChat est d'être une application complète pour le protocole Matrix. En tant que tel, tout dans la spécification stable actuelle avec les exceptions notables de VoIP, les processus et certains aspects du chiffrement de bout en bout sont pris en charge. Il y a quelques autres petites omissions en raison du fait que la spécification du protocole Matrix est en constante évolution. Cependant, l'objectif reste de fournir un soutien éventuel pour l'ensemble de la spécification.</p>
|
||||
<p xml:lang="gl">NeoChat pretende ser unha aplicación completa para a especificación de Matrix. Coas excepcións de VoIP, conversas fiadas e algúns aspectos da cifraxe de extremo a extremo, a versión estábel segue as especificacións. Existen algunhas outras pequenas omisións debido ao feito de que Matrix está en continua evolución pero a intención é implementar a especificación completa.</p>
|
||||
<p xml:lang="ia">NeoChat aspira a esser un application plenemente eminente per le specification de Matrix. Tal como omne cosas in le specification currentemente stabile con le exceptiones notabile de VOIP, threads e alcun aspectos del cryptation End-to-End es supportate. Il ha ltere pauc omissiones, debite al facto que le specification de Matrix es in evolution constante ma le aspiration remane a fornir supporto eventual per le integre specification.</p>
|
||||
<p xml:lang="it">NeoChat mira ad essere un'applicazione completa per le specifiche Matrix. Pertanto, sono supportati tutti gli elementi dell'attuale specifica stabile con le notevoli eccezioni di VoIP, conversazioni e alcuni aspetti della cifratura end-to-end. Ci sono alcune altre piccole omissioni dovute al fatto che le specifiche Matrix sono in continua evoluzione, ma l'obiettivo rimane quello di fornire un eventuale supporto per l'intera specifica.</p>
|
||||
<p xml:lang="ka">NeoChat-ი მიზნად ისახავს Matrix სპეციფიკაციის სრული განხორციელება ჰქონდეს. როგორც ასეთი, ყველაფერი მიმდინარე სპეციფიკაციიდან, VoIP-ის, ძაფებისა და გამჭოლი დაშიფვრის ზოგიერთი ასპექტის გარდა, მხარდაჭერილია. შეძლება ასევე იყოს მცირე ლაფსუსებიც იმის გამო, რომ Matrix-ის სპეციფიკაცია მუდმივად ვითარგდება, მაგრამ ჩვენი მიზანი მისი სრული მხარდაჭერაა.</p>
|
||||
<p xml:lang="nl">NeoChat richt zich op het volledig bieden van alle mogelijkheden van de Matrix-specificatie. Alles in de huidige stabiele specificatie met merkbare uitzondering van VoIP, gekoppelde discussies en sommige aspecten van eind-tot-eind versleuteling worden ondersteund. Er zijn een paar andere kleinere omissies vanwege het feit dat de Matrix specificatie constant evolueert maar het doel blijft het eventueel bieden van ondersteuning van de gehele specificatie.</p>
|
||||
<p xml:lang="nn">NeoChat har som mål å støtta all funksjonalitet i Matrix-spesifikasjonen. Førebels er alt i den gjeldande stabile spesifikasjonen støtta, med unntak av VoIP, trådar og nokre delar av ende-til-kryptering. Det finst òg andre småting som ikkje er støtta, sidan Matrix-spesifikasjon er i stadig endring, men målet er altså støtte for alt.</p>
|
||||
<p xml:lang="pl">NeoChat w zamyśle ma być pełnowartościową aplikacją wg wytycznych Matriksa. Z tego powodu, wszystko, co jest obecnie w stabilnych wytycznych z pominięciem VoIP, wątków i niektórych części szyfrowania Użytkownik-do-Użytkownika są obecnie obsługiwane. Pominięto też kilka mniejszych rzeczy ze względu na ciągły rozwój wytycznych Matriksa, lecz celem nadal jest zapewnienie obsługi wszystkich wytycznych.</p>
|
||||
<p xml:lang="sl">Neochat cilja, da bi bila popolna aplikacija po specifikaciji Matrixa. Kot takšna vsebuje vse v trenutni stabilni specifikaciji z pomembnimi izjemami pri VoIP, nitih in nekaterih vidikov šifriranja od konca do konca. Obstaja nekaj drugih manjših opustitev zaradi dejstva, da se specifikacija Matrix nenehno razvija, vendar cilj ostaja zagotoviti morebitno podporo celotni specifikaciji.</p>
|
||||
<p xml:lang="tr">NeoChat, Matrix belirtimi için tam özellikli bir uygulama olmayı hedefler. Bu nedenle; VoIP, ileti zincirleri ve Uçtan Uca Şifreleme'nin bazı yönleri gibi dikkate değer istisnalar dışında var olan kararlı belirtimdeki her şey desteklenir. Matrix belirtiminin sürekli gelişmesi nedeniyle birkaç küçük eksiklik daha var; ancak amaç tüm belirtim için nihai destek sağlamak olmayı sürdürüyor.</p>
|
||||
<p xml:lang="uk">Метою створення NeoChat є повноцінна реалізація програми для специфікації Matrix. Як наслідок, реалізовано усе у поточній стабільній специфікації, окрім голосового інтернет-зв'язку, потоків та деяких аспектів міжвузлового шифрування. Є також декілька інших незначних прогалин через те, що специфікація Matrix постійно змінюється, але метою лишається повна підтримка специфікації.</p>
|
||||
<p xml:lang="x-test">xxNeoChat aims to be a fully featured application for the Matrix specification. As such everything in the current stable specification with the notable exceptions of VoIP, threads and some aspects of End-to-End Encryption are supported. There are a few other smaller omissions due to the fact that the Matrix spec is constantly evolving but the aim remains to provide eventual support for the entire spec.xx</p>
|
||||
<p>Due to the nature of the Matrix specification development NeoChat also supports numerous unstable features. Currently these are:</p>
|
||||
<p xml:lang="ar">نظرًا لطبيعة تطوير مواصفات ماتركس، يدعم نيوتشات أيضًا العديد من الميزات غير المستقرة وهي:</p>
|
||||
<p xml:lang="ca">A causa de la naturalesa del desenvolupament de l'especificació de Matrix, el NeoChat també implementa nombroses característiques inestables. Actualment són:</p>
|
||||
<p xml:lang="ca-valencia">A causa de la naturalea del desenvolupament de l'especificació de Matrix, NeoChat també implementa nombroses característiques inestables. Actualment són:</p>
|
||||
<p xml:lang="en-GB">Due to the nature of the Matrix specification development NeoChat also supports numerous unstable features. Currently these are:</p>
|
||||
<p xml:lang="es">Debido a la naturaleza del desarrollo de la especificación de Matrix, NeoChat también permite numerosas funciones no estables, como:</p>
|
||||
<p xml:lang="fi">Matrix-määritelmän kehittyessä NeoChat tukee myös monia epävakaita ominaisuuksia. Tällä hetkellä näitä ovat:</p>
|
||||
<p xml:lang="fr">En raison de la nature du développement des spécifications du protocole Matrix, NeoChat prend également en charge de nombreuses fonctionnalités instables. Actuellement, ce sont :</p>
|
||||
<p xml:lang="gl">Debido á natureza do desenvolvemento da especificación de Matrix, NeoChat tamén inclúe varias funcionalidades non estábeis:</p>
|
||||
<p xml:lang="ia">Debite al natura del disveloppamento de specification de Matrix NeoChat tamben supporta numerose characteristicas instabile. Currentemente istes es:</p>
|
||||
<p xml:lang="it">A causa della natura dello sviluppo delle specifiche Matrix, NeoChat supporta anche numerose funzionalità instabili. Attualmente queste sono:</p>
|
||||
<p xml:lang="ka">Matrix-ის სპეციფიკაციის განვითარების ბუნების გამო NeoChat-ს ასევე აქვს უამრავი არასტაბილური ფუნქციაც. ახლა ისინია:</p>
|
||||
<p xml:lang="nl">Vanwege de aard van de ontwikkeling van de Matrix specificatie ondersteunt NeoChat ook talloze onstabiele mogelijkheden. Dit zijn nu:</p>
|
||||
<p xml:lang="nn">På grunn av måten Matrix-spesifikasjonen vert utvikla på, støttar NeoChat òg nokre uferdige funksjonar:</p>
|
||||
<p xml:lang="pl">Ze względu na sposób rozwoju Matriksa, NeoChat obsługuje także kilka niestabilnych możliwości. Obecnie są to:</p>
|
||||
<p xml:lang="sl">Zaradi narave razvoja specifikacije Matrixa NeoChat podpira tudi številne nestabilne zmožnosti. Trenutno so to:</p>
|
||||
<p xml:lang="tr">NeoChat, Matrix belirtimi geliştirmesinin doğası gereği çok sayıda kararsız özelliği de destekler. Şu anda bunlar:</p>
|
||||
<p xml:lang="uk">Через природу розробки специфікації Matrix, у NeoChat також передбачено підтримку численних нестабільних можливостей. У поточній версії цими можливостями є:</p>
|
||||
<p xml:lang="x-test">xxDue to the nature of the Matrix specification development NeoChat also supports numerous unstable features. Currently these are:xx</p>
|
||||
<ul>>
|
||||
</ul>
|
||||
<ul xml:lang="ca">></ul>
|
||||
<ul xml:lang="ca-valencia">></ul>
|
||||
<ul xml:lang="cs">></ul>
|
||||
<ul xml:lang="en-GB">></ul>
|
||||
<ul xml:lang="es">></ul>
|
||||
<ul xml:lang="fi">></ul>
|
||||
<ul xml:lang="fr">></ul>
|
||||
<ul xml:lang="gl">></ul>
|
||||
<ul xml:lang="ia">></ul>
|
||||
<ul xml:lang="it">></ul>
|
||||
<ul xml:lang="ka">></ul>
|
||||
<ul xml:lang="nl">></ul>
|
||||
<ul xml:lang="nn">></ul>
|
||||
<ul xml:lang="pl">></ul>
|
||||
<ul xml:lang="pt-BR">></ul>
|
||||
<ul xml:lang="sl">></ul>
|
||||
<ul xml:lang="uk">></ul>
|
||||
<ul xml:lang="x-test">xx>xx</ul>
|
||||
</description>
|
||||
<url type="homepage">https://apps.kde.org/neochat/</url>
|
||||
<url type="bugtracker">https://bugs.kde.org/buglist.cgi?component=General&product=NeoChat</url>
|
||||
@@ -191,6 +179,7 @@
|
||||
<developer_name xml:lang="eu">KDE komunitatea</developer_name>
|
||||
<developer_name xml:lang="fi">KDE-yhteisö</developer_name>
|
||||
<developer_name xml:lang="fr">La communauté de KDE</developer_name>
|
||||
<developer_name xml:lang="gl">A comunidade KDE</developer_name>
|
||||
<developer_name xml:lang="hu">A KDE Közösség</developer_name>
|
||||
<developer_name xml:lang="ia">Le communitate de KDE</developer_name>
|
||||
<developer_name xml:lang="id">Komunitas KDE</developer_name>
|
||||
@@ -208,6 +197,7 @@
|
||||
<developer_name xml:lang="sk">KDE Komunita</developer_name>
|
||||
<developer_name xml:lang="sl">Skupnost KDE</developer_name>
|
||||
<developer_name xml:lang="sv">KDE-gemenskapen</developer_name>
|
||||
<developer_name xml:lang="ta">கே.டீ.யீ. சமூகம்</developer_name>
|
||||
<developer_name xml:lang="tr">KDE Topluluğu</developer_name>
|
||||
<developer_name xml:lang="uk">Спільнота KDE</developer_name>
|
||||
<developer_name xml:lang="x-test">xxThe KDE Communityxx</developer_name>
|
||||
@@ -231,6 +221,10 @@
|
||||
<content_attribute id="social-chat">intense</content_attribute>
|
||||
</content_rating>
|
||||
<releases>
|
||||
<release version="23.04.3" date="2023-07-06"/>
|
||||
<release version="23.04.2" date="2023-06-08"/>
|
||||
<release version="23.04.1" date="2023-05-11"/>
|
||||
<release version="23.04.0" date="2023-04-20"/>
|
||||
<release version="23.01" date="2023-01-30">
|
||||
<url>https://plasma-mobile.org/2023/01/30/january-blog-post/</url>
|
||||
<description>
|
||||
|
||||
@@ -15,6 +15,7 @@ Name[es]=NeoChat
|
||||
Name[eu]=NeoChat
|
||||
Name[fi]=NeoChat
|
||||
Name[fr]=NeoChat
|
||||
Name[gl]=NeoChat
|
||||
Name[hu]=NeoChat
|
||||
Name[ia]=Neochat
|
||||
Name[id]=NeoChat
|
||||
@@ -52,6 +53,7 @@ GenericName[es]=Cliente para Matrix
|
||||
GenericName[eu]=Matrix bezeroa
|
||||
GenericName[fi]=Matrix-asiakas
|
||||
GenericName[fr]=Client « Matrix »
|
||||
GenericName[gl]=Cliente de Matrix
|
||||
GenericName[hu]=Matrix kliens
|
||||
GenericName[ia]=Cliente de Matrice
|
||||
GenericName[id]=Klien Matrix
|
||||
@@ -88,6 +90,7 @@ Comment[es]=Cliente para el protocolo Matrix
|
||||
Comment[eu]=Matrix protokolorako bezeroa
|
||||
Comment[fi]=Asiakas Matrix-yhteyskäytännölle
|
||||
Comment[fr]=Client pour le protocole « Matrix »
|
||||
Comment[gl]=Cliente para o protocolo Matrix
|
||||
Comment[hu]=Kliens a Matrix protokollhoz
|
||||
Comment[ia]=Cliente per le protocollo de Matrix
|
||||
Comment[id]=Klien untuk protokol Matrix
|
||||
@@ -97,7 +100,7 @@ Comment[ka]=კლიენტი Matrix-ის პროტოკოლის
|
||||
Comment[ko]=Matrix 프로토콜용 클라이언트
|
||||
Comment[lt]=Matrix protokolo kliento programa
|
||||
Comment[nl]=Client voor het Matrix-protocol
|
||||
Comment[nn]=Lynmeldingsklient for Matrix-protokollen
|
||||
Comment[nn]=Klient for Matrix-protokollen
|
||||
Comment[pa]=ਮੈਟਰਿਕਸ ਪਰੋਟੋਕਾਲ ਲਈ ਕਲਾਈਂਟ ਹੈ
|
||||
Comment[pl]=Program obsługi protokołu Matriksa
|
||||
Comment[pt]=Cliente para o protocolo Matrix
|
||||
|
||||
111
po/ar/neochat.po
111
po/ar/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-03-16 09:48+0400\n"
|
||||
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
|
||||
"Language-Team: ar\n"
|
||||
@@ -671,7 +671,7 @@ msgstr "[أفعال محظورة]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[أفعال محظورة: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -682,7 +682,7 @@ msgstr[3] "%1 مستخدمين: "
|
||||
msgstr[4] " %1 مستخدماً: "
|
||||
msgstr[5] "%1 مستخدم: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -734,7 +734,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "انضم للغرفة (مكررا)"
|
||||
@@ -744,7 +744,7 @@ msgstr "انضم للغرفة (مكررا)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "ادع %1 للغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "انضم للغرفة"
|
||||
@@ -754,7 +754,7 @@ msgstr "انضم للغرفة"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -766,29 +766,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "غير اسمهم إلى %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " و "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "مسح صورتهم الرمزية"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "عين صورة رمزية"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "حدث صورتهم الرمزية"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -799,7 +799,7 @@ msgstr "لم يغير شيء"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "سحب %1 دعوته"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "رفض الدعوة"
|
||||
@@ -809,7 +809,7 @@ msgstr "رفض الدعوة"
|
||||
msgid "unbanned %1"
|
||||
msgstr "ألغى حضر %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "ألغى حضر نفسه"
|
||||
@@ -819,7 +819,7 @@ msgstr "ألغى حضر نفسه"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "أخرج %1 من الغرفة: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "غادر الغرفة"
|
||||
@@ -834,12 +834,12 @@ msgstr "حظر %1 من الغرفة"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "حظر %1 من الغرفة: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "حضر نفسه من الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "طلب دعوة"
|
||||
@@ -849,12 +849,12 @@ msgstr "طلب دعوة"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "دعوة مطلوبة بسبب: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "صنع شيء مجهول"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "مسح معرف الغرفة العام"
|
||||
@@ -864,7 +864,7 @@ msgstr "مسح معرف الغرفة العام"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "غير معرف الغرفة العام إلى: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "مسح اسم الغرفة"
|
||||
@@ -874,177 +874,177 @@ msgstr "مسح اسم الغرفة"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "غير اسم الغرفة إلى: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "مسح الموضوع"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "غير الموضوع إلى: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "غير الصورة الرمزية للغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "فعل التشفير التام من طرف إلى طرف"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "رقى إصدارة الغرفة إلى %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "أنشى غرفة، إصدارة %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "غير مستويات القوة لهذه الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "غير قوائم التحكم بنفاذ الخادم لهذه الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "أضاف ودجة %1"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "أزال ودجة %1"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "ضبطَ ودجة %1"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "حدث حالة %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "حدث حالة %1 لـ %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "حدث مجهول"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "أرسل رسالة"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "أرسل ملصق"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "أعد دعوة شخص للغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "دعا شخص للغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "غير اسمه"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "سحب دعوة مستخدم"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ألغى حضر مستخدم"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "أخرج مستخدم من الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "حظر مستخدم من الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "غير معرف الغرفة العام"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "عين اسم الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "عين الموضوع"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "رقى إصدارة الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "أنشئ الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "أضاف ودجة"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "أزال ودجة"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ضبطَ ودجة"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "حدث الحالة"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "بدأ استفتاء"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "أرسل البلاغ بنجاح."
|
||||
@@ -1271,6 +1271,7 @@ msgid "Matrix ID:"
|
||||
msgstr "معرف ماتركس:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "يحمّل..."
|
||||
@@ -2578,12 +2579,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "ابحث في الرسائل"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "ادخل نص لتبدأ البحث"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "لا نتائج"
|
||||
|
||||
111
po/az/neochat.po
111
po/az/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2022-07-22 12:13+0400\n"
|
||||
"Last-Translator: Kheyyam <xxmn77@gmail.com>\n"
|
||||
"Language-Team: Azerbaijani <kde-i18n-doc@kde.org>\n"
|
||||
@@ -749,14 +749,14 @@ msgstr "[DÜZƏLİŞ_EDİLDİ]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[DÜZƏLİŞ_EDİLDİ: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -810,7 +810,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "otağa qoşuldu (təkrar)"
|
||||
@@ -820,7 +820,7 @@ msgstr "otağa qoşuldu (təkrar)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1, otağa dəvət edildi"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "otağa qoşuldu"
|
||||
@@ -830,7 +830,7 @@ msgstr "otağa qoşuldu"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -842,29 +842,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "onların görünən adı %1 kimi dəyişdirildi"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " və "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "onların avatarları silindi"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "avatar təyin edin"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "onların avatarları yeniləndi"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -875,7 +875,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "%1 dəvəti geri çəkildi"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "dəvət ləğv edildi"
|
||||
@@ -885,7 +885,7 @@ msgstr "dəvət ləğv edildi"
|
||||
msgid "unbanned %1"
|
||||
msgstr "%1 üzərindən qadağa götürüldü"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "özü üzərindəki qadağanı götürdü"
|
||||
@@ -895,7 +895,7 @@ msgstr "özü üzərindəki qadağanı götürdü"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "%1 bu otaqdan çıxarıldı: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "otağı tərk edin"
|
||||
@@ -911,12 +911,12 @@ msgstr "%1 üzərinə bu otaqda qadağa qoyuldu: %2"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "%1 üzərinə bu otaqda qadağa qoyuldu: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "öz özünü otaqdan kənarlaşdırdı"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "dəvət qəbul olundu"
|
||||
@@ -927,12 +927,12 @@ msgstr "dəvət qəbul olundu"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "dəvət qəbul olundu"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "bilinməyən bir şey edildi"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "otağın əsas ləqəbi dəyişdirildi"
|
||||
@@ -942,7 +942,7 @@ msgstr "otağın əsas ləqəbi dəyişdirildi"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "otağın əsas ləqəbini belə dəyişdirmək: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "otağın adını silmək"
|
||||
@@ -952,104 +952,104 @@ msgstr "otağın adını silmək"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "otağın adını belə dəyişdirmək: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "mövzu silindi"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "mövzunu belə təyin etmək: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "otaq avatarını dəyişmək"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "Ucdan Uca şifrələməni aktiv etmək"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "otaq %1 versiyasına yeniləndi"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "%1 versiyalı otaq yaradıldı"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "bu otaq üçün enerji səviyyəsi dəyişdirildi"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "Bu otaq üçün xidmətə girişə nəzarət siyahıları dəyişdirildi"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "%1 vidjet əlavə olundu"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "%1 vidjet silindi"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "%1 vidjet ayarlandı"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "%1 vəziyyəti yeniləndi"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "%1 vəziyyəti %2 üçün yeniləndi"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Naməlum hal"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send a message…"
|
||||
msgid "sent a message"
|
||||
msgstr "İsmarıcı göndərin..."
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "%1 otağa yenidən dəvət edildi"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "%1, otağa dəvət edildi"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
@@ -1057,93 +1057,93 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "onların görünən adı %1 kimi dəyişdirildi"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "%1 dəvəti geri çəkildi"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "%1 üzərindən qadağa götürüldü"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "%1 bu otaqdan çıxarıldı: %2"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "%1 üzərinə bu otaqda qadağa qoyuldu: %2"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
msgid "set the room main alias"
|
||||
msgstr "otağın əsas ləqəbini belə dəyişdirmək: %1"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
msgid "set the room name"
|
||||
msgstr "otağın adını belə dəyişdirmək: %1"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "mövzunu belə təyin etmək: %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "otaq %1 versiyasına yeniləndi"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "otağı tərk edin"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] added <name> widget"
|
||||
#| msgid "added %1 widget"
|
||||
msgid "added a widget"
|
||||
msgstr "%1 vidjet əlavə olundu"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] removed <name> widget"
|
||||
#| msgid "removed %1 widget"
|
||||
msgid "removed a widget"
|
||||
msgstr "%1 vidjet silindi"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] configured <name> widget"
|
||||
#| msgid "configured %1 widget"
|
||||
msgid "configured a widget"
|
||||
msgstr "%1 vidjet ayarlandı"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "%1 vəziyyəti yeniləndi"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Password changed successfully"
|
||||
msgid "Report sent successfully."
|
||||
@@ -1382,6 +1382,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Yüklənir..."
|
||||
@@ -2714,12 +2715,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Birbaşa İsmarıclar"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No rooms found"
|
||||
msgid "No results found"
|
||||
|
||||
173
po/ca/neochat.po
173
po/ca/neochat.po
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-03-14 08:44+0100\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-05-10 21:21+0200\n"
|
||||
"Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
|
||||
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
|
||||
"Language: ca\n"
|
||||
@@ -669,14 +669,14 @@ msgstr "[REDACTAT]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REDACTAT: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "%1 usuari: "
|
||||
msgstr[1] "%1 usuaris: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -728,82 +728,82 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "s'ha unit a la sala (repetit)"
|
||||
msgstr "s'ha/n unit a la sala (repetit)"
|
||||
|
||||
#: src/neochatroom.cpp:535
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "s'ha convidat %1 a la sala"
|
||||
msgstr "s'ha/n convidat %1 a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "s'ha unit a la sala"
|
||||
msgstr "s'ha/n unit a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:539
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "ha netejat el seu nom a mostrar"
|
||||
msgstr "ha/n netejat el seu nom a mostrar"
|
||||
|
||||
#: src/neochatroom.cpp:548
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "ha canviat el seu nom a mostrar a %1"
|
||||
msgstr "ha/n canviat el seu nom a mostrar a %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " i "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "ha netejat el seu avatar"
|
||||
msgstr "ha/n netejat el seu avatar"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ha definit un avatar"
|
||||
msgstr "ha/n definit un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "ha actualitzat el seu avatar"
|
||||
msgstr "ha/n actualitzat el seu avatar"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "no ha canviat res"
|
||||
msgstr "no ha/n canviat res"
|
||||
|
||||
#: src/neochatroom.cpp:574
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "retira la invitació de %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "ha rebutjat la invitació"
|
||||
msgstr "ha/n rebutjat la invitació"
|
||||
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "s'ha desbandejat %1"
|
||||
msgstr "s'ha/n desbandejat %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "ell mateix s'ha desbandejat"
|
||||
@@ -813,10 +813,10 @@ msgstr "ell mateix s'ha desbandejat"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "ha posat %1 fora de la sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "ha deixat la sala"
|
||||
msgstr "ha/n deixat la sala"
|
||||
|
||||
#: src/neochatroom.cpp:586
|
||||
#, kde-format
|
||||
@@ -828,218 +828,218 @@ msgstr "s'ha bandejat %1 de la sala"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "s'ha bandejat %1 de la sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "ell mateix s'ha bandejat de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "s'ha sol·licitat una invitació"
|
||||
msgstr "ha sol·licitat una invitació"
|
||||
|
||||
#: src/neochatroom.cpp:595
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "s'ha sol·licitat una invitació amb el motiu: %1"
|
||||
msgstr "ha sol·licitat una invitació amb el motiu: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "s'ha fet quelcom desconegut"
|
||||
msgstr "ha fet quelcom desconegut"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "s'ha netejat l'àlies principal de la sala"
|
||||
msgstr "ha netejat l'àlies principal de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:602
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "s'ha definit l'àlies principal de la sala a: %1"
|
||||
msgstr "ha definit l'àlies principal de la sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "s'ha netejat el nom de la sala"
|
||||
msgstr "ha netejat el nom de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:605
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "s'ha definit el nom de la sala a: %1"
|
||||
msgstr "ha definit el nom de la sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "s'ha netejat el tema"
|
||||
msgstr "ha netejat el tema"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "s'ha definit el tema a: %1"
|
||||
msgstr "ha definit el tema a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "s'ha canviat l'avatar de la sala"
|
||||
msgstr "ha canviat l'avatar de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "s'ha activat l'encriptatge d'extrem a extrem"
|
||||
msgstr "ha activat l'encriptatge d'extrem a extrem"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "la sala s'ha actualitzat a la versió %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "la sala s'ha creat, versió %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "s'han canviat els nivells de permís d'aquesta sala"
|
||||
msgstr "ha canviat els nivells de permís d'aquesta sala"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
"les llistes de control d'accés del servidor han canviat per a aquesta sala"
|
||||
"ha canviat les llistes de control d'accés del servidor per a aquesta sala"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "ha afegit el giny %1"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "ha eliminat el giny %1"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "ha configurat el giny %1"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "s'ha actualitzat l'estat de %1"
|
||||
msgstr "ha actualitzat l'estat de %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "s'ha actualitzat l'estat de %1 per %2"
|
||||
msgstr "ha actualitzat l'estat de %1 per %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Esdeveniment desconegut"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "enviat un missatge…"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "enviat un adhesiu"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "ha tornat a convidar algú a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "ha convidat algú a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ha canviat el seu nom a mostrar"
|
||||
msgstr "ha/n canviat el seu nom a mostrar"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "retira una invitació d'usuari"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ha desbandejat un usuari"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "ha posat un usuari fora de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "ha bandejat un usuari de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "ha definit l'àlies principal de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ha definit el nom de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "ha definit el tema"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "ha actualitzat la versió de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "ha creat la sala"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "ha afegit un giny"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "ha eliminat un giny"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ha configurat un giny"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "ha actualitzat l'estat"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "ha començat una enquesta"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "L'informe s'ha enviat correctament."
|
||||
@@ -1269,6 +1269,7 @@ msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "S'està carregant…"
|
||||
@@ -2592,12 +2593,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Cerca missatges"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Introduïu un text per a iniciar la cerca"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "No s'ha trobat cap resultat"
|
||||
@@ -3598,12 +3599,12 @@ msgstr "Afegeix una paraula clau"
|
||||
#: src/qml/Settings/GlobalNotificationsPage.qml:272
|
||||
#, kde-format
|
||||
msgid "Invites"
|
||||
msgstr "Convida"
|
||||
msgstr "Invitacions"
|
||||
|
||||
#: src/qml/Settings/GlobalNotificationsPage.qml:275
|
||||
#, kde-format
|
||||
msgid "Invites to a room"
|
||||
msgstr "Convida a una sala"
|
||||
msgstr "Invitacions a una sala"
|
||||
|
||||
#: src/qml/Settings/GlobalNotificationsPage.qml:291
|
||||
#, kde-format
|
||||
|
||||
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-03-14 08:44+0100\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-05-10 21:21+0200\n"
|
||||
"Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
|
||||
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
|
||||
"Language: ca@valencia\n"
|
||||
@@ -669,14 +669,14 @@ msgstr "[REDACTAT]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REDACTAT: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "%1 usuari: "
|
||||
msgstr[1] "%1 usuaris: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -728,82 +728,82 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "s'ha unit a la sala (repetit)"
|
||||
msgstr "s'ha/n unit a la sala (repetit)"
|
||||
|
||||
#: src/neochatroom.cpp:535
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "s'ha convidat %1 a la sala"
|
||||
msgstr "s'ha/n convidat %1 a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "s'ha unit a la sala"
|
||||
msgstr "s'ha/n unit a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:539
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "ha netejat el seu nom que s'ha de mostrar"
|
||||
msgstr "ha/n netejat el seu nom que s'ha de mostrar"
|
||||
|
||||
#: src/neochatroom.cpp:548
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "ha canviat el seu nom que s'ha de mostrar a %1"
|
||||
msgstr "ha/n canviat el seu nom que s'ha de mostrar a %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " i "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "ha netejat el seu avatar"
|
||||
msgstr "ha/n netejat el seu avatar"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ha establit un avatar"
|
||||
msgstr "ha/n definit un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "ha actualitzat el seu avatar"
|
||||
msgstr "ha/n actualitzat el seu avatar"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "no ha canviat res"
|
||||
msgstr "no ha/n canviat res"
|
||||
|
||||
#: src/neochatroom.cpp:574
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "retira la invitació de %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "ha rebutjat la invitació"
|
||||
msgstr "ha/n rebutjat la invitació"
|
||||
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "s'ha desbandejat %1"
|
||||
msgstr "s'ha/n desbandejat %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "ell mateix s'ha desbandejat"
|
||||
@@ -813,10 +813,10 @@ msgstr "ell mateix s'ha desbandejat"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "ha posat %1 fora de la sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "ha deixat la sala"
|
||||
msgstr "ha/n deixat la sala"
|
||||
|
||||
#: src/neochatroom.cpp:586
|
||||
#, kde-format
|
||||
@@ -828,218 +828,217 @@ msgstr "s'ha bandejat %1 de la sala"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "s'ha bandejat %1 de la sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "ell mateix s'ha bandejat de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "s'ha sol·licitat una invitació"
|
||||
msgstr "ha sol·licitat una invitació"
|
||||
|
||||
#: src/neochatroom.cpp:595
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "s'ha sol·licitat una invitació amb el motiu: %1"
|
||||
msgstr "ha sol·licitat una invitació amb el motiu: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "s'ha fet alguna cosa desconegut"
|
||||
msgstr "ha fet alguna cosa desconegut"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "s'ha netejat l'àlies principal de la sala"
|
||||
msgstr "ha netejat l'àlies principal de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:602
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "s'ha definit l'àlies principal de la sala a: %1"
|
||||
msgstr "ha establit l'àlies principal de la sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "s'ha netejat el nom de la sala"
|
||||
msgstr "ha netejat el nom de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:605
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "s'ha definit el nom de la sala a: %1"
|
||||
msgstr "ha establit el nom de la sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "s'ha netejat el tema"
|
||||
msgstr "ha netejat el tema"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "s'ha definit el tema a: %1"
|
||||
msgstr "ha establit el tema a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "s'ha canviat l'avatar de la sala"
|
||||
msgstr "ha canviat l'avatar de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "s'ha activat l'encriptació d'extrem a extrem"
|
||||
msgstr "ha activat l'encriptació d'extrem a extrem"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "la sala s'ha actualitzat a la versió %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "la sala s'ha creat, versió %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "s'han canviat els nivells de permís d'esta sala"
|
||||
msgstr "ha canviat els nivells de permís d'esta sala"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
"les llistes de control d'accés del servidor han canviat per a esta sala"
|
||||
msgstr "ha canviat les llistes de control d'accés del servidor per a esta sala"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "ha afegit el giny %1"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "ha eliminat el giny %1"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "ha configurat el giny %1"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "s'ha actualitzat l'estat de %1"
|
||||
msgstr "ha actualitzat l'estat de %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "s'ha actualitzat l'estat de %1 per %2"
|
||||
msgstr "ha actualitzat l'estat de %1 per %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Esdeveniment desconegut"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "enviat un missatge…"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "enviat un adhesiu"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "ha tornat a convidar algú a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "ha convidat algú a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ha canviat el seu nom que s'ha de mostrar"
|
||||
msgstr "ha/n canviat el seu nom que s'ha de mostrar"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "retira una invitació d'usuari"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ha desbandejat un usuari"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "ha posat un usuari fora de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "ha bandejat un usuari de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "ha establit l'àlies principal de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ha establit el nom de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "ha establit el tema"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "ha actualitzat la versió de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "ha creat la sala"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "ha afegit un giny"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "ha eliminat un giny"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ha configurat un giny"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "ha actualitzat l'estat"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "ha començat una enquesta"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "L'informe s'ha enviat correctament."
|
||||
@@ -1269,6 +1268,7 @@ msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "S'està carregant…"
|
||||
@@ -2592,12 +2592,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Busca missatges"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Introduïu un text per a iniciar la busca"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "No s'ha trobat cap resultat"
|
||||
@@ -3598,12 +3598,12 @@ msgstr "Afig una paraula clau"
|
||||
#: src/qml/Settings/GlobalNotificationsPage.qml:272
|
||||
#, kde-format
|
||||
msgid "Invites"
|
||||
msgstr "Convida"
|
||||
msgstr "Invitacions"
|
||||
|
||||
#: src/qml/Settings/GlobalNotificationsPage.qml:275
|
||||
#, kde-format
|
||||
msgid "Invites to a room"
|
||||
msgstr "Convida a una sala"
|
||||
msgstr "Invitacions a una sala"
|
||||
|
||||
#: src/qml/Settings/GlobalNotificationsPage.qml:291
|
||||
#, kde-format
|
||||
|
||||
168
po/cs/neochat.po
168
po/cs/neochat.po
@@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-03-08 14:12+0100\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-06-12 16:22+0200\n"
|
||||
"Last-Translator: Vit Pelcak <vit@pelcak.org>\n"
|
||||
"Language-Team: Czech <kde-i18n-doc@kde.org>\n"
|
||||
"Language: cs\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
"X-Generator: Lokalize 23.04.2\n"
|
||||
|
||||
#: src/controller.cpp:198
|
||||
#, kde-format
|
||||
@@ -370,7 +370,7 @@ msgstr ""
|
||||
#, kde-format
|
||||
msgctxt "Room <roomname> not found"
|
||||
msgid "Room %1 not found."
|
||||
msgstr ""
|
||||
msgstr "Místnost %1 nenalezena."
|
||||
|
||||
#: src/models/actionsmodel.cpp:298 src/models/actionsmodel.cpp:330
|
||||
msgid "[<room alias or id>]"
|
||||
@@ -664,21 +664,16 @@ msgstr ""
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "n users"
|
||||
#| msgid " %1 user "
|
||||
#| msgid_plural " %1 users "
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "%1 uživatel "
|
||||
msgstr[1] "%1 uživatelé "
|
||||
msgstr[2] "%1 uživatelů "
|
||||
msgstr[0] "%1 uživatel:"
|
||||
msgstr[1] "%1 uživatelé:"
|
||||
msgstr[2] "%1 uživatelů:"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and/or action 3]"
|
||||
#| msgid ", "
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
@@ -729,7 +724,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr ""
|
||||
@@ -739,7 +734,7 @@ msgstr ""
|
||||
msgid "invited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr ""
|
||||
@@ -749,7 +744,7 @@ msgstr ""
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -761,29 +756,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " a "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -794,7 +789,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr ""
|
||||
@@ -804,7 +799,7 @@ msgstr ""
|
||||
msgid "unbanned %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
@@ -814,7 +809,7 @@ msgstr ""
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr ""
|
||||
@@ -829,12 +824,12 @@ msgstr ""
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr ""
|
||||
@@ -844,12 +839,12 @@ msgstr ""
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
@@ -859,7 +854,7 @@ msgstr ""
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr ""
|
||||
@@ -869,177 +864,177 @@ msgstr ""
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "poslal(a) správu"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "poslal(a) nálepku"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "vytvořil(a) místnost"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Hlášení bylo úspěšně odesláno."
|
||||
@@ -1265,6 +1260,7 @@ msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Probíhá načítání…"
|
||||
@@ -1458,7 +1454,7 @@ msgstr "Video"
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Volume"
|
||||
msgstr ""
|
||||
msgstr "Hlasitost"
|
||||
|
||||
#: src/qml/Component/UserInfo.qml:57 src/qml/Settings/AccountsPage.qml:83
|
||||
#, kde-format
|
||||
@@ -2045,13 +2041,13 @@ msgstr "Otevřít v novém okně"
|
||||
#: src/qml/Menu/RoomListContextMenu.qml:178
|
||||
#, kde-format
|
||||
msgid "Remove from Favourites"
|
||||
msgstr ""
|
||||
msgstr "Odstranit z oblíbených"
|
||||
|
||||
#: src/qml/Menu/RoomListContextMenu.qml:37
|
||||
#: src/qml/Menu/RoomListContextMenu.qml:178
|
||||
#, kde-format
|
||||
msgid "Add to Favourites"
|
||||
msgstr ""
|
||||
msgstr "Přidat k oblíbeným"
|
||||
|
||||
#: src/qml/Menu/RoomListContextMenu.qml:43
|
||||
#: src/qml/Menu/RoomListContextMenu.qml:192
|
||||
@@ -2554,12 +2550,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Hledat zprávy"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Nenalezeny žádné výsledky"
|
||||
@@ -2661,7 +2657,7 @@ msgstr[2] "%1 Členů"
|
||||
#: src/qml/Panel/RoomDrawer.qml:251
|
||||
#, kde-format
|
||||
msgid "No Member Count"
|
||||
msgstr ""
|
||||
msgstr "Žádný počet členů"
|
||||
|
||||
#: src/qml/RoomSettings/Categories.qml:15 src/qml/RoomSettings/General.qml:20
|
||||
#: src/qml/Settings/SettingsPage.qml:12
|
||||
@@ -2762,10 +2758,9 @@ msgid "Add new alias"
|
||||
msgstr "Přidat nový alias"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:271
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "URL Previews"
|
||||
msgstr "Načítá se náhled URL"
|
||||
msgstr "Náhledy URL"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:274
|
||||
#, kde-format
|
||||
@@ -2773,10 +2768,9 @@ msgid "Enable URL previews by default for room members"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:282
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "Enable URL previews"
|
||||
msgstr "Načítá se náhled URL"
|
||||
msgstr "Povolit náhledy URL"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, kde-format
|
||||
@@ -3305,7 +3299,7 @@ msgstr ""
|
||||
#: src/qml/Settings/DevicesPage.qml:117
|
||||
#, kde-format
|
||||
msgid "Edit device name"
|
||||
msgstr ""
|
||||
msgstr "Upravit název zařízení"
|
||||
|
||||
#: src/qml/Settings/DevicesPage.qml:131
|
||||
#, kde-format
|
||||
@@ -3356,7 +3350,7 @@ msgstr "Přidat emotikon..."
|
||||
#: src/qml/Settings/Emoticons.qml:116
|
||||
#, kde-format
|
||||
msgid "Images (*.png *.gif *.webp)"
|
||||
msgstr ""
|
||||
msgstr "Obrázky (*.png *.gif *.webp)"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:15
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:14
|
||||
@@ -3398,7 +3392,7 @@ msgstr ""
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:95
|
||||
#, kde-format
|
||||
msgid "Show state events"
|
||||
msgstr ""
|
||||
msgstr "Zobrazit stav událostí"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:112
|
||||
#, kde-format
|
||||
@@ -3444,7 +3438,7 @@ msgstr ""
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:209
|
||||
#, kde-format
|
||||
msgid "Send typing notifications"
|
||||
msgstr ""
|
||||
msgstr "Posílat oznamování o psaní"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:226
|
||||
#, kde-format
|
||||
@@ -3606,7 +3600,7 @@ msgstr "Povolit upozornění"
|
||||
#: src/qml/Settings/NotificationRuleItem.qml:87
|
||||
#, kde-format
|
||||
msgid "Mute notifications"
|
||||
msgstr ""
|
||||
msgstr "Ztlumit oznámení"
|
||||
|
||||
#: src/qml/Settings/NotificationRuleItem.qml:87
|
||||
#, kde-format
|
||||
@@ -3668,12 +3662,12 @@ msgstr "Kontrola pravopisu"
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:94
|
||||
#, kde-format
|
||||
msgid "Selected default language:"
|
||||
msgstr ""
|
||||
msgstr "Vybraný výchozí jazyk:"
|
||||
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:105
|
||||
#, kde-format
|
||||
msgid "Open Personal Dictionary"
|
||||
msgstr ""
|
||||
msgstr "Otevřít osobní slovník"
|
||||
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:124
|
||||
#, kde-format
|
||||
@@ -3698,12 +3692,12 @@ msgstr ""
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:160
|
||||
#, kde-format
|
||||
msgid "Detect language automatically"
|
||||
msgstr ""
|
||||
msgstr "Automaticky detekovat jazyk"
|
||||
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:172
|
||||
#, kde-format
|
||||
msgid "Spell checking languages"
|
||||
msgstr ""
|
||||
msgstr "Jazyky pro kontrolu pravopisu"
|
||||
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:180
|
||||
#, kde-format
|
||||
|
||||
111
po/da/neochat.po
111
po/da/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2020-12-13 17:28+0100\n"
|
||||
"Last-Translator: Martin Schlander <mschlander@opensuse.org>\n"
|
||||
"Language-Team: Danish <kde-i18n-doc@kde.org>\n"
|
||||
@@ -672,14 +672,14 @@ msgstr ""
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -731,7 +731,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr ""
|
||||
@@ -741,7 +741,7 @@ msgstr ""
|
||||
msgid "invited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr ""
|
||||
@@ -751,7 +751,7 @@ msgstr ""
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -763,29 +763,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " og "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -796,7 +796,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr ""
|
||||
@@ -806,7 +806,7 @@ msgstr ""
|
||||
msgid "unbanned %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
@@ -816,7 +816,7 @@ msgstr ""
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr ""
|
||||
@@ -831,12 +831,12 @@ msgstr ""
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr ""
|
||||
@@ -846,12 +846,12 @@ msgstr ""
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
@@ -861,7 +861,7 @@ msgstr ""
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr ""
|
||||
@@ -871,180 +871,180 @@ msgstr ""
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send message"
|
||||
msgid "sent a message"
|
||||
msgstr "Send besked"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "created the room"
|
||||
msgstr "Lydløs"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send message"
|
||||
msgid "removed a widget"
|
||||
msgstr "Send besked"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr ""
|
||||
@@ -1283,6 +1283,7 @@ msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading"
|
||||
msgid "Loading…"
|
||||
@@ -2611,12 +2612,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Send besked"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
454
po/de/neochat.po
454
po/de/neochat.po
@@ -2,23 +2,23 @@
|
||||
# This file is distributed under the same license as the neochat package.
|
||||
# Alois Spitzbart <spitz234@hotmail.com>, 2020, 2022.
|
||||
# Burkhard Lück <lueck@hube-lueck.de>, 2021.
|
||||
# Frederik Schwarzer <schwarzer@kde.org>, 2022.
|
||||
# Frederik Schwarzer <schwarzer@kde.org>, 2022, 2023.
|
||||
# Frank Steinmetzger <dev-kde@felsenfleischer.de>, 2022.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2022-12-20 14:10+0100\n"
|
||||
"Last-Translator: Frank Steinmetzger <dev-kde@felsenfleischer.de>\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-05-05 19:31+0200\n"
|
||||
"Last-Translator: Frederik Schwarzer <schwarzer@kde.org>\n"
|
||||
"Language-Team: German <kde-i18n-de@kde.org>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 22.12.0\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Lokalize 23.07.70\n"
|
||||
|
||||
#: src/controller.cpp:198
|
||||
#, kde-format
|
||||
@@ -80,7 +80,7 @@ msgstr "Das Zugangs-Token kann nicht gelesen werden"
|
||||
#: src/controller.cpp:616
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
msgstr "Datei zu groß für einen Download."
|
||||
|
||||
#: src/controller.cpp:616
|
||||
#, kde-format
|
||||
@@ -351,10 +351,8 @@ msgid "Knocking room %1."
|
||||
msgstr "Beitritt zu Raum %1."
|
||||
|
||||
#: src/models/actionsmodel.cpp:242
|
||||
#, fuzzy
|
||||
#| msgid "[<room alias or id>]"
|
||||
msgid "<room alias or id> [<reason>]"
|
||||
msgstr "[<Raumalias oder -ID>]"
|
||||
msgstr "<room alias or id> [<reason>]"
|
||||
|
||||
#: src/models/actionsmodel.cpp:243
|
||||
#, fuzzy
|
||||
@@ -544,10 +542,7 @@ msgid "Removes the user from the room"
|
||||
msgstr "Den Benutzer aus dem Raum entfernen"
|
||||
|
||||
#: src/models/collapsestateproxymodel.cpp:70
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[user did something] n times"
|
||||
#| msgid " %1 time"
|
||||
#| msgid_plural " %1 times"
|
||||
#, kde-format
|
||||
msgctxt "n times"
|
||||
msgid " %1 time "
|
||||
msgid_plural " %1 times "
|
||||
@@ -559,13 +554,11 @@ msgstr[1] "%1 Mal"
|
||||
msgctxt "n users"
|
||||
msgid " %1 user "
|
||||
msgid_plural " %1 users "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] " %1 Benutzer "
|
||||
msgstr[1] " %1 Benutzer "
|
||||
|
||||
#: src/models/collapsestateproxymodel.cpp:86
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
#, kde-format
|
||||
msgctxt "[action 1], [action 2 and/or action 3]"
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
@@ -574,7 +567,7 @@ msgstr ", "
|
||||
#, kde-format
|
||||
msgctxt "[action 1, action 2] or [action 3]"
|
||||
msgid " or "
|
||||
msgstr ""
|
||||
msgstr " oder "
|
||||
|
||||
#: src/models/collapsestateproxymodel.cpp:89
|
||||
#, kde-format
|
||||
@@ -683,17 +676,15 @@ msgstr "[GELÖSCHT]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[GELÖSCHT: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "1 Benutzer: "
|
||||
msgstr[1] "%1 Benutzer: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
@@ -744,7 +735,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "hat den Raum wiederholt betreten"
|
||||
@@ -754,7 +745,7 @@ msgstr "hat den Raum wiederholt betreten"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "hat %1 in den Raum eingeladen"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "hat den Raum betreten"
|
||||
@@ -764,7 +755,7 @@ msgstr "hat den Raum betreten"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -776,29 +767,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "hat den eigenen Anzeigenamen zu %1 geändert"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " und "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "hat den eigenen Avatar gelöscht"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "hat einen Avatar festgelegt"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "hat den eigenen Avatar aktualisiert"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -809,7 +800,7 @@ msgstr "hat nichts geändert"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "hat die Einladung an %1 zurückgezogen"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "hat die Einladung abgelehnt"
|
||||
@@ -819,7 +810,7 @@ msgstr "hat die Einladung abgelehnt"
|
||||
msgid "unbanned %1"
|
||||
msgstr "hat Verbannung von %1 aufgehoben"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "hat die eigene Verbannung aufgehoben"
|
||||
@@ -829,7 +820,7 @@ msgstr "hat die eigene Verbannung aufgehoben"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "hat %1 aus den Raum entfernt: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "hat den Raum verlassen"
|
||||
@@ -844,12 +835,12 @@ msgstr "hat %1 aus dem Raum verbannt"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "hat %1 aus dem Raum verbannt: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "hat sich selbst aus dem Raum verbannt"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "hat eine Einladung angefragt"
|
||||
@@ -860,12 +851,12 @@ msgstr "hat eine Einladung angefragt"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "hat eine Einladung angefragt"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "hat etwas Unbekanntes getan"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "hat den Hauptalias des Raums gelöscht"
|
||||
@@ -875,7 +866,7 @@ msgstr "hat den Hauptalias des Raums gelöscht"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "hat den Hauptalias des Raums geändert zu: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "hat den Raumnamen gelöscht"
|
||||
@@ -885,198 +876,177 @@ msgstr "hat den Raumnamen gelöscht"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "hat den Raumnamen geändert zu: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "hat das Thema gelöscht"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "hat das Thema geändert zu: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "hat das Raumbild geändert"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "hat die Ende-zu-Ende-Verschlüsselung aktiviert"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "hat den Raum auf Version %1 aktualisiert"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "hat den Raum in Version %1 erstellt"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "Die Berechtigungsstufen des Raumes wurden geändert"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "hat die Server-Zugangskontrollliste für diesen Raum geändert"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "hat %1-Element hinzugefügt"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "hat %1-Element entfernt"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "hat %1-Element eingerichtet"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "aktualisierte %1-Zustand"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "aktualisierte %1-Zustand für %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Unbekanntes Ereignis"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send a message…"
|
||||
msgid "sent a message"
|
||||
msgstr "Eine Nachricht senden ..."
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "hat eine Nachricht gesendet"
|
||||
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
msgstr "hat einen Sticker gesendet"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "hat %1 wieder in den Raum eingeladen"
|
||||
msgstr "hat jemanden wieder in den Raum eingeladen"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "hat %1 in den Raum eingeladen"
|
||||
msgstr "hat jemanden in den Raum eingeladen"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "hat den eigenen Anzeigenamen zu %1 geändert"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "hat die Einladung an %1 zurückgezogen"
|
||||
msgstr "hat den eigenen Anzeigenamen geändert"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "hat die Einladung eines Benutzers zurückgezogen"
|
||||
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "hat Verbannung von %1 aufgehoben"
|
||||
msgstr "hat Verbannung eines Benutzers aufgehoben"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "hat %1 aus den Raum entfernt: %2"
|
||||
msgstr "hat einen Benutzer aus den Raum entfernt"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room"
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "hat %1 aus dem Raum verbannt"
|
||||
msgstr "hat einen Benutzer aus dem Raum verbannt"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "hat den Hauptalias des Raums geändert zu: %1"
|
||||
msgstr "hat den Hauptalias des Raums geändert"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "hat den Raumnamen geändert zu: %1"
|
||||
msgstr "hat den Raumnamen geändert"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "hat das Thema geändert zu: %1"
|
||||
msgstr "hat das Thema geändert"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "hat den Raum auf Version %1 aktualisiert"
|
||||
msgstr "hat die Raum-Version aktualisiert"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "hat den Raum verlassen"
|
||||
msgstr "hat den Raum erstellt"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] added <name> widget"
|
||||
#| msgid "added %1 widget"
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "hat %1-Element hinzugefügt"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] removed <name> widget"
|
||||
#| msgid "removed %1 widget"
|
||||
msgid "removed a widget"
|
||||
msgstr "hat %1-Element entfernt"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] configured <name> widget"
|
||||
#| msgid "configured %1 widget"
|
||||
msgid "configured a widget"
|
||||
msgstr "hat %1-Element eingerichtet"
|
||||
msgstr "hat ein Element hinzugefügt"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "aktualisierte %1-Zustand"
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "hat ein Element entfernt"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "hat ein Element eingerichtet"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
msgid "updated the state"
|
||||
msgstr "hat den Zustand aktualisiert"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "hat eine Abstimmung gestartet"
|
||||
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Meldung erfolgreich übertragen."
|
||||
@@ -1137,10 +1107,9 @@ msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:62
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel sending Image"
|
||||
#, kde-format
|
||||
msgid "Cancel sending attachment"
|
||||
msgstr "Bildversand abbrechen"
|
||||
msgstr "Senden des Anhangs abbrechen"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:31
|
||||
#, kde-format
|
||||
@@ -1191,10 +1160,9 @@ msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat ist offline. Bitte überprüfen Sie Ihre Netzwerkverbindung."
|
||||
|
||||
#: src/qml/Component/ChatBox/ReplyPane.qml:32
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Replying to %1:"
|
||||
#, kde-format
|
||||
msgid "Replying to:"
|
||||
msgstr "Antwort an %1:"
|
||||
msgstr "Antwort an:"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiGrid.qml:77
|
||||
#, kde-format
|
||||
@@ -1220,10 +1188,9 @@ msgstr "Raum erstellen"
|
||||
|
||||
#: src/qml/Component/ExploreComponent.qml:58
|
||||
#: src/qml/Component/ExploreComponent.qml:109
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Rooms and private chats"
|
||||
#, kde-format
|
||||
msgid "Create rooms and chats"
|
||||
msgstr "Räume und private Unterhaltungen"
|
||||
msgstr "Räume und Unterhaltungen erstellen"
|
||||
|
||||
#: src/qml/Component/FullScreenImage.qml:82
|
||||
#, kde-format
|
||||
@@ -1305,6 +1272,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix-ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Wird geladen ..."
|
||||
@@ -1418,31 +1386,29 @@ msgstr "Herunterladen abbrechen"
|
||||
#: src/qml/Component/Timeline/LinkPreviewDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Shrink preview"
|
||||
msgstr ""
|
||||
msgstr "Vorschau verkleinern"
|
||||
|
||||
#: src/qml/Component/Timeline/LinkPreviewDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Expand preview"
|
||||
msgstr ""
|
||||
msgstr "Vorschau vergrößern"
|
||||
|
||||
#: src/qml/Component/Timeline/LinkPreviewDelegate.qml:152
|
||||
#, kde-format
|
||||
msgid "Loading URL preview"
|
||||
msgstr ""
|
||||
msgstr "Adressvorschau wird geladen"
|
||||
|
||||
#: src/qml/Component/Timeline/MessageEditComponent.qml:75
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Confirm"
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Confirm edit"
|
||||
msgstr "Bestätigen"
|
||||
msgstr "Änderungen bestätigen"
|
||||
|
||||
#: src/qml/Component/Timeline/MessageEditComponent.qml:87
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel edit"
|
||||
msgstr "Abbrechen"
|
||||
msgstr "Bearbeiten abbrechen"
|
||||
|
||||
#: src/qml/Component/Timeline/PollDelegate.qml:48
|
||||
#, kde-format
|
||||
@@ -1499,7 +1465,7 @@ msgstr "Video"
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Volume"
|
||||
msgstr ""
|
||||
msgstr "Lautstärke"
|
||||
|
||||
#: src/qml/Component/UserInfo.qml:57 src/qml/Settings/AccountsPage.qml:83
|
||||
#, kde-format
|
||||
@@ -1844,23 +1810,21 @@ msgstr ""
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:37
|
||||
#: src/qml/RoomSettings/Permissions.qml:74
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Members"
|
||||
#, kde-format
|
||||
msgid "Member (0)"
|
||||
msgstr "Mitglieder"
|
||||
msgstr "Mitglied (0)"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:38
|
||||
#: src/qml/RoomSettings/Permissions.qml:75
|
||||
#, kde-format
|
||||
msgid "Moderator (50)"
|
||||
msgstr ""
|
||||
msgstr "Moderator (50)"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:39
|
||||
#: src/qml/RoomSettings/Permissions.qml:76
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Admin"
|
||||
#, kde-format
|
||||
msgid "Admin (100)"
|
||||
msgstr "Administrator"
|
||||
msgstr "Admin (100)"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:43 src/qml/RoomSettings/General.qml:347
|
||||
#: src/qml/Settings/DevicesPage.qml:186
|
||||
@@ -1890,10 +1854,9 @@ msgid "Kick this user"
|
||||
msgstr "Diesen Benutzer rauswerfen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ignore this user"
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Diesen Benutzer ignorieren"
|
||||
msgstr "Diesen Benutzer einladen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
@@ -2238,11 +2201,10 @@ msgid "Shared url for image is <a href='%1'>%1</a>"
|
||||
msgstr "Geteilte URL für das Bild ist <a href='%1'>%1</a>"
|
||||
|
||||
#: src/qml/Menu/SpaceListContextMenu.qml:25
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "View Source"
|
||||
#, kde-format
|
||||
msgctxt "'Space' is a matrix space"
|
||||
msgid "View Space"
|
||||
msgstr "Quelltext anzeigen"
|
||||
msgstr "Space anzeigen"
|
||||
|
||||
#: src/qml/Menu/SpaceListContextMenu.qml:39
|
||||
#, kde-format
|
||||
@@ -2252,10 +2214,9 @@ msgstr "Space-Einstellungen"
|
||||
|
||||
#: src/qml/Menu/SpaceListContextMenu.qml:40
|
||||
#: src/qml/Menu/SpaceListContextMenu.qml:97
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Settings"
|
||||
#, kde-format
|
||||
msgid "Space Settings"
|
||||
msgstr "Einstellungen"
|
||||
msgstr "Space-Einstellungen"
|
||||
|
||||
#: src/qml/Menu/SpaceListContextMenu.qml:46
|
||||
#: src/qml/Menu/SpaceListContextMenu.qml:101
|
||||
@@ -2640,22 +2601,20 @@ msgid "React"
|
||||
msgstr "Reagieren"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:17
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Direct Messages"
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Direktnachrichten"
|
||||
msgstr "Nachrichten suchen"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
msgstr "Geben Sie einen Text ein, um mit der Suche zu beginnen"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No rooms found"
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Keine Räume gefunden"
|
||||
msgstr "Keine Ergebnisse gefunden"
|
||||
|
||||
#: src/qml/Page/StartChatPage.qml:38
|
||||
#, kde-format
|
||||
@@ -2693,10 +2652,9 @@ msgid "No Topic"
|
||||
msgstr "Kein Thema"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:182
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Options:"
|
||||
#, kde-format
|
||||
msgid "Options"
|
||||
msgstr "Einstellungen:"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:190
|
||||
#, kde-format
|
||||
@@ -2709,16 +2667,15 @@ msgid "Developer Tools"
|
||||
msgstr "Entwicklungswerkzeuge"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:202
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "NeoChat in diesem Raum öffnen"
|
||||
msgstr "In diesem Raum suchen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
msgstr "Suchen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:216
|
||||
#, kde-format
|
||||
@@ -2736,10 +2693,9 @@ msgid "Members"
|
||||
msgstr "Mitglieder"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:230
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "NeoChat in diesem Raum öffnen"
|
||||
msgstr "Benutzer in Raum suchen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:244
|
||||
#, kde-format
|
||||
@@ -2772,7 +2728,7 @@ msgstr "Sicherheit"
|
||||
#: src/qml/RoomSettings/Categories.qml:35
|
||||
#, kde-format
|
||||
msgid "Permissions"
|
||||
msgstr ""
|
||||
msgstr "Berechtigungen"
|
||||
|
||||
#: src/qml/RoomSettings/Categories.qml:45 src/qml/Settings/SettingsPage.qml:22
|
||||
#, kde-format
|
||||
@@ -2807,29 +2763,24 @@ msgid "Save"
|
||||
msgstr "Speichern"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:125
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Rooms"
|
||||
#, kde-format
|
||||
msgid "Room ID"
|
||||
msgstr "Räume"
|
||||
msgstr "Raumkennung"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:130
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@action:inmenu"
|
||||
#| msgid "Copy Address to Clipboard"
|
||||
#, kde-format
|
||||
msgid "Copy room ID to clipboard"
|
||||
msgstr "Adresse in die Zwischenablage kopieren"
|
||||
msgstr "Raumkennung in die Zwischenablage kopieren"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:144
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room information"
|
||||
#, kde-format
|
||||
msgid "Room version"
|
||||
msgstr "Informationen zum Raum"
|
||||
msgstr "Raum-Version"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:150
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Explore Rooms"
|
||||
#, kde-format
|
||||
msgid "Upgrade Room"
|
||||
msgstr "Räume erkunden"
|
||||
msgstr "Raum aktualisieren"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:173
|
||||
#, kde-format
|
||||
@@ -2864,7 +2815,7 @@ msgstr "Neuen Alias hinzufügen"
|
||||
#: src/qml/RoomSettings/General.qml:271
|
||||
#, kde-format
|
||||
msgid "URL Previews"
|
||||
msgstr ""
|
||||
msgstr "Adressvorschauen"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:274
|
||||
#, kde-format
|
||||
@@ -2874,7 +2825,7 @@ msgstr ""
|
||||
#: src/qml/RoomSettings/General.qml:282
|
||||
#, kde-format
|
||||
msgid "Enable URL previews"
|
||||
msgstr ""
|
||||
msgstr "Adressvorschauen aktivieren"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
@@ -2911,16 +2862,14 @@ msgid "See new room…"
|
||||
msgstr "Siehe neuen Raum ..."
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:337
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
#, kde-format
|
||||
msgid "Upgrade the Room"
|
||||
msgstr "hat den Raum verlassen"
|
||||
msgstr "Den Raum aktualisieren"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:341
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "See new room..."
|
||||
#, kde-format
|
||||
msgid "Select new version"
|
||||
msgstr "Siehe neuen Raum ..."
|
||||
msgstr "Neue Version auswählen"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:39
|
||||
#, kde-format
|
||||
@@ -2930,7 +2879,7 @@ msgstr ""
|
||||
#: src/qml/RoomSettings/Permissions.qml:220
|
||||
#, kde-format
|
||||
msgid "Default permissions"
|
||||
msgstr ""
|
||||
msgstr "Standard-Berechtigungen"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:223
|
||||
#, kde-format
|
||||
@@ -2968,23 +2917,20 @@ msgstr ""
|
||||
#: src/qml/RoomSettings/Permissions.qml:258
|
||||
#, kde-format
|
||||
msgid "Basic permissions"
|
||||
msgstr ""
|
||||
msgstr "Einfache Berechtigungen"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:261
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
#, kde-format
|
||||
msgid "Invite users"
|
||||
msgstr "Einen Benutzer einladen"
|
||||
msgstr "Benutzer einladen"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:269
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Kick this user"
|
||||
#, kde-format
|
||||
msgid "Kick users"
|
||||
msgstr "Diesen Benutzer rauswerfen"
|
||||
msgstr "Benutzer rauswerfen"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:277
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ban User"
|
||||
#, kde-format
|
||||
msgid "Ban users"
|
||||
msgstr "Benutzer verbannen"
|
||||
|
||||
@@ -2997,24 +2943,22 @@ msgstr "Kürzliche Nachrichten dieses Benutzers löschen"
|
||||
#: src/qml/RoomSettings/Permissions.qml:301
|
||||
#, kde-format
|
||||
msgid "Event permissions"
|
||||
msgstr ""
|
||||
msgstr "Ereignisberechtigungen"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:304
|
||||
#, kde-format
|
||||
msgid "Change user permissions"
|
||||
msgstr ""
|
||||
msgstr "Benutzer-Berechtigungen ändern"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:313
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "cleared the room name"
|
||||
#, kde-format
|
||||
msgid "Change the room name"
|
||||
msgstr "hat den Raumnamen gelöscht"
|
||||
msgstr "Raumnamen ändern"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:322
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "changed the room avatar"
|
||||
#, kde-format
|
||||
msgid "Change the room avatar"
|
||||
msgstr "hat das Raumbild geändert"
|
||||
msgstr "Raumbild ändern"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:331
|
||||
#, fuzzy, kde-format
|
||||
@@ -3029,10 +2973,9 @@ msgid "Change the room topic"
|
||||
msgstr "hat das Raumbild geändert"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:349
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Enable encryption"
|
||||
#, kde-format
|
||||
msgid "Enable encryption for the room"
|
||||
msgstr "Verschlüsselung aktivieren"
|
||||
msgstr "Verschlüsselung für diesen Raum aktivieren"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:358
|
||||
#, fuzzy, kde-format
|
||||
@@ -3048,10 +2991,9 @@ msgid "Set pinned events"
|
||||
msgstr "Zeitleisten-Ereignisse"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:376
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
#, kde-format
|
||||
msgid "Upgrade the room"
|
||||
msgstr "hat den Raum verlassen"
|
||||
msgstr "Den Raum aktualisieren"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:385
|
||||
#, fuzzy, kde-format
|
||||
@@ -3089,11 +3031,10 @@ msgstr ""
|
||||
"Einstellung zu aktivieren."
|
||||
|
||||
#: src/qml/RoomSettings/Security.qml:32
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Enable encryption"
|
||||
#, kde-format
|
||||
msgctxt "@option:check"
|
||||
msgid "Encryption"
|
||||
msgstr "Verschlüsselung aktivieren"
|
||||
msgstr "Verschlüsselung"
|
||||
|
||||
#: src/qml/RoomSettings/Security.qml:36
|
||||
#, kde-format
|
||||
@@ -3136,11 +3077,10 @@ msgid "Anyone in a space can find and join."
|
||||
msgstr "Jeder im Space kann den Raum finden und betreten."
|
||||
|
||||
#: src/qml/RoomSettings/Security.qml:76
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "knocked"
|
||||
#, kde-format
|
||||
msgctxt "@option:check"
|
||||
msgid "Knock"
|
||||
msgstr "hat angeklopft"
|
||||
msgstr "Anklopfen"
|
||||
|
||||
#: src/qml/RoomSettings/Security.qml:77
|
||||
#, fuzzy, kde-format
|
||||
@@ -3240,11 +3180,10 @@ msgid "About NeoChat"
|
||||
msgstr "Über NeoChat"
|
||||
|
||||
#: src/qml/Settings/AboutKDE.qml:7
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "About"
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "About KDE"
|
||||
msgstr "Über"
|
||||
msgstr "Über KDE"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:17
|
||||
#, kde-format
|
||||
@@ -3362,7 +3301,7 @@ msgstr "Kompakt"
|
||||
#: src/qml/Settings/AppearanceSettingsPage.qml:207
|
||||
#, kde-format
|
||||
msgid "Use compact room list"
|
||||
msgstr ""
|
||||
msgstr "Kompakte Raumliste verwenden"
|
||||
|
||||
#: src/qml/Settings/AppearanceSettingsPage.qml:233
|
||||
#, kde-format
|
||||
@@ -3533,10 +3472,9 @@ msgid "Show deleted messages"
|
||||
msgstr "Gelöschte Nachricht anzeigen"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show avatar update events"
|
||||
#, kde-format
|
||||
msgid "Show state events"
|
||||
msgstr "Avataränderungen anzeigen"
|
||||
msgstr "Statusänderungen anzeigen"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:112
|
||||
#, kde-format
|
||||
@@ -3795,10 +3733,9 @@ msgid "About NeoChat"
|
||||
msgstr "Über NeoChat"
|
||||
|
||||
#: src/qml/Settings/SettingsPage.qml:58
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "About"
|
||||
#, kde-format
|
||||
msgid "About KDE"
|
||||
msgstr "Über"
|
||||
msgstr "Über KDE"
|
||||
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:50
|
||||
#, kde-format
|
||||
@@ -3901,10 +3838,9 @@ msgstr ""
|
||||
"und das Konto."
|
||||
|
||||
#: src/roommanager.cpp:210
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invites to a room"
|
||||
#, kde-format
|
||||
msgid "Failed to join room"
|
||||
msgstr "Einladungen in einen Raum"
|
||||
msgstr "Raum kann nicht betreten werden"
|
||||
|
||||
#: src/roommanager.cpp:227
|
||||
#, kde-format
|
||||
|
||||
111
po/el/neochat.po
111
po/el/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-01-06 16:47+0200\n"
|
||||
"Last-Translator: Stelios <sstavra@gmail.com>\n"
|
||||
"Language-Team: Greek <kde-i18n-el@kde.org>\n"
|
||||
@@ -678,14 +678,14 @@ msgstr "[ΔΙΑΓΡΑΜΜΕΝΟ]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ΔΙΑΓΡΑΜΜΕΝΟ: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -739,7 +739,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "εισήλθε στην αίθουσα (επαναληπτικά)"
|
||||
@@ -749,7 +749,7 @@ msgstr "εισήλθε στην αίθουσα (επαναληπτικά)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "προσκλήθηκε %1 στην αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "εισήλθε στην αίθουσα"
|
||||
@@ -759,7 +759,7 @@ msgstr "εισήλθε στην αίθουσα"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -771,29 +771,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "άλλαξε το όνομά του όπως εμφανίζεται σε %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " και "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "καθάρισε το δικό του avatar"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ρύθμιση avatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "ενημέρωσε το δικό του avatar"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -804,7 +804,7 @@ msgstr "δεν άλλαξε τίποτε"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "απόσυρε την πρόσκληση για %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "απόρριψε την πρόσκληση"
|
||||
@@ -814,7 +814,7 @@ msgstr "απόρριψε την πρόσκληση"
|
||||
msgid "unbanned %1"
|
||||
msgstr "αναιρέθηκε ο αποκλεισμός για %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "αυτοαναίρεση αποκλεισμού"
|
||||
@@ -824,7 +824,7 @@ msgstr "αυτοαναίρεση αποκλεισμού"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "έχει θέσει %1 εκτός αιθούσης: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "έφυγε από την αίθουσα"
|
||||
@@ -839,12 +839,12 @@ msgstr "αποκλείστηκε %1 από την αίθουσα"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "αποκλείστηκε %1 από την αίθουσα: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "αυτο-αποκλείστηκε από την αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "αιτήθηκε μια πρόσκληση"
|
||||
@@ -854,12 +854,12 @@ msgstr "αιτήθηκε μια πρόσκληση"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "αιτήθηκε μια πρόσκληση με αιτιολόγηση: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "έκανε κάτι άγνωστο"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "καθάρισε το κύριο συνώνυμο της αίθουσας"
|
||||
@@ -869,7 +869,7 @@ msgstr "καθάρισε το κύριο συνώνυμο της αίθουσα
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ρύθμιση του κύριου συνώνυμου της αίθουσας σε: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "καθάρισε το όνομα της αίθουσας"
|
||||
@@ -879,105 +879,105 @@ msgstr "καθάρισε το όνομα της αίθουσας"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ρύθμιση του ονόματος της αίθουσας σε: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "καθάρισε το θέμα"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ρύθμιση του θέματος σε: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "άλλαξε το avatar της αίθουσας"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "ενεργοποιήθηκε κρυπτογράφηση στα άκρα"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "αναβαθμίστηκε η αίθουσα σε έκδοση %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "δημιουργήθηκε η αίθουσα, έκδοση %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "άλλαξαν τα επίπεδα δικαιωμάτων για αυτήν την αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
"άλλαξαν οι λίστες ελέγχου πρόσβασης στον εξυπηρετητή για αυτήν την αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "προστέθηκε %1 γραφικό συστατικό"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "αφαιρέθηκε %1 γραφικό συστατικό"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "διαμορφώθηκε %1 γραφικό συστατικό"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "ενημερώθηκε %1 κατάσταση"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "ενημερώθηκε %1 κατάσταση για το %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Άγνωστο γεγονός"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send a message…"
|
||||
msgid "sent a message"
|
||||
msgstr "Αποστολή μηνύματος…"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "επαναπροσκλήθηκε %1 στην αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "προσκλήθηκε %1 στην αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
@@ -985,93 +985,93 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "άλλαξε το όνομά του όπως εμφανίζεται σε %1"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "απόσυρε την πρόσκληση για %1"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "αναιρέθηκε ο αποκλεισμός για %1"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "έχει θέσει %1 εκτός αιθούσης: %2"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "αποκλείστηκε %1 από την αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
msgid "set the room main alias"
|
||||
msgstr "ρύθμιση του κύριου συνώνυμου της αίθουσας σε: %1"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
msgid "set the room name"
|
||||
msgstr "ρύθμιση του ονόματος της αίθουσας σε: %1"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "ρύθμιση του θέματος σε: %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "αναβαθμίστηκε η αίθουσα σε έκδοση %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "έφυγε από την αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] added <name> widget"
|
||||
#| msgid "added %1 widget"
|
||||
msgid "added a widget"
|
||||
msgstr "προστέθηκε %1 γραφικό συστατικό"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] removed <name> widget"
|
||||
#| msgid "removed %1 widget"
|
||||
msgid "removed a widget"
|
||||
msgstr "αφαιρέθηκε %1 γραφικό συστατικό"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] configured <name> widget"
|
||||
#| msgid "configured %1 widget"
|
||||
msgid "configured a widget"
|
||||
msgstr "διαμορφώθηκε %1 γραφικό συστατικό"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "ενημερώθηκε %1 κατάσταση"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Η αναφορά εστάλη με επιτυχία."
|
||||
@@ -1300,6 +1300,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Φορτώνει…"
|
||||
@@ -2624,12 +2625,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Αναζήτηση στα μηνύματα"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Δώσε ένα κείμενο για να ξεκινήσει η αναζήτηση"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Δεν βρέθηκαν αποτελέσματα"
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-03-14 21:08+0000\n"
|
||||
"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
|
||||
"Language-Team: British English\n"
|
||||
@@ -662,14 +662,14 @@ msgstr "[REDACTED]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REDACTED: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 user: "
|
||||
msgstr[1] "%1 users: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -721,7 +721,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "joined the room (repeated)"
|
||||
@@ -731,7 +731,7 @@ msgstr "joined the room (repeated)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "invited %1 to the room"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "joined the room"
|
||||
@@ -741,7 +741,7 @@ msgstr "joined the room"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -753,29 +753,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "changed their display name to %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " and "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "cleared their avatar"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "set an avatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "updated their avatar"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -786,7 +786,7 @@ msgstr "changed nothing"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "withdrew %1's invitation"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "rejected the invitation"
|
||||
@@ -796,7 +796,7 @@ msgstr "rejected the invitation"
|
||||
msgid "unbanned %1"
|
||||
msgstr "unbanned %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "self-unbanned"
|
||||
@@ -806,7 +806,7 @@ msgstr "self-unbanned"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "has put %1 out of the room: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "left the room"
|
||||
@@ -821,12 +821,12 @@ msgstr "banned %1 from the room"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "banned %1 from the room: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "self-banned from the room"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "requested an invite"
|
||||
@@ -836,12 +836,12 @@ msgstr "requested an invite"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "requested an invite with reason: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "made something unknown"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "cleared the room main alias"
|
||||
@@ -851,7 +851,7 @@ msgstr "cleared the room main alias"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "set the room main alias to: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "cleared the room name"
|
||||
@@ -861,177 +861,177 @@ msgstr "cleared the room name"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "set the room name to: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "cleared the topic"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "set the topic to: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "changed the room avatar"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "activated End-to-End Encryption"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "upgraded the room to version %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "created the room, version %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "changed the power levels for this room"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "changed the server access control lists for this room"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "added %1 widget"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "removed %1 widget"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "configured %1 widget"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "updated %1 state"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "updated %1 state for %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Unknown event"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "sent a message"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "sent a sticker"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "re-invited someone to the room"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "invited someone to the room"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "changed their display name"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "withdrew a user's invitation"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "un-banned a user"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "put a user out of the room"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "banned a user from the room"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "set the room main alias"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "set the room name"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "set the topic"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "upgraded the room version"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "created the room"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "added a widget"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "removed a widget"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "configured a widget"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "updated the state"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "started a poll"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Report sent successfully."
|
||||
@@ -1259,6 +1259,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Loading…"
|
||||
@@ -2578,12 +2579,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Search Messages"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Enter a text to start searching"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "No results found"
|
||||
|
||||
111
po/es/neochat.po
111
po/es/neochat.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-03-14 13:23+0100\n"
|
||||
"Last-Translator: Eloy Cuadra <ecuadra@eloihr.net>\n"
|
||||
"Language-Team: Spanish <kde-l10n-es@kde.org>\n"
|
||||
@@ -668,14 +668,14 @@ msgstr "[CORREGIDO]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[CORREGIDO: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 usuario: "
|
||||
msgstr[1] "%1 usuarios: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -727,7 +727,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "se ha unido a la sala (repetido)"
|
||||
@@ -737,7 +737,7 @@ msgstr "se ha unido a la sala (repetido)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "ha invitado a %1 a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "se ha unido a la sala"
|
||||
@@ -747,7 +747,7 @@ msgstr "se ha unido a la sala"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -759,29 +759,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "ha cambiado su nombre visible a %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " y "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "ha borrado su avatar"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ha definido un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "ha actualizado su avatar"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -792,7 +792,7 @@ msgstr "no ha cambiado nada"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "ha retirado la invitación de %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "ha rechazado la invitación"
|
||||
@@ -802,7 +802,7 @@ msgstr "ha rechazado la invitación"
|
||||
msgid "unbanned %1"
|
||||
msgstr "ha habilitado a %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "se ha habilitado a sí mismo"
|
||||
@@ -812,7 +812,7 @@ msgstr "se ha habilitado a sí mismo"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "ha echado a %1 de la sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "ha salido de la sala"
|
||||
@@ -827,12 +827,12 @@ msgstr "ha inhabilitado a %1 en la sala"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "ha inhabilitado a %1 en la sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "se ha inhabilitado a sí mismo en la sala"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "ha solicitado una invitación"
|
||||
@@ -842,12 +842,12 @@ msgstr "ha solicitado una invitación"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "ha solicitado una invitación con el motivo: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "ha hecho algo desconocido"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "ha borrado el alias principal de la sala"
|
||||
@@ -857,7 +857,7 @@ msgstr "ha borrado el alias principal de la sala"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ha definido el alias principal de la sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "ha borrado el nombre de la sala"
|
||||
@@ -867,177 +867,177 @@ msgstr "ha borrado el nombre de la sala"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ha definido el nombre de la sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "ha borrado el tema"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ha definido el tema a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "ha cambiado el avatar de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "ha activado el cifrado de extremo a extremo"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "ha actualizado la sala a la versión %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "ha creado la sala, versión %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "ha cambiado los niveles de poder de esta sala"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "ha cambiado las listas de control de acceso al servidor para esta sala"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "ha añadido el widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "ha eliminado el widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "ha configurado el widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "ha actualizado el estado de %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "ha actualizado el estado de %1 para %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Evento desconocido"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "ha enviado un mensaje"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "ha enviado una pegatina"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "ha vuelto a invitar a alguien a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "ha invitado a alguien a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ha cambiado su nombre visible"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "ha retirado la invitación de un usuario"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ha habilitado a un usuario"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "ha echado a un usuario de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "ha inhabilitado a un usuario en la sala"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "ha definido el alias principal de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ha definido el nombre de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "ha definido el tema"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "ha actualizado la versión de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "ha creado la sala"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "ha añadido un widget"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "ha eliminado un widget"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ha configurado un widget"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "ha actualizado el estado"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "ha iniciado una encuesta"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "La denuncia se ha enviado correctamente."
|
||||
@@ -1265,6 +1265,7 @@ msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Cargando..."
|
||||
@@ -2590,12 +2591,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Buscar mensajes"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Introduzca un texto para empezar a buscar"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "No se han encontrado coincidencias"
|
||||
|
||||
205
po/eu/neochat.po
205
po/eu/neochat.po
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-02-23 20:06+0100\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-04-22 21:58+0200\n"
|
||||
"Last-Translator: Iñigo Salvador Azurmendi <xalba@ni.eus>\n"
|
||||
"Language-Team: Basque <kde-i18n-eu@kde.org>\n"
|
||||
"Language: eu\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Lokalize 22.12.2\n"
|
||||
"X-Generator: Lokalize 23.04.0\n"
|
||||
|
||||
#: src/controller.cpp:198
|
||||
#, kde-format
|
||||
@@ -669,20 +669,15 @@ msgstr "[ERREDAKZIO LANA DU]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ERREDAKZIOAK LANA DU: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "n users"
|
||||
#| msgid " %1 user "
|
||||
#| msgid_plural " %1 users "
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "Erabiltzaile %1"
|
||||
msgstr[1] "%1 erabiltzaile"
|
||||
msgstr[0] "Erabiltzaile 1:"
|
||||
msgstr[1] "%1 erabiltzaile:"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and/or action 3]"
|
||||
#| msgid ", "
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
@@ -733,7 +728,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "gelara batu da (errepikatuta)"
|
||||
@@ -743,7 +738,7 @@ msgstr "gelara batu da (errepikatuta)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 gelara gonbidatu du"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "gelara batu da"
|
||||
@@ -753,7 +748,7 @@ msgstr "gelara batu da"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -765,29 +760,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "azaldutako bere izena «%1»(e)ra aldatu du"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " eta "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "bere abatarra garbitu du"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ezarri abatar bat"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "bere abatarra eguneratu du"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -798,7 +793,7 @@ msgstr "ez da ezer aldatu"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "%1(r)en gonbita erretiratu du"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "gonbidapena errefusatu du"
|
||||
@@ -808,7 +803,7 @@ msgstr "gonbidapena errefusatu du"
|
||||
msgid "unbanned %1"
|
||||
msgstr "%1(e)ri debekua altxatu zaio"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "bere buruari debekua altxatuta"
|
||||
@@ -818,7 +813,7 @@ msgstr "bere buruari debekua altxatuta"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "%1 gelatik kanporatu du: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "gela utzi du"
|
||||
@@ -833,12 +828,12 @@ msgstr "%1(e)ri gelarako debekua ipini zaio"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "%1(e)ri gelarako debekua ipini zaio: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "bere buruari gela honetarako debekua ipinita"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "gonbidapen bat eskatu du"
|
||||
@@ -848,12 +843,12 @@ msgstr "gonbidapen bat eskatu du"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "gonbidapen bat eskatu du, arrazoia: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "zerbait ezezaguna egin du"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "gelaren ezizen nagusia garbitu da"
|
||||
@@ -863,7 +858,7 @@ msgstr "gelaren ezizen nagusia garbitu da"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ezarri gelako ezizen nagusia honetara: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "gelako izena garbitu da"
|
||||
@@ -873,178 +868,178 @@ msgstr "gelako izena garbitu da"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ezarri gelaren izana honetara: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "gaia garbitu da"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ezarri gai honetara: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "gelako abatarra aldatu da"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "muturren arteko zifratzea aktibatu da"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "gela %1 bertsiora bertsio-berritu da"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "gela sortu da, %1 bertsioa"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "gela honetako ahalmen mailak aldatu dira"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
"gela honetarako zerbitzarirako sarrera-kontroleko zerrendak aldatu zituen"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "trepeta %1 gehitu da"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "trepeta %1 kendu da"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "trepeta %1 konfiguratu da"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "%1 egoera eguneratu da"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "%2(r)en %1 egoera eguneratu da"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Gertaera ezezaguna"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "mezua bat bidali du..."
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "eranskailu bat bidali du"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "norbait gelara berriz gonbidatu du"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "norbait gelara gonbidatu du"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "azaldutako bere izena aldatu du"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "erabiltzaile bati gonbidapena erretiratu dio"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "erabiltzaile bati debekua altxatu dio"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "erabiltzaile bat gelatik kanporatu du"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "erabiltzaile bati gelarako debekua ipini dio"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "gelaren ezizen nagusia ezarri du"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "gelaren izena ezarri du"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "gaia ezarri du"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "gelaren bertsioa bertsio-berritu du"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "gela sortu du"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "trepeta bat gehitu du"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "trepeta bat kendu du"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "trepeta bat konfiguratu du"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "egoera eguneratu du"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "inkesta bat hasi du"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Txosten bidalketa arrakastatsua."
|
||||
@@ -1188,10 +1183,9 @@ msgstr "Sortu gela bat"
|
||||
|
||||
#: src/qml/Component/ExploreComponent.qml:58
|
||||
#: src/qml/Component/ExploreComponent.qml:109
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Rooms and private chats"
|
||||
#, kde-format
|
||||
msgid "Create rooms and chats"
|
||||
msgstr "Gelak eta berriketa pribatuak"
|
||||
msgstr "Gelak eta berriketak sortzea"
|
||||
|
||||
#: src/qml/Component/FullScreenImage.qml:82
|
||||
#, kde-format
|
||||
@@ -1273,6 +1267,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Zamatzen..."
|
||||
@@ -1795,23 +1790,21 @@ msgstr "Erabiltzailearen ahalmen maila editatzea"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:37
|
||||
#: src/qml/RoomSettings/Permissions.qml:74
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Member"
|
||||
#, kde-format
|
||||
msgid "Member (0)"
|
||||
msgstr "Partaidea"
|
||||
msgstr "Partaidea (0)"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:38
|
||||
#: src/qml/RoomSettings/Permissions.qml:75
|
||||
#, kde-format
|
||||
msgid "Moderator (50)"
|
||||
msgstr ""
|
||||
msgstr "Moderatzailea (50)"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:39
|
||||
#: src/qml/RoomSettings/Permissions.qml:76
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Admin"
|
||||
#, kde-format
|
||||
msgid "Admin (100)"
|
||||
msgstr "Administratzailea"
|
||||
msgstr "Administratzailea (100)"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:43 src/qml/RoomSettings/General.qml:347
|
||||
#: src/qml/Settings/DevicesPage.qml:186
|
||||
@@ -1862,10 +1855,9 @@ msgid "Unban this user"
|
||||
msgstr "Erabiltzailearen debekua altxatzea"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit user power level"
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Erabiltzailearen ahalmen maila editatzea"
|
||||
msgstr "Ezarri erabiltzailearen ahalmen maila"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
@@ -2592,12 +2584,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Bilatu mezuak"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Sartu testu bat bilatzen hasteko"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Ez da emaitzarik aurkitu"
|
||||
@@ -2754,11 +2746,9 @@ msgid "Room ID"
|
||||
msgstr "Gelaren ID"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:130
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@action:inmenu"
|
||||
#| msgid "Copy Address to Clipboard"
|
||||
#, kde-format
|
||||
msgid "Copy room ID to clipboard"
|
||||
msgstr "Kopiatu helbidea arbelera"
|
||||
msgstr "Kopiatu gelaren IDa arbelera"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:144
|
||||
#, kde-format
|
||||
@@ -2801,35 +2791,29 @@ msgid "Add new alias"
|
||||
msgstr "Gehitu ezizen berria"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:271
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "URL Previews"
|
||||
msgstr "URLaren aurreikuspegia zamatzen"
|
||||
msgstr "URL aurreikuspegiak"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:274
|
||||
#, kde-format
|
||||
msgid "Enable URL previews by default for room members"
|
||||
msgstr ""
|
||||
msgstr "Gaitu URL aurreikuspegiak, era lehenetsian, gelako partaideentzat"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:282
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "Enable URL previews"
|
||||
msgstr "URLaren aurreikuspegia zamatzen"
|
||||
msgstr "Gaitu URL aurreikuspegiak"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "<user> is already in this room."
|
||||
#| msgid "%1 is already in this room."
|
||||
#, kde-format
|
||||
msgid "URL previews are enabled by default in this room"
|
||||
msgstr "%1 dagoeneko gela honetan dago."
|
||||
msgstr "URL aurreikuspegiak gaituta daude gela honetan era lehenetsian"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "<user> is already in this room."
|
||||
#| msgid "%1 is already in this room."
|
||||
#, kde-format
|
||||
msgid "URL previews are disabled by default in this room"
|
||||
msgstr "%1 dagoeneko gela honetan dago."
|
||||
msgstr "URL aurreikuspegiak ezgaituta daude gela honetan era lehenetsian"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:297
|
||||
#, kde-format
|
||||
@@ -3156,11 +3140,10 @@ msgid "About NeoChat"
|
||||
msgstr "Neochat-i buruz"
|
||||
|
||||
#: src/qml/Settings/AboutKDE.qml:7
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "About"
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "About KDE"
|
||||
msgstr "Honi buruz"
|
||||
msgstr "KDEri buruz"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:17
|
||||
#, kde-format
|
||||
@@ -3439,7 +3422,7 @@ msgstr ""
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:77
|
||||
#, kde-format
|
||||
msgid "Timeline Events"
|
||||
msgstr "Denbora-lerroko ekitaldiak"
|
||||
msgstr "Denbora-lerroko gertaerak"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:82
|
||||
#, kde-format
|
||||
@@ -3447,25 +3430,24 @@ msgid "Show deleted messages"
|
||||
msgstr "Erakutsi ezabatutako mezuak"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show avatar update events"
|
||||
#, kde-format
|
||||
msgid "Show state events"
|
||||
msgstr "Erakutsi abatara eguneratzeko gertakariak"
|
||||
msgstr "Erakutsi egoera gertaerak"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:112
|
||||
#, kde-format
|
||||
msgid "Show leave and join events"
|
||||
msgstr "Erakutsi irteera eta batze gertakariak"
|
||||
msgstr "Erakutsi irteera eta batze gertaerak"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:130
|
||||
#, kde-format
|
||||
msgid "Show name change events"
|
||||
msgstr "Erakutsi izena aldatzeko gertakariak"
|
||||
msgstr "Erakutsi izena aldatzeko gertaerak"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:148
|
||||
#, kde-format
|
||||
msgid "Show avatar update events"
|
||||
msgstr "Erakutsi abatara eguneratzeko gertakariak"
|
||||
msgstr "Erakutsi abatara eguneratzeko gertaerak"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:165
|
||||
#, kde-format
|
||||
@@ -3707,10 +3689,9 @@ msgid "About NeoChat"
|
||||
msgstr "Neochat-i buruz"
|
||||
|
||||
#: src/qml/Settings/SettingsPage.qml:58
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "About"
|
||||
#, kde-format
|
||||
msgid "About KDE"
|
||||
msgstr "Honi buruz"
|
||||
msgstr "KDEri buruz"
|
||||
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:50
|
||||
#, kde-format
|
||||
@@ -3756,7 +3737,7 @@ msgstr "Hizkuntza automatikoki antzeman"
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:172
|
||||
#, kde-format
|
||||
msgid "Spell checking languages"
|
||||
msgstr "Ortografia-aztertzeko hizkuntza"
|
||||
msgstr "Ortografia-aztertzeko hizkuntzak"
|
||||
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:180
|
||||
#, kde-format
|
||||
|
||||
193
po/fi/neochat.po
193
po/fi/neochat.po
@@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-03-08 23:02+0200\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-04-04 23:04+0300\n"
|
||||
"Last-Translator: Tommi Nieminen <translator@legisign.org>\n"
|
||||
"Language-Team: Finnish <kde-i18n-doc@kde.org>\n"
|
||||
"Language: fi\n"
|
||||
@@ -662,20 +662,15 @@ msgstr "[MUOKATTU]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[MUOKATTU: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "n users"
|
||||
#| msgid " %1 user "
|
||||
#| msgid_plural " %1 users "
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] " 1 käyttäjä "
|
||||
msgstr[1] " %1 käyttäjää "
|
||||
msgstr[0] "1 käyttäjä: "
|
||||
msgstr[1] "%1 käyttäjää: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and/or action 3]"
|
||||
#| msgid ", "
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
@@ -726,7 +721,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "liittyi huoneeseen (toisto)"
|
||||
@@ -736,7 +731,7 @@ msgstr "liittyi huoneeseen (toisto)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "kutsui huoneeseen henkilön %1"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "liittyi huoneeseen"
|
||||
@@ -746,7 +741,7 @@ msgstr "liittyi huoneeseen"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -758,29 +753,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "vaihtoi näyttönimekseen %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " ja "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "tyhjensi avatarinsa"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "asetti avatarin"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "päivitti avatarinsa"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -791,7 +786,7 @@ msgstr "ei muuttanut mitään"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "peruutti henkilön %1 kutsun"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "hylkäsi kutsun"
|
||||
@@ -801,7 +796,7 @@ msgstr "hylkäsi kutsun"
|
||||
msgid "unbanned %1"
|
||||
msgstr "perui käyttäjän %1 eston"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "perui itsensä eston"
|
||||
@@ -811,7 +806,7 @@ msgstr "perui itsensä eston"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "poisti henkilön %1 huoneesta %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "poistui huoneesta"
|
||||
@@ -826,12 +821,12 @@ msgstr "torjui käyttäjän %1 huoneesta"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "esti henkilön %1 pääsemästä huoneeseen %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "esti itsensä pääsemästä huoneeseen"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "pyysi kutsua"
|
||||
@@ -841,12 +836,12 @@ msgstr "pyysi kutsua"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "pyysi kutsua, koska: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "teki jotakin tuntematonta"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "tyhjensi huoneen pääaliaksen"
|
||||
@@ -856,7 +851,7 @@ msgstr "tyhjensi huoneen pääaliaksen"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "asetti huoneen pääaliakseksi %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "tyhjensi huoneen nimen"
|
||||
@@ -866,178 +861,178 @@ msgstr "tyhjensi huoneen nimen"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "asetti huoneen nimeksi %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "tyhjensi aiheen"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "asetti aiheeksi %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "vaihtoi huoneen avatarin"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "aktivoi alusta loppuun -salauksen"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "päivitti huoneen versioon %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "loi huoneen, versio %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "muutti tämän huoneen käyttöoikeustasoja"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "muutti tämän huoneen palvelimen ACL-luetteloita"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "lisäsi %1-sovelman"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "poisti %1-sovelman"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "muutti %1-sovelman asetuksia"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "päivitti %1-tilansa"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "päivitti käyttäjän %2 %1-tilan"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Tuntematon tapahtuma"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "lähetti viestin"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "lähetti tarran"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "kutsui jonkun huoneeseen uudestaan"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "kutsui jonkun huoneeseen"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "vaihtoi näyttönimeään"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "perui käyttäjän kutsun"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "perui käyttäjän eston"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "poisti henkilön huoneesta"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "esti käyttäjän huoneesta"
|
||||
|
||||
# Nämä set…-alkuiset oletan imperfekteiksi imperatiivien sijaan, koska ympärillä on muita (banned, upgraded jne.)
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "asetti huoneen pääaliaksen"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "asetti huoneen nimen"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "asetti aiheen"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "päivitti huoneen version"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "loi huoneen"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "lisäsi sovelman"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "poisti sovelman"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "määritti sovelman"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "päivitti tilan"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "aloitti kyselyn"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Ilmoituksen lähettäminen onnistui."
|
||||
@@ -1265,6 +1260,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix-tunniste:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Ladataan…"
|
||||
@@ -1776,7 +1772,7 @@ msgstr "Valitse tiedosto"
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:14
|
||||
#, kde-format
|
||||
msgid "Edit user power level"
|
||||
msgstr ""
|
||||
msgstr "Muokkaa käyttäjän voimatasoa"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:37
|
||||
#: src/qml/RoomSettings/Permissions.qml:74
|
||||
@@ -1847,7 +1843,7 @@ msgstr "Poista esto tältä käyttäjältä"
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
msgstr "Aseta käyttäjän voimataso"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
@@ -2574,12 +2570,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Etsi viestejä"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Aloita haku kirjoittamalla tekstiä"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Ei hakutuloksia"
|
||||
@@ -2781,35 +2777,30 @@ msgid "Add new alias"
|
||||
msgstr "Lisää uusi alias"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:271
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "URL Previews"
|
||||
msgstr "Ladataan verkko-osoitteen esikatselua"
|
||||
msgstr "Verkko-osoitteen esikatselut"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:274
|
||||
#, kde-format
|
||||
msgid "Enable URL previews by default for room members"
|
||||
msgstr ""
|
||||
msgstr "Salli huoneen jäsenille oletuksena verkko-osoitteiden esikatselu"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:282
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "Enable URL previews"
|
||||
msgstr "Ladataan verkko-osoitteen esikatselua"
|
||||
msgstr "Käytä verkko-osoitteiden esikatselua"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "<user> is already in this room."
|
||||
#| msgid "%1 is already in this room."
|
||||
#, kde-format
|
||||
msgid "URL previews are enabled by default in this room"
|
||||
msgstr "%1 on jo tässä huoneessa."
|
||||
msgstr "Verkko-osoitteiden esikatselu on jo käytössä tässä huoneessa"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "<user> is already in this room."
|
||||
#| msgid "%1 is already in this room."
|
||||
#, kde-format
|
||||
msgid "URL previews are disabled by default in this room"
|
||||
msgstr "%1 on jo tässä huoneessa."
|
||||
msgstr ""
|
||||
"Verkko-osoitteiden esikatselu on tässä huoneessa oletuksena poissa käytöstä"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:297
|
||||
#, kde-format
|
||||
@@ -2854,19 +2845,17 @@ msgstr "Oletusluvat"
|
||||
#: src/qml/RoomSettings/Permissions.qml:223
|
||||
#, kde-format
|
||||
msgid "Default user power level"
|
||||
msgstr ""
|
||||
msgstr "Käyttäjän oletusvoimataso"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:224
|
||||
#, kde-format
|
||||
msgid "This is power level for all new users when joining the room"
|
||||
msgstr ""
|
||||
msgstr "Tämä on kaikkien huoneeseen liittyvien uusien käyttäjien voimataso"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:232
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "'power level' means permission level"
|
||||
#| msgid "changed the power levels for this room"
|
||||
#, kde-format
|
||||
msgid "Default power level to set the room state"
|
||||
msgstr "muutti tämän huoneen käyttöoikeustasoja"
|
||||
msgstr "Huoneen tilan asettamisen oletusvoimataso"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:233
|
||||
#, kde-format
|
||||
@@ -2877,7 +2866,7 @@ msgstr ""
|
||||
#: src/qml/RoomSettings/Permissions.qml:241
|
||||
#, kde-format
|
||||
msgid "Default power level to send messages"
|
||||
msgstr ""
|
||||
msgstr "Viestien lähettämisen oletusvoimataso"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:242
|
||||
#, kde-format
|
||||
@@ -2962,15 +2951,14 @@ msgid "Upgrade the room"
|
||||
msgstr "Päivitä huone"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:385
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "changed the server access control lists for this room"
|
||||
#, kde-format
|
||||
msgid "Set the room server access control list (ACL)"
|
||||
msgstr "muutti tämän huoneen palvelimen ACL-luetteloita"
|
||||
msgstr "Aseta huoneen palvelimen ACL"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:395
|
||||
#, kde-format
|
||||
msgid "Set the children of this space"
|
||||
msgstr ""
|
||||
msgstr "Aseta tämän tilan perilliset"
|
||||
|
||||
#: src/qml/RoomSettings/Permissions.qml:404
|
||||
#, kde-format
|
||||
@@ -3133,11 +3121,10 @@ msgid "About NeoChat"
|
||||
msgstr "Tietoa Neochatistä"
|
||||
|
||||
#: src/qml/Settings/AboutKDE.qml:7
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "About"
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "About KDE"
|
||||
msgstr "Tietoa"
|
||||
msgstr "Tietoa KDE:stä"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:17
|
||||
#, kde-format
|
||||
@@ -3424,10 +3411,9 @@ msgid "Show deleted messages"
|
||||
msgstr "Näytä poistetut viestit"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show avatar update events"
|
||||
#, kde-format
|
||||
msgid "Show state events"
|
||||
msgstr "Näytä avatarinpäivitystapahtumat"
|
||||
msgstr "Näytä tilatapahtumat"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:112
|
||||
#, kde-format
|
||||
@@ -3509,12 +3495,12 @@ msgstr "Huoneilmoitukset"
|
||||
#: src/qml/Settings/GlobalNotificationsPage.qml:43
|
||||
#, kde-format
|
||||
msgid "Messages in one-to-one chats"
|
||||
msgstr ""
|
||||
msgstr "Kahdenkeskisten keskustelujen viestit"
|
||||
|
||||
#: src/qml/Settings/GlobalNotificationsPage.qml:57
|
||||
#, kde-format
|
||||
msgid "Encrypted messages in one-to-one chats"
|
||||
msgstr ""
|
||||
msgstr "Kahdenkeskisten keskustelujen salatut viestit"
|
||||
|
||||
#: src/qml/Settings/GlobalNotificationsPage.qml:73
|
||||
#, kde-format
|
||||
@@ -3684,10 +3670,9 @@ msgid "About NeoChat"
|
||||
msgstr "Tietoa Neochatistä"
|
||||
|
||||
#: src/qml/Settings/SettingsPage.qml:58
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "About"
|
||||
#, kde-format
|
||||
msgid "About KDE"
|
||||
msgstr "Tietoa"
|
||||
msgstr "Tietoa KDE:stä"
|
||||
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:50
|
||||
#, kde-format
|
||||
|
||||
133
po/fr/neochat.po
133
po/fr/neochat.po
@@ -1,19 +1,19 @@
|
||||
# Xavier Besnard <xavier.besnard@neuf.fr>, 2020, 2021, 2022.
|
||||
# Xavier BESNARD <xavier.besnard]neuf.fr>, 2022, 2023.
|
||||
# Xavier BESNARD <xavier.besnard@neuf.fr>, 2022, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-03-15 14:49+0100\n"
|
||||
"Last-Translator: Xavier BESNARD <xavier.besnard]neuf.fr>\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-05-19 09:31+0200\n"
|
||||
"Last-Translator: Xavier BESNARD <xavier.besnard@neuf.fr>\n"
|
||||
"Language-Team: fr\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
"X-Generator: Lokalize 23.04.2\n"
|
||||
|
||||
#: src/controller.cpp:198
|
||||
#, kde-format
|
||||
@@ -438,7 +438,7 @@ msgstr "%1 n'est plus ignoré maintenant."
|
||||
|
||||
#: src/models/actionsmodel.cpp:417
|
||||
msgid "Unignores the given user"
|
||||
msgstr "Reprendre en compte l’utilisateur donné"
|
||||
msgstr "Reprendre en compte l'utilisateur donné"
|
||||
|
||||
#: src/models/actionsmodel.cpp:437
|
||||
msgid "<reaction text>"
|
||||
@@ -457,7 +457,7 @@ msgstr "%1 est déjà banni de ce salon."
|
||||
#: src/models/actionsmodel.cpp:460
|
||||
#, kde-format
|
||||
msgid "You are not allowed to ban users from this room."
|
||||
msgstr "Vous n’êtes pas autorisé à bannir des utilisateurs de ce salon."
|
||||
msgstr "Vous n'êtes pas autorisé à bannir des utilisateurs de ce salon."
|
||||
|
||||
#: src/models/actionsmodel.cpp:466
|
||||
#, kde-format
|
||||
@@ -483,7 +483,7 @@ msgstr "Bannis l'utilisateur donné"
|
||||
#, kde-format
|
||||
msgid "You are not allowed to unban users from this room."
|
||||
msgstr ""
|
||||
"Vous n’êtes pas autorisé à supprimer le bannissement d'utilisateurs de ce "
|
||||
"Vous n'êtes pas autorisé à supprimer le bannissement d'utilisateurs de ce "
|
||||
"salon."
|
||||
|
||||
#: src/models/actionsmodel.cpp:496
|
||||
@@ -547,7 +547,7 @@ msgstr[1] " %1 fois "
|
||||
msgctxt "n users"
|
||||
msgid " %1 user "
|
||||
msgid_plural " %1 users "
|
||||
msgstr[0] " utilisateur %1 "
|
||||
msgstr[0] " utilisateur %1 "
|
||||
msgstr[1] " %1 utilisateurs "
|
||||
|
||||
#: src/models/collapsestateproxymodel.cpp:86
|
||||
@@ -669,14 +669,14 @@ msgstr "[RÉDIGÉ]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[RÉDIGÉ : %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] " utilisateur %1 :"
|
||||
msgstr[1] " %1 utilisateurs :"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -728,7 +728,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr " : %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "a rejoint le salon (répété)"
|
||||
@@ -738,7 +738,7 @@ msgstr "a rejoint le salon (répété)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 invité dans le salon"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "a rejoint le salon"
|
||||
@@ -748,7 +748,7 @@ msgstr "a rejoint le salon"
|
||||
msgid ": %1"
|
||||
msgstr " : %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -760,29 +760,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "a modifié leur nom d'affichage en %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr "et"
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "a effacé leur avatar"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "Définir un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "a mis à jour leur avatar"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -793,7 +793,7 @@ msgstr "ne rien modifier"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "a retiré l'invitation de %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "Invitation rejetée"
|
||||
@@ -803,7 +803,7 @@ msgstr "Invitation rejetée"
|
||||
msgid "unbanned %1"
|
||||
msgstr "ré-intégré %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "Auto-banni"
|
||||
@@ -813,7 +813,7 @@ msgstr "Auto-banni"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "a déclaré %1 en dehors du salon : %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "quitté le salon"
|
||||
@@ -828,12 +828,12 @@ msgstr "a banni %1 du salon"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "a banni %1 du salon : %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "auto-banni du salon"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "Nécessite une invitation."
|
||||
@@ -843,12 +843,12 @@ msgstr "Nécessite une invitation."
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "A demandé une invitation avec le motif : %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "a fait quelque chose d'inconnu"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "a effacé l'alias principal du salon"
|
||||
@@ -858,7 +858,7 @@ msgstr "a effacé l'alias principal du salon"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "a défini l'alias principal du salon à : %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "nom du salon effacé"
|
||||
@@ -868,177 +868,177 @@ msgstr "nom du salon effacé"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "Définir le nom du salon à : %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "effacé le sujet"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "définir le sujet à : %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "L'avatar du salon changé"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "a activé le chiffrement de bout en bout"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "a mis à jour le salon vers la version %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "a créé le salon en version %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "Modification des privilèges d'accès pour ce salon."
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "Modification des listes de contrôle d'accès au serveur pour ce salon."
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "composant graphique %1 ajouté"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "composant graphique %1 supprimé"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "composant graphique %1 configuré"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "État mis à jour de %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "État mis à jour de %1 vers %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Évènement inconnu"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "Envoyer un message"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "a envoyé un autocollant"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "a ré-invité une personne dans le salon"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "a invité une personne dans le salon"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "a modifié leur nom d'affichage"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "a retiré l'invitation d'un utilisateur"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ré-intégré un utilisateur"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "a expulsé un utilisateur du salon"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "a banni un utilisateur du salon"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "a défini l'alias principal du salon"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "définir le nom du salon"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "définir le sujet"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "a mis à jour la version du salon"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "a créé le salon"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "composant graphique ajouté"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "composant graphique supprimé"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "composant graphique configuré"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "État mis à jour"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "a démarré un vote"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Rapport envoyé avec succès."
|
||||
@@ -1266,6 +1266,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Identifiant Matrix :"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Chargement..."
|
||||
@@ -2593,12 +2594,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Rechercher des messages"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Saisissez un texte pour démarrer la recherche"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Aucun résultat n'a été trouvé."
|
||||
@@ -3100,7 +3101,7 @@ msgctxt "@option:check"
|
||||
msgid "Anyone, regardless of whether they have joined, can view history."
|
||||
msgstr ""
|
||||
"Toute personne, indépendamment du fait qu'ils ont rejoint le salon. Peut "
|
||||
"voir l’historique."
|
||||
"voir l'historique."
|
||||
|
||||
#: src/qml/RoomSettings/Security.qml:116
|
||||
#, kde-format
|
||||
@@ -3130,7 +3131,7 @@ msgid ""
|
||||
"New members can view the message history from the point they were invited to "
|
||||
"the room."
|
||||
msgstr ""
|
||||
"Les nouveaux membres peuvent consulter l’historique du message à partir du "
|
||||
"Les nouveaux membres peuvent consulter l'historique du message à partir du "
|
||||
"moment où ils ont été invités dans le salon."
|
||||
|
||||
#: src/qml/RoomSettings/Security.qml:134
|
||||
@@ -3145,7 +3146,7 @@ msgctxt "@option:check"
|
||||
msgid ""
|
||||
"New members can view the message history from the point they joined the room."
|
||||
msgstr ""
|
||||
"Les nouveaux membres peuvent consulter l’historique du message à partir du "
|
||||
"Les nouveaux membres peuvent consulter l'historique du message à partir du "
|
||||
"moment où ils se sont connectés au salon."
|
||||
|
||||
#: src/qml/RoomSettings/Security.qml:154
|
||||
|
||||
111
po/hu/neochat.po
111
po/hu/neochat.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2021-11-08 09:39+0100\n"
|
||||
"Last-Translator: Kristof Kiszel <kiszel.kristof@gmail.com>\n"
|
||||
"Language-Team: Hungarian <kde-l10n-hu@kde.org>\n"
|
||||
@@ -746,14 +746,14 @@ msgstr "[KITAKARVA]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[KITAKARVA: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -805,7 +805,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "csatlakozott a szobához (ismét)"
|
||||
@@ -815,7 +815,7 @@ msgstr "csatlakozott a szobához (ismét)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "meghívta őt a szobába: %1"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "csatlakozott a szobához"
|
||||
@@ -825,7 +825,7 @@ msgstr "csatlakozott a szobához"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -837,29 +837,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "megváltoztatta a megjelenített nevét erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " és "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "törölte a profilképét"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "beállított egy profilképet"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "frissítette a profilképét"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -870,7 +870,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "visszavonta %1 meghívását"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "elutasította a meghívást"
|
||||
@@ -880,7 +880,7 @@ msgstr "elutasította a meghívást"
|
||||
msgid "unbanned %1"
|
||||
msgstr "feloldotta %1 tiltását"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "feloldotta a saját tiltását"
|
||||
@@ -890,7 +890,7 @@ msgstr "feloldotta a saját tiltását"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "kirakta a szobából őt: %1. Ok: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "elhagyta a szobát"
|
||||
@@ -906,12 +906,12 @@ msgstr "kitiltotta a szobából őt: %1. Ok: %2"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "kitiltotta a szobából őt: %1. Ok: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "kitiltotta magát a szobából"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "elutasított egy meghívást"
|
||||
@@ -922,12 +922,12 @@ msgstr "elutasított egy meghívást"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "elutasított egy meghívást"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "valami ismeretlent csinált"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "törölte a szoba fő álnevét"
|
||||
@@ -937,7 +937,7 @@ msgstr "törölte a szoba fő álnevét"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "beállította a szoba fő álnevét erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "törölte a szoba nevét"
|
||||
@@ -947,104 +947,104 @@ msgstr "törölte a szoba nevét"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "beállította a szoba nevét erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "törölte a témát"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "beállította a témát erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "megváltoztatta a szoba profilképét"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "bekapcsolta a végpontok közötti titkosítást"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "frissítette a szoba verzióját erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "létrehozta a szobát, a verzió: %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "frissítette a(z) %1 állapotát"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "frissítette a(z) %1 állapotát erre: %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Ismeretlen esemény"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send message"
|
||||
msgid "sent a message"
|
||||
msgstr "Üzenet küldése"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "újra meghívta őt a szobába: %1"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "meghívta őt a szobába: %1"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
@@ -1052,88 +1052,88 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "megváltoztatta a megjelenített nevét erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "visszavonta %1 meghívását"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "feloldotta %1 tiltását"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "kirakta a szobából őt: %1. Ok: %2"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "kitiltotta a szobából őt: %1. Ok: %2"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
msgid "set the room main alias"
|
||||
msgstr "beállította a szoba fő álnevét erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
msgid "set the room name"
|
||||
msgstr "beállította a szoba nevét erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "beállította a témát erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "frissítette a szoba verzióját erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "elhagyta a szobát"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgid "removed a widget"
|
||||
msgstr "Üzenet szerkesztése"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "frissítette a(z) %1 állapotát"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Password changed successfully"
|
||||
msgid "Report sent successfully."
|
||||
@@ -1379,6 +1379,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix azonosító:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading"
|
||||
msgid "Loading…"
|
||||
@@ -2718,12 +2719,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Közvetlen üzenet"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No rooms found"
|
||||
msgid "No results found"
|
||||
|
||||
714
po/ia/neochat.po
714
po/ia/neochat.po
File diff suppressed because it is too large
Load Diff
224
po/id/neochat.po
224
po/id/neochat.po
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-02-15 16:40+0700\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-05-19 10:51+0700\n"
|
||||
"Last-Translator: Linerly <linerly@protonmail.com>\n"
|
||||
"Language-Team: Indonesian <kde-i18n-doc@kde.org>\n"
|
||||
"Language: id\n"
|
||||
@@ -16,7 +16,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Lokalize 22.12.2\n"
|
||||
"X-Generator: Poedit 3.3.1\n"
|
||||
|
||||
#: src/controller.cpp:198
|
||||
#, kde-format
|
||||
@@ -77,12 +77,12 @@ msgstr "Tidak dapat membaca token pengaksesan"
|
||||
#: src/controller.cpp:616
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
msgstr "Berkas terlalu besar untuk diunduh."
|
||||
|
||||
#: src/controller.cpp:616
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
msgstr "Hubungi administrator server Matrix Anda untuk dukungan."
|
||||
|
||||
#: src/controller.cpp:648
|
||||
#, kde-format
|
||||
@@ -292,7 +292,7 @@ msgstr "%1 dicekal dari ruangan ini."
|
||||
#: src/models/actionsmodel.cpp:172
|
||||
#, kde-format
|
||||
msgid "You are already in this room."
|
||||
msgstr "Anda sudah ada di ruangan ini"
|
||||
msgstr "Anda sudah ada di ruangan ini."
|
||||
|
||||
#: src/models/actionsmodel.cpp:176
|
||||
#, kde-format
|
||||
@@ -338,22 +338,16 @@ msgid "Joins the given room"
|
||||
msgstr "Bergabung ke ruangan yang ditetapkan"
|
||||
|
||||
#: src/models/actionsmodel.cpp:230
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "Joining room <roomname>."
|
||||
#| msgid "Joining room %1."
|
||||
#, kde-format
|
||||
msgctxt "Knocking room <roomname>."
|
||||
msgid "Knocking room %1."
|
||||
msgstr "Bergabung ke ruangan %1."
|
||||
|
||||
#: src/models/actionsmodel.cpp:242
|
||||
#, fuzzy
|
||||
#| msgid "[<room alias or id>]"
|
||||
msgid "<room alias or id> [<reason>]"
|
||||
msgstr "[<alias ruangan atau id>]"
|
||||
|
||||
#: src/models/actionsmodel.cpp:243
|
||||
#, fuzzy
|
||||
#| msgid "Joins the given room"
|
||||
msgid "Requests to join the given room"
|
||||
msgstr "Bergabung ke ruangan yang ditetapkan"
|
||||
|
||||
@@ -372,7 +366,7 @@ msgstr "Meninggalkan ruangan ini."
|
||||
#, kde-format
|
||||
msgctxt "Leaving room <roomname>."
|
||||
msgid "Leaving room %1."
|
||||
msgstr "Meninggalkan dari ruangan %1"
|
||||
msgstr "Meninggalkan dari ruangan %1."
|
||||
|
||||
#: src/models/actionsmodel.cpp:291 src/models/actionsmodel.cpp:323
|
||||
#, kde-format
|
||||
@@ -543,7 +537,7 @@ msgstr "Mengeluarkan pengguna dari ruangan ini"
|
||||
msgctxt "n times"
|
||||
msgid " %1 time "
|
||||
msgid_plural " %1 times "
|
||||
msgstr[0] "%1 kali"
|
||||
msgstr[0] " %1 kali "
|
||||
msgstr[1] "%1 kali"
|
||||
|
||||
#: src/models/collapsestateproxymodel.cpp:76
|
||||
@@ -551,14 +545,14 @@ msgstr[1] "%1 kali"
|
||||
msgctxt "n users"
|
||||
msgid " %1 user "
|
||||
msgid_plural " %1 users "
|
||||
msgstr[0] "%1 pengguna"
|
||||
msgstr[0] " %1 pengguna "
|
||||
msgstr[1] "%1 pengguna"
|
||||
|
||||
#: src/models/collapsestateproxymodel.cpp:86
|
||||
#, kde-format
|
||||
msgctxt "[action 1], [action 2 and/or action 3]"
|
||||
msgid ", "
|
||||
msgstr ","
|
||||
msgstr ", "
|
||||
|
||||
#: src/models/collapsestateproxymodel.cpp:89
|
||||
#, kde-format
|
||||
@@ -673,23 +667,18 @@ msgstr "[DIHAPUS]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[DIHAPUS: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "n users"
|
||||
#| msgid " %1 user "
|
||||
#| msgid_plural " %1 users "
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "%1 pengguna"
|
||||
msgstr[0] "%1 pengguna: "
|
||||
msgstr[1] "%1 pengguna"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and/or action 3]"
|
||||
#| msgid ", "
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
msgstr ","
|
||||
msgstr ", "
|
||||
|
||||
#: src/models/roomlistmodel.cpp:452
|
||||
#, kde-format
|
||||
@@ -737,7 +726,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "bergabung ke ruangan ini (lagi)"
|
||||
@@ -747,7 +736,7 @@ msgstr "bergabung ke ruangan ini (lagi)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "mengundang %1 ke ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "bergabung ke ruangan ini"
|
||||
@@ -757,7 +746,7 @@ msgstr "bergabung ke ruangan ini"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -769,29 +758,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "mengubah nama tampilan ke %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " dan "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "menghapus avatarnya"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "menetapkan sebuah avatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "memperbarui avatarnya"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -802,7 +791,7 @@ msgstr "tidak mengubah apa pun"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "membatalkan undangannya %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "menolak undangannya"
|
||||
@@ -812,7 +801,7 @@ msgstr "menolak undangannya"
|
||||
msgid "unbanned %1"
|
||||
msgstr "menghilangkan cekalannya %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "menghilangkan cekalannya sendiri"
|
||||
@@ -822,7 +811,7 @@ msgstr "menghilangkan cekalannya sendiri"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "mengeluarkan %1 dari ruangan: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "keluar dari ruangan ini"
|
||||
@@ -837,12 +826,12 @@ msgstr "mencekal %1 dari ruangan"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "mencekal %1 dari ruangan ini: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "mencekal dirinya dari ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "meminta sebuah undangan"
|
||||
@@ -852,12 +841,12 @@ msgstr "meminta sebuah undangan"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "meminta sebuah undangan dengan alasan: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "membuat sebuah hal yang tidak diketahui"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "menghapus alias utama ruangan ini"
|
||||
@@ -867,7 +856,7 @@ msgstr "menghapus alias utama ruangan ini"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "menetapkan alias utama ruangan ini ke: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "menghapus nama ruangan ini"
|
||||
@@ -877,177 +866,177 @@ msgstr "menghapus nama ruangan ini"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "menetapkan nama ruangan ini ke: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "menghapus topiknya"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "menetapkan topiknya ke: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "mengubah avatar ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "diaktifkan Enkripsi Ujung ke Ujung"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "meningkatkan ruangan ini ke versi %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "membuat ruangan ini, versi %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "mengubah tingkat daya untuk ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "mengubah daftar kontrol pengaksesan server untuk ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "menambahkan widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "menghapus widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "mengatur widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "memperbarui status %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "memperbarui status %1 untuk %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Peristiwa tidak diketahui"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "mengirim pesan"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "mengirim stiker"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "mengundang ulang seseorang ke ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "mengundang seseorang ke ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "mengubah nama tampilannya"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "membatalkan undangan pengguna"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "menghilangkan cekalan pengguna"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "mengeluarkan pengguna dari ruangan"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "mencekal pengguna dari ruangan"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "menetapkan alias utama ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "menetapkan nama ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "menetapkan topiknya"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "meningkatkan versi ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "membuat ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "menambahkan widget"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "menghapus widget"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "mengatur widget"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "memperbarui keadaan"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "memulai pemungutan suara"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Laporan berhasil dikirim."
|
||||
@@ -1191,10 +1180,9 @@ msgstr "Buat sebuah Ruangan"
|
||||
|
||||
#: src/qml/Component/ExploreComponent.qml:58
|
||||
#: src/qml/Component/ExploreComponent.qml:109
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Rooms and private chats"
|
||||
#, kde-format
|
||||
msgid "Create rooms and chats"
|
||||
msgstr "Ruangan dan obrolan privat"
|
||||
msgstr "Buat ruangan dan percakapan"
|
||||
|
||||
#: src/qml/Component/FullScreenImage.qml:82
|
||||
#, kde-format
|
||||
@@ -1276,6 +1264,7 @@ msgid "Matrix ID:"
|
||||
msgstr "ID Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Memuat..."
|
||||
@@ -1794,23 +1783,21 @@ msgstr "Sunting tingkat daya pengguna"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:37
|
||||
#: src/qml/RoomSettings/Permissions.qml:74
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Members"
|
||||
#, kde-format
|
||||
msgid "Member (0)"
|
||||
msgstr "Anggota"
|
||||
msgstr "Anggota (0)"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:38
|
||||
#: src/qml/RoomSettings/Permissions.qml:75
|
||||
#, kde-format
|
||||
msgid "Moderator (50)"
|
||||
msgstr ""
|
||||
msgstr "Moderator (50)"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:39
|
||||
#: src/qml/RoomSettings/Permissions.qml:76
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Admin"
|
||||
#, kde-format
|
||||
msgid "Admin (100)"
|
||||
msgstr "Admin"
|
||||
msgstr "Admin (100)"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:43 src/qml/RoomSettings/General.qml:347
|
||||
#: src/qml/Settings/DevicesPage.qml:186
|
||||
@@ -1861,10 +1848,9 @@ msgid "Unban this user"
|
||||
msgstr "Batalkan pencekalan pengguna ini"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit user power level"
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Sunting tingkat daya pengguna"
|
||||
msgstr "Tetapkan tingkat daya pengguna"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
@@ -2107,12 +2093,10 @@ msgid "Mark as Read"
|
||||
msgstr "Tandai sebagai Dibaca"
|
||||
|
||||
#: src/qml/Menu/RoomListContextMenu.qml:55
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@action:inmenu"
|
||||
#| msgid "Copy Address to Clipboard"
|
||||
#, kde-format
|
||||
msgctxt "@action:inmenu"
|
||||
msgid "Copy user's Matrix ID to Clipboard"
|
||||
msgstr "Salin Alamat ke Papan Klip"
|
||||
msgstr "Salin ID Matrix pengguna ke papan klip"
|
||||
|
||||
#: src/qml/Menu/RoomListContextMenu.qml:55
|
||||
#: src/qml/Menu/SpaceListContextMenu.qml:30
|
||||
@@ -2592,12 +2576,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Cari Pesan"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Masukkan teks untuk memulai mencari"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Tidak ada hasil yang ditemukan"
|
||||
@@ -2754,11 +2738,9 @@ msgid "Room ID"
|
||||
msgstr "ID Ruangan"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:130
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@action:inmenu"
|
||||
#| msgid "Copy Address to Clipboard"
|
||||
#, kde-format
|
||||
msgid "Copy room ID to clipboard"
|
||||
msgstr "Salin Alamat ke Papan Klip"
|
||||
msgstr "Salin ID ruangan ke papan klip"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:144
|
||||
#, kde-format
|
||||
@@ -2801,35 +2783,29 @@ msgid "Add new alias"
|
||||
msgstr "Tambahkan alias baru"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:271
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "URL Previews"
|
||||
msgstr "Memuat pratinjau URL"
|
||||
msgstr "Pratinjau URL"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:274
|
||||
#, kde-format
|
||||
msgid "Enable URL previews by default for room members"
|
||||
msgstr ""
|
||||
msgstr "Aktifkan pratinjau URL secara bawaan untuk anggota ruangan"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:282
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "Enable URL previews"
|
||||
msgstr "Memuat pratinjau URL"
|
||||
msgstr "Aktifkan pratinjau URL"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "<user> is already in this room."
|
||||
#| msgid "%1 is already in this room."
|
||||
#, kde-format
|
||||
msgid "URL previews are enabled by default in this room"
|
||||
msgstr "%1 sudah ada di ruangan ini."
|
||||
msgstr "Pratinjau URL telah diaktifkan secara bawaan dalam ruangan ini"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "<user> is already in this room."
|
||||
#| msgid "%1 is already in this room."
|
||||
#, kde-format
|
||||
msgid "URL previews are disabled by default in this room"
|
||||
msgstr "%1 sudah ada di ruangan ini."
|
||||
msgstr "Pratinjau URL telah dinonaktifkan secara bawaan dalam ruangan ini"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:297
|
||||
#, kde-format
|
||||
@@ -3166,7 +3142,7 @@ msgstr "Tentang NeoChat"
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "About KDE"
|
||||
msgstr ""
|
||||
msgstr "Tentang KDE"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:17
|
||||
#, kde-format
|
||||
@@ -3454,10 +3430,9 @@ msgid "Show deleted messages"
|
||||
msgstr "Tampilkan pesan terhapus"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show avatar update events"
|
||||
#, kde-format
|
||||
msgid "Show state events"
|
||||
msgstr "Tampilkan peristiwa pembaruan avatar"
|
||||
msgstr "Tampilkan peristiwa keadaan"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:112
|
||||
#, kde-format
|
||||
@@ -3716,7 +3691,7 @@ msgstr "Tentang NeoChat"
|
||||
#: src/qml/Settings/SettingsPage.qml:58
|
||||
#, kde-format
|
||||
msgid "About KDE"
|
||||
msgstr ""
|
||||
msgstr "Tentang KDE"
|
||||
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:50
|
||||
#, kde-format
|
||||
@@ -3824,13 +3799,12 @@ msgstr "Gagal bergabung dengan ruangan"
|
||||
#: src/roommanager.cpp:227
|
||||
#, kde-format
|
||||
msgid "You requested to join '%1'"
|
||||
msgstr ""
|
||||
msgstr "Anda meminta untuk bergabung ke '%1'"
|
||||
|
||||
#: src/roommanager.cpp:230
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Failed to join room"
|
||||
#, kde-format
|
||||
msgid "Failed to request joining room"
|
||||
msgstr "Gagal bergabung dengan ruangan"
|
||||
msgstr "Gagal meminta bergabung ke ruangan"
|
||||
|
||||
#: src/roommanager.cpp:240
|
||||
#, kde-format
|
||||
|
||||
111
po/ie/neochat.po
111
po/ie/neochat.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2022-10-28 19:18+0700\n"
|
||||
"Last-Translator: OIS <mistresssilvara@hotmail.com>\n"
|
||||
"Language-Team: kde-i18n-doc@kde.org\n"
|
||||
@@ -711,14 +711,14 @@ msgstr "[CENSURAT]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[CENSURAT: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -772,7 +772,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr "'%1'"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, fuzzy, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "Adheret"
|
||||
@@ -782,7 +782,7 @@ msgstr "Adheret"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "invitat %1 al chambre"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "adheret al chamber"
|
||||
@@ -792,7 +792,7 @@ msgstr "adheret al chamber"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -804,29 +804,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "Li nómine de computator ha changeat se"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " e "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "Avatar:"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "assignat un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "Actualisat"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -837,7 +837,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "revocat li invitation de %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "refusat li invitation"
|
||||
@@ -847,7 +847,7 @@ msgstr "refusat li invitation"
|
||||
msgid "unbanned %1"
|
||||
msgstr "debannit %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "self-debannit"
|
||||
@@ -857,7 +857,7 @@ msgstr "self-debannit"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "forlassat li chambre"
|
||||
@@ -872,12 +872,12 @@ msgstr "Obtenente %1 de %2…"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "Obtenente %1 de %2…"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "demandat un invitation"
|
||||
@@ -888,12 +888,12 @@ msgstr "demandat un invitation"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "demandat un invitation"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, fuzzy, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "ínconosset"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, fuzzy, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "[<chambre-pseudonim-o-ID>]"
|
||||
@@ -903,7 +903,7 @@ msgstr "[<chambre-pseudonim-o-ID>]"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, fuzzy, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "Nómine del chambre"
|
||||
@@ -913,183 +913,183 @@ msgstr "Nómine del chambre"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "Nómine del chambre"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "vacuat li tema"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, fuzzy, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "Sin tema"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, fuzzy, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "Avatar:"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, fuzzy, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "Fine de vive"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, fuzzy, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "Nov version: %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, fuzzy, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "Version %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "Widget 1"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "Widget 1"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "Widget 1"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "actualisat %1 statu"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, fuzzy, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "actualisat %1 statu"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Ínconosset eveniment"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, fuzzy, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "Ne successat inviar un missage D-Bus"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, fuzzy, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "Forlassar li chambre"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "invitat %1 al chambre"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "Li nómine de computator ha changeat se"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "revocat li invitation de %1"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "debannit %1"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invites the user to this room"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "Invitar li usator al ti chambre"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, fuzzy, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "Obtenente %1 de %2…"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, fuzzy, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "[<chambre-pseudonim-o-ID>]"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, fuzzy, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "Nómine del chambre"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, fuzzy, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "Sin tema"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "Nov version: %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "forlassat li chambre"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, fuzzy, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "Widget 1"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, fuzzy, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "Widget 1"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, fuzzy, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "Widget 1"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "actualisat %1 statu"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Raport sta inviat successosimen."
|
||||
@@ -1317,6 +1317,7 @@ msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Cargante..."
|
||||
@@ -2629,12 +2630,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Direct missages"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, fuzzy, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Chambres"
|
||||
|
||||
167
po/it/neochat.po
167
po/it/neochat.po
@@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-03-09 22:49+0100\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-06-09 15:52+0200\n"
|
||||
"Last-Translator: Vincenzo Reale <smart2128vr@gmail.com>\n"
|
||||
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
|
||||
"Language: it\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
"X-Generator: Lokalize 23.04.2\n"
|
||||
|
||||
#: src/controller.cpp:198
|
||||
#, kde-format
|
||||
@@ -666,20 +666,15 @@ msgstr "[REDATTO]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REDATTO: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "n users"
|
||||
#| msgid " %1 user "
|
||||
#| msgid_plural " %1 users "
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] " %1 utente "
|
||||
msgstr[1] " %1 utenti "
|
||||
msgstr[0] "1 utente: "
|
||||
msgstr[1] "%1 utenti: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and/or action 3]"
|
||||
#| msgid ", "
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
@@ -730,7 +725,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "è entrato nella stanza (ripetuto)"
|
||||
@@ -740,7 +735,7 @@ msgstr "è entrato nella stanza (ripetuto)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "ha invitato %1 alla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "è entrato nella stanza"
|
||||
@@ -750,7 +745,7 @@ msgstr "è entrato nella stanza"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -762,29 +757,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "ha cambiato il suo nome visualizzato in %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " e "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "ha cancellato il suo avatar"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ha impostato un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "ha aggiornato il suo avatar"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -795,7 +790,7 @@ msgstr "nessuna modifica"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "ha ritirato l'invito di %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "ha rifiutato l'invito"
|
||||
@@ -805,7 +800,7 @@ msgstr "ha rifiutato l'invito"
|
||||
msgid "unbanned %1"
|
||||
msgstr "ha rimosso il bando per %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "ha rimosso il bando da se stesso"
|
||||
@@ -815,7 +810,7 @@ msgstr "ha rimosso il bando da se stesso"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "ha espulso %1 dalla stanza: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "ha abbandonato la stanza"
|
||||
@@ -830,12 +825,12 @@ msgstr "ha bandito %1 dalla stanza"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "ha bandito %1 dalla stanza: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "auto-bandito dalla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "ha richiesto un invito"
|
||||
@@ -845,12 +840,12 @@ msgstr "ha richiesto un invito"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "ha richiesto un invito con motivo: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "ha fatto qualcosa di sconosciuto"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "ha cancellato l'alias principale della stanza"
|
||||
@@ -860,7 +855,7 @@ msgstr "ha cancellato l'alias principale della stanza"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ha impostato l'alias principale della stanza a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "ha cancellato il nome della stanza"
|
||||
@@ -870,177 +865,177 @@ msgstr "ha cancellato il nome della stanza"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ha impostato il nome della stanza a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "ha cancellato l'argomento"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ha impostato l'argomento a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "ha cambiato l'avatar della stanza"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "ha attivato la cifratura End-to-End"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "ha aggiornato la stanza alla versione %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "ha creato la stanza, versione %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "ha modificato i livelli di potenza per questa stanza"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "ha modificato la lista di controllo degli accessi per questa stanza"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "aggiunto %1 oggetto"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "rimosso %1 oggetto"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "configurato %1 oggetto"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "ha aggiornato lo stato di %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "ha aggiornato lo stato di %1 per %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Evento sconosciuto"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "ha inviato un messaggio"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "ha inviato un adesivo"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "ha invitato nuovamente qualcuno alla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "ha invitato qualcuno alla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ha cambiato il suo nome visualizzato"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "ha ritirato l'invito di utente"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ha rimosso il bando per un utente"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "ha espulso un utente dalla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "ha bandito un utente dalla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "ha impostato l'alias principale della stanza"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ha impostato il nome della stanza"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "ha impostato l'argomento"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "ha aggiornato la versione della stanza"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "ha creato la stanza"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "ha aggiunto un oggetto"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "ha rimosso un oggetto"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ha configurato un oggetto"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "ha aggiornato lo stato"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "ha avviato un sondaggio"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Segnalazione inviata correttamente."
|
||||
@@ -1113,7 +1108,7 @@ msgstr "Allega un'immagine o un file"
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:57
|
||||
#, kde-format
|
||||
msgid "Add an Emoji"
|
||||
msgstr "Aggiungi un Emoji"
|
||||
msgstr "Aggiungi un emoji"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:77
|
||||
#, kde-format
|
||||
@@ -1268,6 +1263,7 @@ msgid "Matrix ID:"
|
||||
msgstr "ID Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Caricamento…"
|
||||
@@ -1599,7 +1595,7 @@ msgstr "In attesa che l'altra parte verifichi."
|
||||
#: src/qml/Dialog/KeyVerification/KeyVerificationDialog.qml:54
|
||||
#, kde-format
|
||||
msgid "Compare a set of emoji on both devices"
|
||||
msgstr "Confronta un set di emoji su entrambi i dispositivi"
|
||||
msgstr "Confronta un insieme di emoji su entrambi i dispositivi"
|
||||
|
||||
#: src/qml/Dialog/KeyVerification/KeyVerificationDialog.qml:62
|
||||
#, kde-format
|
||||
@@ -2596,12 +2592,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Cerca messaggi"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Inserisci un testo per iniziare la ricerca"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Nessun risultato trovato"
|
||||
@@ -2803,35 +2799,35 @@ msgid "Add new alias"
|
||||
msgstr "Aggiungi nuovo alias"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:271
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "URL Previews"
|
||||
msgstr "Caricamento dell'anteprima dell'URL"
|
||||
msgstr "Anteprime URL"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:274
|
||||
#, kde-format
|
||||
msgid "Enable URL previews by default for room members"
|
||||
msgstr ""
|
||||
"Abilita le anteprime degli URL per impostazione predefinita per i membri "
|
||||
"della stanza"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:282
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "Enable URL previews"
|
||||
msgstr "Caricamento dell'anteprima dell'URL"
|
||||
msgstr "Abilita le anteprime degli URL"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "<user> is already in this room."
|
||||
#| msgid "%1 is already in this room."
|
||||
#, kde-format
|
||||
msgid "URL previews are enabled by default in this room"
|
||||
msgstr "%1 è già in questa stanza."
|
||||
msgstr ""
|
||||
"Le anteprime degli URL sono abilitate per impostazione predefinita in questa "
|
||||
"stanza virtuale"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "<user> is already in this room."
|
||||
#| msgid "%1 is already in this room."
|
||||
#, kde-format
|
||||
msgid "URL previews are disabled by default in this room"
|
||||
msgstr "%1 è già in questa stanza."
|
||||
msgstr ""
|
||||
"Le anteprime degli URL sono disattivate per impostazione predefinita in "
|
||||
"questa stanza virtuale"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:297
|
||||
#, kde-format
|
||||
@@ -3413,7 +3409,7 @@ msgstr "nuovo_nome_emoji_qui"
|
||||
#: src/qml/Settings/Emoticons.qml:84
|
||||
#, kde-format
|
||||
msgid "Add Emoji..."
|
||||
msgstr "Aggiungi Emoji..."
|
||||
msgstr "Aggiungi emoji..."
|
||||
|
||||
#: src/qml/Settings/Emoticons.qml:116
|
||||
#, kde-format
|
||||
@@ -3460,10 +3456,9 @@ msgid "Show deleted messages"
|
||||
msgstr "Mostra i messaggi eliminati"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show avatar update events"
|
||||
#, kde-format
|
||||
msgid "Show state events"
|
||||
msgstr "Mostra gli eventi di aggiornamento degli avatar"
|
||||
msgstr "Mostra gli eventi di stato"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:112
|
||||
#, kde-format
|
||||
|
||||
121
po/ja/neochat.po
121
po/ja/neochat.po
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2020-11-05 23:50-0800\n"
|
||||
"Last-Translator: Japanese KDE translation team <kde-jp@kde.org>\n"
|
||||
"Language-Team: Japanese <kde-jp@kde.org>\n"
|
||||
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Accelerator-Marker: &\n"
|
||||
"X-Text-Markup: kde4\n"
|
||||
|
||||
@@ -530,7 +530,6 @@ msgctxt "n times"
|
||||
msgid " %1 time "
|
||||
msgid_plural " %1 times "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/collapsestateproxymodel.cpp:76
|
||||
#, kde-format
|
||||
@@ -538,7 +537,6 @@ msgctxt "n users"
|
||||
msgid " %1 user "
|
||||
msgid_plural " %1 users "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/collapsestateproxymodel.cpp:86
|
||||
#, kde-format
|
||||
@@ -659,14 +657,13 @@ msgstr ""
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -718,7 +715,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr ""
|
||||
@@ -728,7 +725,7 @@ msgstr ""
|
||||
msgid "invited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr ""
|
||||
@@ -738,7 +735,7 @@ msgstr ""
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -750,29 +747,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -783,7 +780,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr ""
|
||||
@@ -793,7 +790,7 @@ msgstr ""
|
||||
msgid "unbanned %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
@@ -803,7 +800,7 @@ msgstr ""
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr ""
|
||||
@@ -818,12 +815,12 @@ msgstr ""
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr ""
|
||||
@@ -833,12 +830,12 @@ msgstr ""
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
@@ -848,7 +845,7 @@ msgstr ""
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr ""
|
||||
@@ -858,177 +855,177 @@ msgstr ""
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr ""
|
||||
@@ -1254,6 +1251,7 @@ msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
@@ -1394,7 +1392,6 @@ msgstr ""
|
||||
msgid "Based on votes by %1 user"
|
||||
msgid_plural "Based on votes by %1 users"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/qml/Component/Timeline/PollDelegate.qml:48
|
||||
#, kde-format
|
||||
@@ -1414,7 +1411,6 @@ msgctxt "%1 is the number of other users"
|
||||
msgid " and %1 other"
|
||||
msgid_plural " and %1 others"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/qml/Component/Timeline/ReactionDelegate.qml:62
|
||||
#, kde-format
|
||||
@@ -1422,7 +1418,6 @@ msgctxt "%2 is the users who reacted and %3 the emoji that was given"
|
||||
msgid "%2 reacted with %3"
|
||||
msgid_plural "%2 reacted with %3"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/qml/Component/Timeline/ReadMarkerDelegate.qml:69
|
||||
#, kde-format
|
||||
@@ -2521,7 +2516,6 @@ msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
msgid_plural "%2 are typing"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:523
|
||||
#, kde-format
|
||||
@@ -2539,12 +2533,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
@@ -2640,7 +2634,6 @@ msgstr ""
|
||||
msgid "%1 Member"
|
||||
msgid_plural "%1 Members"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:251
|
||||
#, kde-format
|
||||
|
||||
111
po/ka/neochat.po
111
po/ka/neochat.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-03-14 04:48+0100\n"
|
||||
"Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>\n"
|
||||
"Language-Team: Georgian <kde-i18n-doc@kde.org>\n"
|
||||
@@ -664,14 +664,14 @@ msgstr "[ჩასწორებული]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ჩასწორებულია: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 მომხმარებელი: "
|
||||
msgstr[1] "%1 მომხმარებელი: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -723,7 +723,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "შეუერთდა ოთახს (გამეორებით)"
|
||||
@@ -733,7 +733,7 @@ msgstr "შეუერთდა ოთახს (გამეორებით
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 მოწვეულია ოთახში"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "შეუერთდა ოთახს"
|
||||
@@ -743,7 +743,7 @@ msgstr "შეუერთდა ოთახს"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -755,29 +755,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "შეცვალა საჩვენებელი სახელი %1-ზე"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " და "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "გაასუფთავა თავისი ავატარი"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ავატარის დაყენება"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "განაახლა თავისი ავატარი"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -788,7 +788,7 @@ msgstr "არაფერი შეცვლილა"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "%1'-ის მოსაწვევი გაუქმდა"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "უარი მოსაწვევზე"
|
||||
@@ -798,7 +798,7 @@ msgstr "უარი მოსაწვევზე"
|
||||
msgid "unbanned %1"
|
||||
msgstr "ბანი მოხსნილია %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "თვით-განბლოკილი"
|
||||
@@ -808,7 +808,7 @@ msgstr "თვით-განბლოკილი"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "გადადო %1 ოთახის გარეთ გადადო: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "გავდა ოთახიდან"
|
||||
@@ -823,12 +823,12 @@ msgstr "%1 დაიბანა ამ ოთახიდან"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "დაბანა %1 ოთახიდან: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "ოთახიდან თავი დაიბანეთ"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "მოითხოვა მოწვევა"
|
||||
@@ -838,12 +838,12 @@ msgstr "მოითხოვა მოწვევა"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "მოწვევა მოთხოვნილია მიზეზით: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "რაღაც უცნობი ქნა"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "ოთახის მთავარი მეტსახელი გასუფთავებულია"
|
||||
@@ -853,7 +853,7 @@ msgstr "ოთახის მთავარი მეტსახელი გ
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "დააყენა ოთახის მთავარი მეტსახელი: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "გაასუფთავა ოთახის სახელი"
|
||||
@@ -863,177 +863,177 @@ msgstr "გაასუფთავა ოთახის სახელი"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ოთახის მეტსახელი დაყენებულია: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "გაასუფთავა სათაური"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "თემა დააყენა: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "შეცვალა ოთახის ავატარი"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "გაააქტიურა გამჭოლი დაშიფვრა"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "ოთახის ვერსია განაახლა %1-მდე"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "შექნა ოთახი, ვერსია %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "ამ ოთახზე წვდომის უფლებები შეიცვლა"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "ამ ოთახისთვის სერვერის წვდომის კონტროლის სიები შეიცვალა"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "დაამატა ვიჯეტი %1"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "წაშალა ვიჯეტი %1"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "მოირგო ვიჯეტი %1"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "განაახლა %1-ის მდგომარეობა"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "განაახლა %1-ის მდგომარეობა %2-სთვის"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "უცნობი მოვლენა"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "გააგზავნა შეტყობინება"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "სტიკერი გაგზავნილია"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "ვიღაც ოთახში თავიდან მოიწვია"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "მოიწვია ოთახში"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "შეცვალა საჩვენებელი სახელი"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "გააუქმა მომხმარებლის მოსაწვევი"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "მომხმარებელს ბანი მოხსნა"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "მომხმარებელი ოთახიდან გასვა"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "დაბანა მომხმარებელი ოთახიდან"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "დააყენა ოთახის მთავარი მეტსახელი"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ოთახის მეტსახელი დაყენებულია"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "თემა დააყენა"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "ოთახის ვერსია განაახლა"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "შექმნა ოთახი"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "დაამატა ვიჯეტი"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "წაშალა ვიჯეტი"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "მოირგო ვიჯეტი"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "განაახლა მდგომარეობა"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "დაიწყო გამოკითხვა"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "ანგარიში წარმატებით გაიგზავნა."
|
||||
@@ -1261,6 +1261,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "ჩატვირთვა…"
|
||||
@@ -2564,12 +2565,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "შეტყობინებების ძებნა"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "ძებნის დასაწყებად შეიყვანეთ ტექსტი"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "შედეგების გარეშე"
|
||||
|
||||
111
po/ko/neochat.po
111
po/ko/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2022-08-09 13:27+0200\n"
|
||||
"Last-Translator: Shinjo Park <kde@peremen.name>\n"
|
||||
"Language-Team: Korean <kde-kr@kde.org>\n"
|
||||
@@ -732,13 +732,13 @@ msgstr "[검열됨]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[검열됨: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -793,7 +793,7 @@ msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
# 여기서부터 등장하는 소문자로 시작하는 메시지는 대화명 바로 뒤에 나오므로 메시지 앞에 대화명이 있다고 가정하고 번역해야 함.
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "님이 대화방에 입장함(반복됨)"
|
||||
@@ -803,7 +803,7 @@ msgstr "님이 대화방에 입장함(반복됨)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "님이 %1 님을 대화방에 초대함"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "님이 대화방에 입장함"
|
||||
@@ -813,7 +813,7 @@ msgstr "님이 대화방에 입장함"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -825,29 +825,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "님이 표시 이름을 %1(으)로 변경함|/|표시 이름을 %1$[으 %1]로 변경함"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " 및 "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "님이 아바타를 지움"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "님이 아바타를 설정함"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "님이 아바타를 업데이트함"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -858,7 +858,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "님이 %1 님의 초대를 거절함"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "님이 초대를 거절함"
|
||||
@@ -868,7 +868,7 @@ msgstr "님이 초대를 거절함"
|
||||
msgid "unbanned %1"
|
||||
msgstr "님이 %1 님의 차단을 해제함"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "님이 자기 자신의 차단을 해제함"
|
||||
@@ -878,7 +878,7 @@ msgstr "님이 자기 자신의 차단을 해제함"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "님이 %1 님을 대화방에서 추방함: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "님이 대화방을 떠남"
|
||||
@@ -894,12 +894,12 @@ msgstr "님이 %1 님을 대화방에서 차단함: %2"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "님이 %1 님을 대화방에서 차단함: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "님이 대화방에서 자기 자신을 차단함"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "님이 초대를 요청함"
|
||||
@@ -910,12 +910,12 @@ msgstr "님이 초대를 요청함"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "님이 초대를 요청함"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "님이 알 수 없는 무언가를 함"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "님이 대화방 주 별명을 지움"
|
||||
@@ -925,7 +925,7 @@ msgstr "님이 대화방 주 별명을 지움"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "님이 대화방 주 별명을 다음으로 설정함: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "님이 대화방 이름을 지움"
|
||||
@@ -935,105 +935,105 @@ msgstr "님이 대화방 이름을 지움"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "님이 대화방 이름을 다음으로 설정함: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "님이 대화방 주제를 삭제함"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "님이 대화방 주제를 설정함: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "님이 대화방 아바타를 변경함"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "님이 종단간 암호화를 활성화함"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "님이 대화방을 버전 %1(으)로 업그레이드함"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "님이 대화방을 만듦, 버전 %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "님이 이 대화방의 권한 수준을 변경함"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "님이 이 대화방의 서버 측 접근 권한 목록을 변경함"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "님이 %1 위젯을 추가함"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "님이 %1 위젯을 삭제함"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "님이 %1 위젯을 설정함"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "님이 %1 상태를 업데이트함"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
"님이 %1 상태를 %2(으)로 업데이트함|/|님이 %1 상태를 %2$[으 %2]로 업데이트함"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "알 수 없는 이벤트"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send a message…"
|
||||
msgid "sent a message"
|
||||
msgstr "메시지 보내기…"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "%1 님을 대화방에 다시 초대함"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "님이 %1 님을 대화방에 초대함"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
@@ -1041,93 +1041,93 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "님이 표시 이름을 %1(으)로 변경함|/|표시 이름을 %1$[으 %1]로 변경함"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "님이 %1 님의 초대를 거절함"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "님이 %1 님의 차단을 해제함"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "님이 %1 님을 대화방에서 추방함: %2"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "님이 %1 님을 대화방에서 차단함: %2"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
msgid "set the room main alias"
|
||||
msgstr "님이 대화방 주 별명을 다음으로 설정함: %1"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
msgid "set the room name"
|
||||
msgstr "님이 대화방 이름을 다음으로 설정함: %1"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "님이 대화방 주제를 설정함: %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "님이 대화방을 버전 %1(으)로 업그레이드함"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "님이 대화방을 떠남"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] added <name> widget"
|
||||
#| msgid "added %1 widget"
|
||||
msgid "added a widget"
|
||||
msgstr "님이 %1 위젯을 추가함"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] removed <name> widget"
|
||||
#| msgid "removed %1 widget"
|
||||
msgid "removed a widget"
|
||||
msgstr "님이 %1 위젯을 삭제함"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] configured <name> widget"
|
||||
#| msgid "configured %1 widget"
|
||||
msgid "configured a widget"
|
||||
msgstr "님이 %1 위젯을 설정함"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "님이 %1 상태를 업데이트함"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Password changed successfully"
|
||||
msgid "Report sent successfully."
|
||||
@@ -1366,6 +1366,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "불러오는 중…"
|
||||
@@ -2696,12 +2697,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "개인 메시지"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No rooms found"
|
||||
msgid "No results found"
|
||||
|
||||
111
po/lt/neochat.po
111
po/lt/neochat.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-02-25 01:00+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -665,7 +665,7 @@ msgstr ""
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -674,7 +674,7 @@ msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -726,7 +726,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr ""
|
||||
@@ -736,7 +736,7 @@ msgstr ""
|
||||
msgid "invited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr ""
|
||||
@@ -746,7 +746,7 @@ msgstr ""
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -758,29 +758,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -791,7 +791,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr ""
|
||||
@@ -801,7 +801,7 @@ msgstr ""
|
||||
msgid "unbanned %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
@@ -811,7 +811,7 @@ msgstr ""
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr ""
|
||||
@@ -826,12 +826,12 @@ msgstr ""
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr ""
|
||||
@@ -841,12 +841,12 @@ msgstr ""
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
@@ -856,7 +856,7 @@ msgstr ""
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr ""
|
||||
@@ -866,177 +866,177 @@ msgstr ""
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr ""
|
||||
@@ -1262,6 +1262,7 @@ msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
@@ -2551,12 +2552,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
111
po/nl/neochat.po
111
po/nl/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-03-14 13:20+0100\n"
|
||||
"Last-Translator: Freek de Kruijf <freekdekruijf@kde.nl>\n"
|
||||
"Language-Team: Dutch <kde-i18n-nl@kde.org>\n"
|
||||
@@ -663,14 +663,14 @@ msgstr "[GEREDIGEERD]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[GEREDIGEERD: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 gebruiker: "
|
||||
msgstr[1] "%1 gebruikers: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -722,7 +722,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "doet mee met de room (herhaald)"
|
||||
@@ -732,7 +732,7 @@ msgstr "doet mee met de room (herhaald)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 uitgenodigd naar de room"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "doet mee met de room"
|
||||
@@ -742,7 +742,7 @@ msgstr "doet mee met de room"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -754,29 +754,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "heeft zijn/haar schermnaam gewijzigd naar %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " en "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "heeft zijn/haar avatar gewist"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "hebben een avatar ingesteld"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "heeft zijn/haar avatar bijgewerkt"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -787,7 +787,7 @@ msgstr "niet gewijzigd"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "uitnodiging van %1 ingetrokken"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "de uitnodiging afgewezen"
|
||||
@@ -797,7 +797,7 @@ msgstr "de uitnodiging afgewezen"
|
||||
msgid "unbanned %1"
|
||||
msgstr "verbanning van %1 ongedaan gemaakt"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "zelf verbanning ongedaan gemaakt"
|
||||
@@ -807,7 +807,7 @@ msgstr "zelf verbanning ongedaan gemaakt"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "heeft %1 uit de room gezet: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "heeft de room verlaten"
|
||||
@@ -822,12 +822,12 @@ msgstr "%1 verbannen uit de room"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "%1 verbannen uit de room: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "zelf verbannen uit de room"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "om een uitnodiging verzocht"
|
||||
@@ -837,12 +837,12 @@ msgstr "om een uitnodiging verzocht"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "heeft om een uitnodiging verzocht met reden: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "iets onbekend gemaakt"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "hoofdalias van de room gewist"
|
||||
@@ -852,7 +852,7 @@ msgstr "hoofdalias van de room gewist"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "hoofdalias van de room ingesteld op: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "naam van de room gewist"
|
||||
@@ -862,177 +862,177 @@ msgstr "naam van de room gewist"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "naam van de room ingesteld op: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "het onderwerp gewist"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "het onderwerp instellen op: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "room-avatar tonen is gewijzigd"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "Eind-tot-eind versleuteling geactiveerd"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "de room bijgewerkt tot versie %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "de room aangemaakt, versie %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "de energieniveaus voor deze room zijn gewijzigd"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "de toegangscontrolelijst voor deze room is gewijzigd"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "%1 widget toegevoegd"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "%1 widget verwijderd"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "%1 widget geconfigureerd"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "%1 status bijgewerkt"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "%1 status bijgewerkt voor %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Onbekende gebeurtenis"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "verzend een bericht"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "verzend een sticker"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "heeft iemand opnieuw uitgenodigd in de room"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "heeft iemand uitgenodigd in de room"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "heeft hun schermnaam gewijzigd"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "heeft uitnodiging van een gebruiker ingetrokken"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "heeft verbanning van een gebruiker ongedaan gemaakt"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "heeft een gebruiker uit de room gezet"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "heeft een gebruiker verbannen uit de room"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "hoofdalias van de room ingesteld"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "naam van de room ingesteld"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "het onderwerp ingesteld"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "heeft de versie van de room opgewaardeerd"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "heeft de room aangemaakt"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "heeft een widget toegevoegd"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "heeft een widget verwijderd"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "heeft een widget geconfigureerd"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "heeft de status bijgewerkt"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "heeft een raadpleging (poll) gestart"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Rapport met succes verzonden."
|
||||
@@ -1260,6 +1260,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix-ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Laden…"
|
||||
@@ -2586,12 +2587,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Berichten doorzoeken"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Een tekst invoeren om te beginnen met zoeken"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Geen resultaten gevonden"
|
||||
|
||||
1189
po/nn/neochat.po
1189
po/nn/neochat.po
File diff suppressed because it is too large
Load Diff
111
po/pa/neochat.po
111
po/pa/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2021-12-31 11:06-0800\n"
|
||||
"Last-Translator: A S Alam <aalam@satluj.org>\n"
|
||||
"Language-Team: Punjabi <punjabi-users@lists.sf.net>\n"
|
||||
@@ -731,14 +731,14 @@ msgstr ""
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -790,7 +790,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "ਰੂਮ ਜੁਆਇੰਨ ਕੀਤਾ (ਦੁਹਰਾਇਆ)"
|
||||
@@ -800,7 +800,7 @@ msgstr "ਰੂਮ ਜੁਆਇੰਨ ਕੀਤਾ (ਦੁਹਰਾਇਆ)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 ਨੂੰ ਰੂਮ ਲਈ ਸੱਦਾ ਦਿੱਤਾ"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "ਰੂਮ 'ਚ ਦਾਖਲ ਹੋਏ"
|
||||
@@ -810,7 +810,7 @@ msgstr "ਰੂਮ 'ਚ ਦਾਖਲ ਹੋਏ"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -822,29 +822,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " ਅਤੇ "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "ਉਹਨਾਂ ਦੇ ਅਵਤਾਰ ਮਿਟਾਏ"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ਅਵਤਾਰ ਨਿਯਤ ਕਰੋ"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "ਆਪਣੇ ਅਵਤਾਰ ਅੱਪਡੇਟ ਕੀਤੇ"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -855,7 +855,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "%1 ਲਈ ਸੱਦਾ ਵਾਪਸ ਲਵੋ"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "ਸੱਦੇ ਲਈ ਨਾਂਹ ਕੀਤੀ"
|
||||
@@ -865,7 +865,7 @@ msgstr "ਸੱਦੇ ਲਈ ਨਾਂਹ ਕੀਤੀ"
|
||||
msgid "unbanned %1"
|
||||
msgstr "%1 ਪਾਬੰਦੀ ਹਟਾਈ"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
@@ -875,7 +875,7 @@ msgstr ""
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "ਰੂਮ ਛੱਡਿਆ"
|
||||
@@ -891,12 +891,12 @@ msgstr "%1 ਨੂੰ ਰੂਮ ਤੋਂ ਪਾਬੰਦੀ ਲਾਈ: %2"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "%1 ਨੂੰ ਰੂਮ ਤੋਂ ਪਾਬੰਦੀ ਲਾਈ: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "ਸੱਦੇ ਲਈ ਬੇਨਤੀ ਕਰੋ"
|
||||
@@ -907,12 +907,12 @@ msgstr "ਸੱਦੇ ਲਈ ਬੇਨਤੀ ਕਰੋ"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "ਸੱਦੇ ਲਈ ਬੇਨਤੀ ਕਰੋ"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
@@ -922,7 +922,7 @@ msgstr ""
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "ਰੂਮ ਦਾ ਨਾਂ ਮਿਟਾਇਆ"
|
||||
@@ -932,104 +932,104 @@ msgstr "ਰੂਮ ਦਾ ਨਾਂ ਮਿਟਾਇਆ"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "ਵਿਸ਼ੇ ਨੂੰ ਮਿਟਾਇਆ"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ਵਿਸ਼ਾ ਨਿਯਤ ਕੀਤਾ: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "ਰੂਮ ਅਵਤਾਰ ਬਦਲਿਆ"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "ਸਿਰੇ ਤੋਂ ਸਿਰੇ ਤੱਕ ਇੰਕ੍ਰਿਪਸ਼ਨ ਸਰਗਰਮ ਕੀਤੀ"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "ਰੂਮ ਨੂੰ %1 ਵਰਜ਼ਨ ਲਈ ਅੱਪਗਰੇਡ ਕੀਤਾ"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "ਰੂਮ ਬਣਾਇਆ, ਵਰਜ਼ਨ %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "%1 ਹਾਲਤ ਅੱਪਡੇਟ ਕੀਤੀ"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "%2 ਲਈ %1 ਹਾਲਤ ਅੱਪਡੇਟ ਕੀਤੀ"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "ਅਣਪਛਾਤਾ ਈਵੈਂਟ"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send message"
|
||||
msgid "sent a message"
|
||||
msgstr "ਸੁਨੇਹਾ ਭੇਜੋ"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "%1 ਨੂੰ ਰੂਮ ਲਈ ਸੱਦਾ ਦਿੱਤਾ"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "%1 ਨੂੰ ਰੂਮ ਲਈ ਸੱਦਾ ਦਿੱਤਾ"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "cleared their display name"
|
||||
@@ -1037,88 +1037,88 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ਆਪਣੇ ਵੇਖਾਉਣ ਵਾਲੇ ਨਾਂ ਮਿਟਾਏ"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "%1 ਲਈ ਸੱਦਾ ਵਾਪਸ ਲਵੋ"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "%1 ਪਾਬੰਦੀ ਹਟਾਈ"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 invited you to a room"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "%1 ਨੇ ਤੁਹਾਨੂੰ ਰੂਮ ਲਈ ਸੱਦਾ ਦਿੱਤਾ"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "%1 ਨੂੰ ਰੂਮ ਤੋਂ ਪਾਬੰਦੀ ਲਾਈ: %2"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "changed the room avatar"
|
||||
msgid "set the room main alias"
|
||||
msgstr "ਰੂਮ ਅਵਤਾਰ ਬਦਲਿਆ"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "cleared the room name"
|
||||
msgid "set the room name"
|
||||
msgstr "ਰੂਮ ਦਾ ਨਾਂ ਮਿਟਾਇਆ"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "ਵਿਸ਼ਾ ਨਿਯਤ ਕੀਤਾ: %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "ਰੂਮ ਨੂੰ %1 ਵਰਜ਼ਨ ਲਈ ਅੱਪਗਰੇਡ ਕੀਤਾ"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "ਰੂਮ ਛੱਡਿਆ"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgid "removed a widget"
|
||||
msgstr "ਸੁਨੇਹੇ ਨੂੰ ਸੋਧੋ"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "%1 ਹਾਲਤ ਅੱਪਡੇਟ ਕੀਤੀ"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Password changed successfully"
|
||||
msgid "Report sent successfully."
|
||||
@@ -1359,6 +1359,7 @@ msgid "Matrix ID:"
|
||||
msgstr "ਮੈਟਰਿਕਸ ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading"
|
||||
msgid "Loading…"
|
||||
@@ -2690,12 +2691,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "ਸਿੱਧਾ ਸੁਨੇਹਾ ਭੇਜੋ"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No rooms found"
|
||||
msgid "No results found"
|
||||
|
||||
157
po/pl/neochat.po
157
po/pl/neochat.po
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-03-12 09:18+0100\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-03-25 09:38+0100\n"
|
||||
"Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>\n"
|
||||
"Language-Team: Polish <kde-i18n-doc@kde.org>\n"
|
||||
"Language: pl\n"
|
||||
@@ -666,21 +666,16 @@ msgstr "[ZREDAGOWANO]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ZREDAGOWANO: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "n users"
|
||||
#| msgid " %1 user "
|
||||
#| msgid_plural " %1 users "
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] " %1 użytkownik "
|
||||
msgstr[1] " %1 użytkowników "
|
||||
msgstr[2] " %1 użytkowników "
|
||||
msgstr[0] "1 użytkownik: "
|
||||
msgstr[1] "%1 użytkowników: "
|
||||
msgstr[2] "%1 użytkowników: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and/or action 3]"
|
||||
#| msgid ", "
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
@@ -731,7 +726,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "dołączył(a) do pokoju (powtórzono)"
|
||||
@@ -741,7 +736,7 @@ msgstr "dołączył(a) do pokoju (powtórzono)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "zaprosił(a) %1 do pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "dołączył(a) do pokoju"
|
||||
@@ -751,7 +746,7 @@ msgstr "dołączył(a) do pokoju"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -763,29 +758,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "zmienił(a) swoją wyświetlaną nazwę na %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " i "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "wyczyścił(a) swój awatar"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ustawił(a) awatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "zmienił(a) swój awatar"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -796,7 +791,7 @@ msgstr "nie zmienił niczego"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "wycofał(a) zaproszenie %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "odrzucił(a) zaproszenie"
|
||||
@@ -806,7 +801,7 @@ msgstr "odrzucił(a) zaproszenie"
|
||||
msgid "unbanned %1"
|
||||
msgstr "odbanował(a) %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "samo-odbanowany"
|
||||
@@ -816,7 +811,7 @@ msgstr "samo-odbanowany"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "umieścił %1 poza pokojem: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "opuścił(a) pokój"
|
||||
@@ -831,12 +826,12 @@ msgstr "zbanował %1 w tym pokoju"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "zbanował(a) %1 z pokoju: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "samozbanowany(a) z pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "zażądaj zaproszenia"
|
||||
@@ -846,12 +841,12 @@ msgstr "zażądaj zaproszenia"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "zażądano zaproszenia z powodem: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "zrobił(a) coś nieznanego"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "wyczyścił(a) główny alias pokoju"
|
||||
@@ -861,7 +856,7 @@ msgstr "wyczyścił(a) główny alias pokoju"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ustawił(a) główny alias pokoju na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "wyczyścił(a) nazwę pokoju"
|
||||
@@ -871,177 +866,177 @@ msgstr "wyczyścił(a) nazwę pokoju"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ustawił(a) nazwę pokoju na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "wyczyścił(a) temat"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ustawił(a) temat na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "zmienił(a) awatar pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "aktywował(a) szyfrowanie End-to-End"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "zaktualizował(a) pokój do wersji %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "utworzył(a) pokój, wersja %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "zmieniono poziomy mocy dla tego pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "zmieniono serwerową listę sterującą dostępem dla tego pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "dodał %1 element interfejsu"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "usunął %1 element interfejsu"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "ustawił %1 element interfejsu"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "zaktualizował(a) stan %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "zaktualizował(a) stan %1 dla %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Nieznane wydarzenie"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "wysłał(a) wiadomość"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "wysłał(a) naklejkę"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "zaprosił(a) ponownie kogoś do pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "zaprosił(a) kogoś do pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "zmienił(a) swoją nazwę wyświetlaną"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "wycofał(a) zaproszenie użytkownika"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "odbanował(a) użytkownika"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "umieścił(a) użytkownika poza pokojem"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "zbanował(a) użytkownika w tym pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "ustawił(a) główny alias pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ustawił(a) nazwę pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "ustawił(a) temat"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "uaktualnił(a) wersję pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "utworzył(a) pokój"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "dodał(a) element interfejsu"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "usunął(ęła) element interfejsu"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ustawił(a) element interfejsu"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "uaktualnił(a) stan"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "rozpoczął(ęła) głosowanie"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Pomyślnie wysłano zgłoszenie."
|
||||
@@ -1269,6 +1264,7 @@ msgid "Matrix ID:"
|
||||
msgstr "ID Matriksa:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Wczytywanie…"
|
||||
@@ -2588,12 +2584,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Poszukaj wiadomości"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Wpisz tekst, aby rozpocząć wyszukiwanie"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Nie znaleziono wyników"
|
||||
@@ -2796,35 +2792,29 @@ msgid "Add new alias"
|
||||
msgstr "Dodaj nowy alias"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:271
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "URL Previews"
|
||||
msgstr "Wczytywanie podglądu adresu URL"
|
||||
msgstr "Podglądy adresów URL"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:274
|
||||
#, kde-format
|
||||
msgid "Enable URL previews by default for room members"
|
||||
msgstr ""
|
||||
msgstr "Domyślnie włącz podglądy URL dla członków pokoju"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:282
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "Enable URL previews"
|
||||
msgstr "Wczytywanie podglądu adresu URL"
|
||||
msgstr "Włącz podglądy adresów URL"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "<user> is already in this room."
|
||||
#| msgid "%1 is already in this room."
|
||||
#, kde-format
|
||||
msgid "URL previews are enabled by default in this room"
|
||||
msgstr "%1 przebywa już w tym pokoju."
|
||||
msgstr "Podglądy URL są domyślnie włączone w tym pokoju"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "<user> is already in this room."
|
||||
#| msgid "%1 is already in this room."
|
||||
#, kde-format
|
||||
msgid "URL previews are disabled by default in this room"
|
||||
msgstr "%1 przebywa już w tym pokoju."
|
||||
msgstr "Podglądy URL są domyślnie wyłączone w tym pokoju"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:297
|
||||
#, kde-format
|
||||
@@ -3445,10 +3435,9 @@ msgid "Show deleted messages"
|
||||
msgstr "Pokaż usunięte wiadomości"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show avatar update events"
|
||||
#, kde-format
|
||||
msgid "Show state events"
|
||||
msgstr "Pokaż uaktualnienia awatarów"
|
||||
msgstr "Pokaż stany zdarzeń"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:112
|
||||
#, kde-format
|
||||
|
||||
111
po/pt/neochat.po
111
po/pt/neochat.po
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-03-06 15:32+0000\n"
|
||||
"Last-Translator: José Nuno Coelho Pires <zepires@gmail.com>\n"
|
||||
"Language-Team: Portuguese <kde-i18n-pt@kde.org>\n"
|
||||
@@ -670,7 +670,7 @@ msgstr "[REDIGIDO]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REDIGIDO: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "n users"
|
||||
#| msgid " %1 user "
|
||||
@@ -680,7 +680,7 @@ msgid_plural "%1 users: "
|
||||
msgstr[0] " %1 utilizador "
|
||||
msgstr[1] " %1 utilizadores "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and/or action 3]"
|
||||
#| msgid ", "
|
||||
@@ -734,7 +734,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "juntou-se à sala (repetido)"
|
||||
@@ -744,7 +744,7 @@ msgstr "juntou-se à sala (repetido)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "convidou o %1 para a sala"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "juntou-se à sala"
|
||||
@@ -754,7 +754,7 @@ msgstr "juntou-se à sala"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -766,29 +766,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "mudou o seu nome visível para %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " e"
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "limpou o seu avatar"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "definiu um avatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "actualizou o seu avatar"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -799,7 +799,7 @@ msgstr "não mudou nada"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "retirou o convite de %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "rejeitou o convite"
|
||||
@@ -809,7 +809,7 @@ msgstr "rejeitou o convite"
|
||||
msgid "unbanned %1"
|
||||
msgstr "readmitiu o %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "readmitiu-se a si próprio"
|
||||
@@ -819,7 +819,7 @@ msgstr "readmitiu-se a si próprio"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "expulsou o %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "saiu da sala"
|
||||
@@ -834,12 +834,12 @@ msgstr "expulsou o %1 da sala"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "expulsou o %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "expulsou-se a si próprio da sala"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "solicitou um convite"
|
||||
@@ -849,12 +849,12 @@ msgstr "solicitou um convite"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "solicitou um convite pela razão: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "tornou alguém desconhecido"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "limpou o nome principal da sala"
|
||||
@@ -864,7 +864,7 @@ msgstr "limpou o nome principal da sala"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "mudou o nome principal da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "limpou o nome da sala"
|
||||
@@ -874,177 +874,177 @@ msgstr "limpou o nome da sala"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "mudou o nome da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "limpou o tópico"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "mudou o tópico para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "mudou o avatar da sala"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "activou a Codificação Ponto-a-Ponto"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "actualizou a sala para a versão %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "criou a sala na versão %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "mudou os níveis de permissões desta sala"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "mudou as listas de controlo de acesso do servidor para esta sala"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "adicionou o elemento %1"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "removeu o elemento %1"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "configurou o elemento %1"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "actualizou o estado de %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "actualizou o estado de %1 para %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Evento desconhecido"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "enviou uma mensagem"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "enviou um autocolante"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "voltou a convidar alguém para a sala"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "convidou alguém para a sala"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "mudou o seu nome visível"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "retirou o convite de um utilizador"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "readmitiu um utilizador"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "expulsou um utilizador da sala"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "expulsou um utilizador da sala"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "mudou o nome principal da sala"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "mudou o nome da sala"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "mudou o tópico"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "actualizou a versão da sala"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "criou a sala"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "adicionou um elemento"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "removeu um elemento"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "configurou um elemento"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "actualizou o estado"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "iniciou uma sondagem"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "O relatório foi enviado com sucesso."
|
||||
@@ -1272,6 +1272,7 @@ msgid "Matrix ID:"
|
||||
msgstr "ID do Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "A carregar…"
|
||||
@@ -2594,12 +2595,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Procurar as Mensagens"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Introduza texto para iniciar a pesquisa"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Não foram encontrados resultados"
|
||||
|
||||
@@ -1,28 +1,27 @@
|
||||
# Copyright (C) YEAR This file is copyright:
|
||||
# This file is distributed under the same license as the neochat package.
|
||||
#
|
||||
# Luiz Fernando Ranghetti <elchevive@opensuse.org>, 2021, 2022.
|
||||
# Luiz Fernando Ranghetti <elchevive@opensuse.org>, 2021, 2022, 2023.
|
||||
# Thiago Masato Costa Sueto <herzenschein@gmail.com>, 2021.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2022-08-19 15:06-0300\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-06-07 13:33-0300\n"
|
||||
"Last-Translator: Luiz Fernando Ranghetti <elchevive@opensuse.org>\n"
|
||||
"Language-Team: Portuguese <kde-i18n-pt_BR@kde.org>\n"
|
||||
"Language-Team: Brazilian Portuguese <kde-i18n-pt_BR@kde.org>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Lokalize 21.12.3\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
|
||||
#: src/controller.cpp:198
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
#, kde-format
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Editar mensagem"
|
||||
msgstr "Mensagem criptografada"
|
||||
|
||||
#: src/controller.cpp:258 src/controller.cpp:391
|
||||
#, kde-format
|
||||
@@ -95,34 +94,28 @@ msgid "The room id you are trying to join is not valid"
|
||||
msgstr "O id da sala em que você está tentando entrar não é válido"
|
||||
|
||||
#: src/filetransferpseudojob.cpp:47
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt ""
|
||||
#| "tooltip for a button on a message; offers ability to download its file"
|
||||
#| msgid "Download"
|
||||
#, kde-format
|
||||
msgctxt "Job heading, like 'Copying'"
|
||||
msgid "Downloading"
|
||||
msgstr "Baixar"
|
||||
msgstr "Baixando"
|
||||
|
||||
#: src/filetransferpseudojob.cpp:47
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading…"
|
||||
#, kde-format
|
||||
msgctxt "Job heading, like 'Copying'"
|
||||
msgid "Uploading"
|
||||
msgstr "Carregando..."
|
||||
msgstr "Enviando"
|
||||
|
||||
#: src/filetransferpseudojob.cpp:48
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "View Source"
|
||||
#, kde-format
|
||||
msgctxt "The URL being downloaded/uploaded"
|
||||
msgid "Source"
|
||||
msgstr "Exibir origem"
|
||||
msgstr "Origem"
|
||||
|
||||
#: src/filetransferpseudojob.cpp:49
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send invitation"
|
||||
#, kde-format
|
||||
msgctxt "The location being downloaded to"
|
||||
msgid "Destination"
|
||||
msgstr "Enviar convite"
|
||||
msgstr "Destino"
|
||||
|
||||
#: src/login.cpp:86 src/login.cpp:97
|
||||
#, kde-format
|
||||
@@ -152,7 +145,7 @@ msgstr "Carl Schwan"
|
||||
#: src/main.cpp:159 src/main.cpp:160 src/main.cpp:161
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr ""
|
||||
msgstr "Mantenedor"
|
||||
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
@@ -162,7 +155,7 @@ msgstr "Tobias Fella"
|
||||
#: src/main.cpp:161
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr ""
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
@@ -172,17 +165,17 @@ msgstr "Black Hat"
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr ""
|
||||
msgstr "Autor original do Spectral"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr ""
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr ""
|
||||
msgstr "Mantenedor do Quotient"
|
||||
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
@@ -206,7 +199,7 @@ msgstr ""
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
msgstr "%1 (compilado com %2)"
|
||||
|
||||
#: src/main.cpp:307
|
||||
#, kde-format
|
||||
@@ -234,11 +227,8 @@ msgstr "A solicitação de imagem foi cancelada"
|
||||
#: src/models/actionsmodel.cpp:80 src/models/actionsmodel.cpp:100
|
||||
#: src/models/actionsmodel.cpp:111 src/models/actionsmodel.cpp:127
|
||||
#: src/models/actionsmodel.cpp:137 src/models/actionsmodel.cpp:147
|
||||
#, fuzzy
|
||||
#| msgctxt "@label Parameter of a command"
|
||||
#| msgid "<message>"
|
||||
msgid "<message>"
|
||||
msgstr "<message>"
|
||||
msgstr "<mensagem>"
|
||||
|
||||
#: src/models/actionsmodel.cpp:31
|
||||
msgid "Prepends ¯\\_(ツ)_/¯ to a plain-text message"
|
||||
@@ -257,14 +247,10 @@ msgid "Prepends ┬──┬ ノ( ゜-゜ノ) to a plain-text message"
|
||||
msgstr "Prefixa ┬──┬ ノ( ゜-゜ノ) em uma mensagem de texto simples"
|
||||
|
||||
#: src/models/actionsmodel.cpp:81
|
||||
#, fuzzy
|
||||
#| msgid "Sends the given message coloured as a rainbow"
|
||||
msgid "Sends the given message colored as a rainbow"
|
||||
msgstr "Envia a mensagem colorida como arco-íris"
|
||||
|
||||
#: src/models/actionsmodel.cpp:101
|
||||
#, fuzzy
|
||||
#| msgid "Sends the given emote coloured as a rainbow"
|
||||
msgid "Sends the given emote colored as a rainbow"
|
||||
msgstr "Envia o emote colorido como arco-íris"
|
||||
|
||||
@@ -299,52 +285,42 @@ msgid "'%1' does not look like a matrix id."
|
||||
msgstr ""
|
||||
|
||||
#: src/models/actionsmodel.cpp:163
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
#, kde-format
|
||||
msgctxt "<user> is already invited to this room."
|
||||
msgid "%1 is already invited to this room."
|
||||
msgstr "%1 foi convidado para a sala novamente"
|
||||
msgstr "%1 já foi convidado para esta sala."
|
||||
|
||||
#: src/models/actionsmodel.cpp:167
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "self-banned from the room"
|
||||
#, kde-format
|
||||
msgctxt "<user> is banned from this room."
|
||||
msgid "%1 is banned from this room."
|
||||
msgstr "baniu a si mesmo da sala"
|
||||
msgstr "%1 está banido desta sala."
|
||||
|
||||
#: src/models/actionsmodel.cpp:172
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
#, kde-format
|
||||
msgid "You are already in this room."
|
||||
msgstr "Abrir o NeoChat nesta sala"
|
||||
msgstr "Você já está nesta sala."
|
||||
|
||||
#: src/models/actionsmodel.cpp:176
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
#, kde-format
|
||||
msgctxt "<user> is already in this room."
|
||||
msgid "%1 is already in this room."
|
||||
msgstr "Abrir o NeoChat nesta sala"
|
||||
msgstr "%1 já está nesta sala."
|
||||
|
||||
#: src/models/actionsmodel.cpp:180
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 invited you to a room"
|
||||
#, kde-format
|
||||
msgctxt "<username> was invited into this room"
|
||||
msgid "%1 was invited into this room"
|
||||
msgstr "%1 convidou você para uma sala"
|
||||
msgstr "%1 foi convidado para uma sala"
|
||||
|
||||
#: src/models/actionsmodel.cpp:185 src/models/actionsmodel.cpp:388
|
||||
#: src/models/actionsmodel.cpp:416 src/models/actionsmodel.cpp:507
|
||||
#, fuzzy
|
||||
#| msgctxt "@label Parameter of a command"
|
||||
#| msgid "<user-id>"
|
||||
msgid "<user id>"
|
||||
msgstr "<user-id>"
|
||||
msgstr "<ID do usuário>"
|
||||
|
||||
#: src/models/actionsmodel.cpp:186
|
||||
#, fuzzy
|
||||
#| msgid "%1 invited you to a room"
|
||||
msgid "Invites the user to this room"
|
||||
msgstr "%1 convidou você para uma sala"
|
||||
msgstr "Convidar o usuário para uma sala"
|
||||
|
||||
#: src/models/actionsmodel.cpp:195 src/models/actionsmodel.cpp:222
|
||||
#: src/models/actionsmodel.cpp:253 src/models/actionsmodel.cpp:280
|
||||
@@ -749,14 +725,14 @@ msgstr "[CENSURADO]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[CENSURADO: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -810,7 +786,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "entrou na sala (novamente)"
|
||||
@@ -820,7 +796,7 @@ msgstr "entrou na sala (novamente)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 foi convidado para a sala"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "entrou na sala"
|
||||
@@ -830,7 +806,7 @@ msgstr "entrou na sala"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -842,29 +818,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "alterou seu nome de exibição para %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " e "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "limpou seu ícone de usuário"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "definir um ícone de usuário"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "atualizou seu ícone de usuário"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -875,7 +851,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "cancelou o convite de %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "rejeitou o convite"
|
||||
@@ -885,7 +861,7 @@ msgstr "rejeitou o convite"
|
||||
msgid "unbanned %1"
|
||||
msgstr "%1 teve seu ban removido"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "removeu seu próprio ban"
|
||||
@@ -895,7 +871,7 @@ msgstr "removeu seu próprio ban"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "removeu %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "saiu da sala"
|
||||
@@ -911,12 +887,12 @@ msgstr "baniu %1 da sala: %2"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "baniu %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "baniu a si mesmo da sala"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "solicitou um convite"
|
||||
@@ -927,12 +903,12 @@ msgstr "solicitou um convite"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "solicitou um convite"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "fez algo desconhecido"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "limpou o apelido principal da sala"
|
||||
@@ -942,7 +918,7 @@ msgstr "limpou o apelido principal da sala"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "definiu o apelido principal da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "limpou o nome da sala"
|
||||
@@ -952,104 +928,104 @@ msgstr "limpou o nome da sala"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "definiu o nome da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "limpou o assunto da sala"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "definiu o assunto da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "alterou o ícone da sala"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "ativou criptografia ponta-a-ponta"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "atualizou a sala para a versão %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "criou a sala, versão %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "alterou os níveis de poderes desta sala"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "alterou as listas de controle de acesso do servidor para esta sala"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "adicionou widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "removeu widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "configurou widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "atualizou o estado %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "atualizou o estado %1 for %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Evento desconhecido"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send a message…"
|
||||
msgid "sent a message"
|
||||
msgstr "Enviar uma mensagem…"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "%1 foi convidado para a sala novamente"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "%1 foi convidado para a sala"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
@@ -1057,93 +1033,93 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "alterou seu nome de exibição para %1"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "cancelou o convite de %1"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "%1 teve seu ban removido"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "removeu %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "baniu %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
msgid "set the room main alias"
|
||||
msgstr "definiu o apelido principal da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
msgid "set the room name"
|
||||
msgstr "definiu o nome da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "definiu o assunto da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "atualizou a sala para a versão %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "saiu da sala"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] added <name> widget"
|
||||
#| msgid "added %1 widget"
|
||||
msgid "added a widget"
|
||||
msgstr "adicionou widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] removed <name> widget"
|
||||
#| msgid "removed %1 widget"
|
||||
msgid "removed a widget"
|
||||
msgstr "removeu widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] configured <name> widget"
|
||||
#| msgid "configured %1 widget"
|
||||
msgid "configured a widget"
|
||||
msgstr "configurou widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "atualizou o estado %1"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Password changed successfully"
|
||||
msgid "Report sent successfully."
|
||||
@@ -1382,6 +1358,7 @@ msgid "Matrix ID:"
|
||||
msgstr "ID do Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Carregando..."
|
||||
@@ -2716,12 +2693,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Mensagens diretas"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No rooms found"
|
||||
msgid "No results found"
|
||||
|
||||
588
po/ru/neochat.po
588
po/ru/neochat.po
File diff suppressed because it is too large
Load Diff
111
po/sk/neochat.po
111
po/sk/neochat.po
@@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2022-04-18 17:58+0200\n"
|
||||
"Last-Translator: Roman Paholik <wizzardsk@gmail.com>\n"
|
||||
"Language-Team: Slovak <kde-sk@linux.sk>\n"
|
||||
@@ -753,7 +753,7 @@ msgstr "[REVIDOVANÉ]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REVIDOVANÉ: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -761,7 +761,7 @@ msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -815,7 +815,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "pripojil sa k miestnosti (opakovane)"
|
||||
@@ -825,7 +825,7 @@ msgstr "pripojil sa k miestnosti (opakovane)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "pozval %1 do miestnosti"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "sa pripojil k miestnosti"
|
||||
@@ -835,7 +835,7 @@ msgstr "sa pripojil k miestnosti"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -847,29 +847,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "zmenili svoje zobrazované meno na %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " a "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "vymazali svojho avatara"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "nastavil avatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "aktualizovali avatara"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -880,7 +880,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "stiahol pozvanie %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "odmietol pozvanie"
|
||||
@@ -890,7 +890,7 @@ msgstr "odmietol pozvanie"
|
||||
msgid "unbanned %1"
|
||||
msgstr "zrušený zákaz prístupu %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
@@ -900,7 +900,7 @@ msgstr ""
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "dal %1 z miestnosti: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "opustil miestnosť"
|
||||
@@ -916,12 +916,12 @@ msgstr "zakázal %1 z miestnosti: %2"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "zakázal %1 z miestnosti: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "rejected the invitation"
|
||||
msgid "requested an invite"
|
||||
@@ -933,12 +933,12 @@ msgstr "odmietol pozvanie"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "odmietol pozvanie"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "urobil niečo neznáme"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "vyčistil hlavný alias miestnosti"
|
||||
@@ -948,7 +948,7 @@ msgstr "vyčistil hlavný alias miestnosti"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "nastaviť hlavný alias miestnosti na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "vyčistil názov miestnosti"
|
||||
@@ -958,104 +958,104 @@ msgstr "vyčistil názov miestnosti"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "nastavil názov miestnosti na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "vyčistil tému"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "nastavil tému na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "zmenil avatara miestnosti"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "aktivoval End-to-End šifrovanie"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "Aktualizoval miestnosť na verziu %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "vytvoril miestnosť, verzia %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "aktualizoval %1 stav"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "aktualizoval %1 stav pre %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Neznáma udalosť"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send message"
|
||||
msgid "sent a message"
|
||||
msgstr "Odoslať správu"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "znovu pozval %1 do miestnosti"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "pozval %1 do miestnosti"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
@@ -1063,88 +1063,88 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "zmenili svoje zobrazované meno na %1"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "stiahol pozvanie %1"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "zrušený zákaz prístupu %1"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "dal %1 z miestnosti: %2"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "zakázal %1 z miestnosti: %2"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
msgid "set the room main alias"
|
||||
msgstr "nastaviť hlavný alias miestnosti na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
msgid "set the room name"
|
||||
msgstr "nastavil názov miestnosti na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "nastavil tému na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "Aktualizoval miestnosť na verziu %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "opustil miestnosť"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgid "removed a widget"
|
||||
msgstr "Upraviť správu"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "aktualizoval %1 stav"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Password changed successfully"
|
||||
msgid "Report sent successfully."
|
||||
@@ -1388,6 +1388,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Načítava sa…"
|
||||
@@ -2725,12 +2726,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Priame správy"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No rooms found"
|
||||
msgid "No results found"
|
||||
|
||||
117
po/sl/neochat.po
117
po/sl/neochat.po
@@ -8,16 +8,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-03-16 12:58+0100\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-04-24 10:18+0200\n"
|
||||
"Last-Translator: Matjaž Jeran <matjaz.jeran@amis.net>\n"
|
||||
"Language-Team: Slovenian <lugos-slo@lugos.si>\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
||||
"%100<=4 ? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
|
||||
"%100==4 ? 3 : 0);\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
|
||||
#: src/controller.cpp:198
|
||||
@@ -669,7 +669,7 @@ msgstr "[PREKRIVANJE PODATKOV]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[PREKRIVANJE PODATKOV: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -678,7 +678,7 @@ msgstr[1] "%1 uporabnika: "
|
||||
msgstr[2] "%1 uporabniki: "
|
||||
msgstr[3] "%1 uporabnikov: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -730,7 +730,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "se je pridružil v sobi (ponovno)"
|
||||
@@ -740,7 +740,7 @@ msgstr "se je pridružil v sobi (ponovno)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "povabljen %1 v sobo"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "se je pridružil v sobi"
|
||||
@@ -750,7 +750,7 @@ msgstr "se je pridružil v sobi"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -762,29 +762,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "je spremenil ime prikaza na %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " in "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "je očistil njihov avatar"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "nastavi avatarja"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "posodobil njihov avatar"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -795,7 +795,7 @@ msgstr "nič ni spremenjenega"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "je umaknil povabilo %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "zavrnil povabilo"
|
||||
@@ -805,7 +805,7 @@ msgstr "zavrnil povabilo"
|
||||
msgid "unbanned %1"
|
||||
msgstr "brez prepovedi %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "sama rešena prepovedi"
|
||||
@@ -815,7 +815,7 @@ msgstr "sama rešena prepovedi"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "je postavil %1 ven iz sobe: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "je zapustil sobo"
|
||||
@@ -830,12 +830,12 @@ msgstr "prepovedan %1 iz sobe"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "je prepovedal %1 v sobo: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "samo-prepovedano iz sobe"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "je zahteval povabilo"
|
||||
@@ -845,12 +845,12 @@ msgstr "je zahteval povabilo"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "je zahteval povabilo z razlogom: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "je naredil nekaj neznanega"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "je očistil glavni vzdevek sobe"
|
||||
@@ -860,7 +860,7 @@ msgstr "je očistil glavni vzdevek sobe"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "nastavi vzdevek sobe na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "je obrisal ime sobe"
|
||||
@@ -870,177 +870,177 @@ msgstr "je obrisal ime sobe"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "je nastavil ime sobe na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "je očistil temo debate"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "je nastavil temo debate na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "je spremenil avatar sobe"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "je aktiviral šifriranje od točke do točke"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "je nadgradil sobo na verzijo %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "je ustvaril sobo verzije %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "spremenil ravni moči za to sobo"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "spremenil sezname za nadzor dostopa do strežnika za to sobo"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "dodan gradnik %1"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "odstranjen gradnik %1"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "nastavljen gradnik %1"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "je posodobil stanje %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "je posodobil stanje %1 za %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Neznan dogodek"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "je poslal sporočilo"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "je poslal nalepko"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "je ponovno povabil nekoga v sobo"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "je povabil nekoga v sobo"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "je spremenil njihovo ime prikaza"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "je umaknil povabilo"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "je umaknil prepoved uporabnika"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "je postavil uporabnika iz sobe"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "je prepovedal uporabniku v sobo"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "je nastavil vzdevek sobe"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "je nastavil ime sobe"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "je nastavil temo debate"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "je nadgradil različico sobe"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "je ustvaril sobo"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "je dodaj gradnik"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "je odstranil gradnik"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "je nastavil gradnik"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "je posodobil stanje"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "je začel glasovanje"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Poročilo uspešno poslano."
|
||||
@@ -1268,6 +1268,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrixov ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Nalaganje…"
|
||||
@@ -2590,12 +2591,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Išči sporočila"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Vnesite besedilo, da začnem iskati"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Ni najdenih zadetkov"
|
||||
|
||||
111
po/sv/neochat.po
111
po/sv/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-28 16:37+0200\n"
|
||||
"Last-Translator: Stefan Asserhäll <stefan.asserhall@bredband.net>\n"
|
||||
"Language-Team: Swedish <kde-i18n-doc@kde.org>\n"
|
||||
@@ -748,14 +748,14 @@ msgstr "[ÄNDRAD]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ÄNDRAD: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -809,7 +809,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "gick med i rummet (upprepat)"
|
||||
@@ -819,7 +819,7 @@ msgstr "gick med i rummet (upprepat)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "bjöd in %1 till rummet"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "gick med i rummet"
|
||||
@@ -829,7 +829,7 @@ msgstr "gick med i rummet"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -841,29 +841,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "ändrade sitt visningsnamn till %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " och "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "tog bort sin avatar"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "tilldela en avatar"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "uppdaterade sin avatar"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -874,7 +874,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "drog tillbaka inbjudan av %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "nekade till inbjudan"
|
||||
@@ -884,7 +884,7 @@ msgstr "nekade till inbjudan"
|
||||
msgid "unbanned %1"
|
||||
msgstr "tog bort bannlysning av %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "tog bort bannlysning av sig själv"
|
||||
@@ -894,7 +894,7 @@ msgstr "tog bort bannlysning av sig själv"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "har flyttat %1 utanför rummet: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "lämnade rummet"
|
||||
@@ -910,12 +910,12 @@ msgstr "bannlyste %1 från rummet: %2"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "bannlyste %1 från rummet: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "bannlyste sig själv från rummet"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "frågade efter en inbjudan"
|
||||
@@ -926,12 +926,12 @@ msgstr "frågade efter en inbjudan"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "frågade efter en inbjudan"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "gjorde någonting okänt"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "tog bort rummets huvudalias"
|
||||
@@ -941,7 +941,7 @@ msgstr "tog bort rummets huvudalias"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ställde in rummets huvudalias till: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "tog bort rummets namn"
|
||||
@@ -951,104 +951,104 @@ msgstr "tog bort rummets namn"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ställ in rummets namn till: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "tog bort ämnet"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ställ in ämnet till: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "ändrade rummets avatar"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "aktiverade kryptering hela vägen"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "uppgraderade rummet till version %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "skapade rummet, version %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "ändrade rummets effektnivåer"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "ändrade serverns åtkomstkontrollista för rummet"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "lade till grafisk komponent %1"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "tog bort grafisk komponent %1"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "ställde in grafisk komponent %1"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "uppdaterade tillstånd %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "uppdaterade tillstånd %1 för %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Okänd händelse"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send a message…"
|
||||
msgid "sent a message"
|
||||
msgstr "Skicka ett meddelande…"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "bjöd in %1 till rummet igen"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "bjöd in %1 till rummet"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
@@ -1056,93 +1056,93 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ändrade sitt visningsnamn till %1"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "drog tillbaka inbjudan av %1"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "tog bort bannlysning av %1"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "har flyttat %1 utanför rummet: %2"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "bannlyste %1 från rummet: %2"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
msgid "set the room main alias"
|
||||
msgstr "ställde in rummets huvudalias till: %1"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
msgid "set the room name"
|
||||
msgstr "ställ in rummets namn till: %1"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "ställ in ämnet till: %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "uppgraderade rummet till version %1"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "lämnade rummet"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] added <name> widget"
|
||||
#| msgid "added %1 widget"
|
||||
msgid "added a widget"
|
||||
msgstr "lade till grafisk komponent %1"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] removed <name> widget"
|
||||
#| msgid "removed %1 widget"
|
||||
msgid "removed a widget"
|
||||
msgstr "tog bort grafisk komponent %1"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] configured <name> widget"
|
||||
#| msgid "configured %1 widget"
|
||||
msgid "configured a widget"
|
||||
msgstr "ställde in grafisk komponent %1"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "uppdaterade tillstånd %1"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Rapport skickades med lyckat resultat."
|
||||
@@ -1380,6 +1380,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix-identifierare"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Läser in…"
|
||||
@@ -2729,12 +2730,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Direktmeddelanden"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No rooms found"
|
||||
msgid "No results found"
|
||||
|
||||
167
po/ta/neochat.po
167
po/ta/neochat.po
@@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-03-12 16:34+0530\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-06-18 14:28+0530\n"
|
||||
"Last-Translator: Kishore G <kishore96@gmail.com>\n"
|
||||
"Language-Team: Tamil <kde-i18n-doc@kde.org>\n"
|
||||
"Language: ta\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
"X-Generator: Lokalize 23.04.2\n"
|
||||
|
||||
#: src/controller.cpp:198
|
||||
#, kde-format
|
||||
@@ -338,12 +338,10 @@ msgid "Joins the given room"
|
||||
msgstr "உரிய அரங்கிலு நுழையும்"
|
||||
|
||||
#: src/models/actionsmodel.cpp:230
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "Joining room <roomname>."
|
||||
#| msgid "Joining room %1."
|
||||
#, kde-format
|
||||
msgctxt "Knocking room <roomname>."
|
||||
msgid "Knocking room %1."
|
||||
msgstr "%1 எனும் அரங்கில் நுழைகிறீர்கள்."
|
||||
msgstr "%1 எனும் அரங்கில் நுழைய அனுமதி கோரப்படுகிறது."
|
||||
|
||||
#: src/models/actionsmodel.cpp:242
|
||||
msgid "<room alias or id> [<reason>]"
|
||||
@@ -559,7 +557,7 @@ msgstr ", "
|
||||
#, kde-format
|
||||
msgctxt "[action 1, action 2] or [action 3]"
|
||||
msgid " or "
|
||||
msgstr "அல்லது"
|
||||
msgstr " அல்லது "
|
||||
|
||||
#: src/models/collapsestateproxymodel.cpp:89
|
||||
#, kde-format
|
||||
@@ -668,20 +666,15 @@ msgstr "[தணிக்கை செய்யப்பட்டது]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[தணிக்கை செய்யப்பட்டது: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "n users"
|
||||
#| msgid " %1 user "
|
||||
#| msgid_plural " %1 users "
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] " %1 பயனர் "
|
||||
msgstr[1] " %1 பயனர்கள் "
|
||||
msgstr[0] "1 பயனர்: "
|
||||
msgstr[1] "%1 பயனர்கள்: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and/or action 3]"
|
||||
#| msgid ", "
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
@@ -732,7 +725,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "அரங்கில் சேர்ந்தார் (மறுபடியும்)"
|
||||
@@ -742,7 +735,7 @@ msgstr "அரங்கில் சேர்ந்தார் (மறுபட
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 என்பவரை அரங்குக்கு வரவழைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "அரங்கில் சேர்ந்தார்"
|
||||
@@ -752,7 +745,7 @@ msgstr "அரங்கில் சேர்ந்தார்"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -764,29 +757,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "அவருடைய காட்டப்படும் பெயரை %1 என்று மாற்றினார்"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " மற்றும் "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "அவருடைய சின்னத்தை காலியாக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ஒரு சின்னத்தை அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "அவருடைய சின்னத்தை மாற்றினார்"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -797,7 +790,7 @@ msgstr "எதையும் மாற்றவில்லை"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "%1 என்பவருக்கான அழைப்பை திரும்பப்பெற்றார்"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "அழைப்பை மறுத்தார்"
|
||||
@@ -807,7 +800,7 @@ msgstr "அழைப்பை மறுத்தார்"
|
||||
msgid "unbanned %1"
|
||||
msgstr "%1 மீதான தடையை நீக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "தன்மேல் உள்ள தடையை நீக்கினார்"
|
||||
@@ -817,7 +810,7 @@ msgstr "தன்மேல் உள்ள தடையை நீக்கின
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "%1 என்பவரை அரங்குக்கு வெளியே அனுப்பிவிட்டார்: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "அரங்கைவிட்டு வெளியேறினார்"
|
||||
@@ -832,12 +825,12 @@ msgstr "%1 என்பவரை அரங்கிலிருந்து த
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "%1 என்பவரை அரங்கிலிருந்து தடை செய்தார்: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "தன்னை அரங்கிலிருந்து தடை செய்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "வரவழைப்பு கோரினார்"
|
||||
@@ -847,12 +840,12 @@ msgstr "வரவழைப்பு கோரினார்"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "இக்காரணங்காட்டி வரவழைப்பு கோரினார்: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "எதையோ தெரியாதவாறு செய்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "அரங்கின் பிரதான மாற்றுப்பெயரை காலியாக்கினார்"
|
||||
@@ -862,7 +855,7 @@ msgstr "அரங்கின் பிரதான மாற்றுப்ப
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "அரங்கின் மாற்றுப்பெயரை %1 என்று அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "அரங்கின் பெயரை காலியாக்கினார்"
|
||||
@@ -872,177 +865,177 @@ msgstr "அரங்கின் பெயரை காலியாக்கி
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "அரங்கின் பெயரை %1 என்று அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "தலைப்பை காலியாக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "தலைப்பை %1 என்று அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "அரங்கின் சின்னத்தை மாற்றினார்"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "தொடக்கத்திலிருந்து முடிவுவரை மறையாக்கம் பயன்படுத்தப்படுவதை இயக்கியுள்ளார்"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "அரங்கை %1 பதிப்புக்கு மேம்படுத்தினார்"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "அரங்கை உருவாக்கினார், பதிப்பு %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "இந்த அரங்கிற்கான அனுமதிகளை மாற்றினார்"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "இந்த அரங்கிற்கான சேவையக அணுகல் கட்டுப்பாட்டு பட்டியலை மாற்றியுள்ளார்"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "%1 பலகையை சேர்த்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "%1 பலகையை நீக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "%1 பலகையை அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "%1 நிலையை புதுப்பித்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "%2 என்பதற்கு %1 நிலையை புதுப்பித்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "தெரியாத நிகழ்வு"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "செய்தியை அனுப்பினார்"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "ஒட்டியை அனுப்பினார்"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "ஒருவரை மறுபடியும் அரங்குக்கு வரவழைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "எவரையே அரங்குக்கு வரவழைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "தன் காட்சிப்பெயரை மாற்றினார்"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "ஒருவருக்கு விடுத்த வரவழைப்பை திரும்பப்பெற்றார்"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ஒருவர் மீதான தடையை நீக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "ஒருவரை அரங்குகிலிருந்து வெளியே அனுப்பினார்"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "ஒருவரை அரங்கிலிருந்து தடை செய்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "அரங்கின் மாற்றுப்பெயரை அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "அரங்கின் பெயரை அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "தலைப்பை அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "அரங்கின் பதிப்பை மேம்படுத்தினார்"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "அரங்கை உருவாக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "ஓர் உட்பொதிநிரலை சேர்த்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "ஓர் உட்பொதிநிரலை நீக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ஓர் உட்பொதிநிரல் மாற்றியமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "நிலையை புதுப்பித்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "கருத்தாய்வை துவக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "புகார் வெற்றிகரமாக அனுப்பப்பட்டுள்ளது."
|
||||
@@ -1270,6 +1263,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix கணக்குப்பெயர்:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "ஏற்றப்படுகிறது…"
|
||||
@@ -2571,12 +2565,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "செய்திகளில் தேடு"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "தேடுவதற்கான உரையை உள்ளிடுங்கள்"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "எதுவும் கண்டுபிடிக்கப்படவில்லை"
|
||||
@@ -2778,35 +2772,29 @@ msgid "Add new alias"
|
||||
msgstr "புதிய மாற்றுப்பெயரைச் சேர்"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:271
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "URL Previews"
|
||||
msgstr "முகவரியின் முன்னோட்டம் ஏற்றப்படுகிறது"
|
||||
msgstr "முகவரியின் முன்னோட்டம்"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:274
|
||||
#, kde-format
|
||||
msgid "Enable URL previews by default for room members"
|
||||
msgstr ""
|
||||
msgstr "அரங்கிலுள்ளோருக்கு இயல்பிருப்பாக முகவரி முன்னோட்டத்தை இயக்கு"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:282
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading URL preview"
|
||||
#, kde-format
|
||||
msgid "Enable URL previews"
|
||||
msgstr "முகவரியின் முன்னோட்டம் ஏற்றப்படுகிறது"
|
||||
msgstr "முகவரியின் முன்னோட்டத்தை இயக்கு"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "<user> is already in this room."
|
||||
#| msgid "%1 is already in this room."
|
||||
#, kde-format
|
||||
msgid "URL previews are enabled by default in this room"
|
||||
msgstr "%1 இவ்வரங்கில் ஏற்கனவே உள்ளார்."
|
||||
msgstr "இவ்வரங்கில் முகவரி முன்னோட்டம் இயல்பிருப்பாக இயக்கப்பட்டுள்ளது"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:284
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "<user> is already in this room."
|
||||
#| msgid "%1 is already in this room."
|
||||
#, kde-format
|
||||
msgid "URL previews are disabled by default in this room"
|
||||
msgstr "%1 இவ்வரங்கில் ஏற்கனவே உள்ளார்."
|
||||
msgstr "இவ்வரங்கில் முகவரி முன்னோட்டம் இயல்பிருப்பாக முடக்கப்பட்டுள்ளது"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:297
|
||||
#, kde-format
|
||||
@@ -3419,10 +3407,9 @@ msgid "Show deleted messages"
|
||||
msgstr "நீக்கப்பட்டுள்ள செய்திகளைக் பாட்டு"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show avatar update events"
|
||||
#, kde-format
|
||||
msgid "Show state events"
|
||||
msgstr "சின்னங்கள் மாற்றப்படுவதை காட்டு"
|
||||
msgstr "நிலைமாற்ற நிகழ்வுகளை காட்டு"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:112
|
||||
#, kde-format
|
||||
@@ -3529,7 +3516,7 @@ msgstr "அரங்கு புதுப்பிப்பு செய்த
|
||||
#: src/qml/Settings/GlobalNotificationsPage.qml:128
|
||||
#, kde-format
|
||||
msgid "@Mentions"
|
||||
msgstr ""
|
||||
msgstr "@சுட்டுவது"
|
||||
|
||||
#: src/qml/Settings/GlobalNotificationsPage.qml:131
|
||||
#, kde-format
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2022-06-20 03:30+0000\n"
|
||||
"Last-Translator: Weblate Admin <admin@example.com>\n"
|
||||
"Language-Team: Toki Pona <http://weblate.blackquill.cc/projects/ante-toki-pi-"
|
||||
@@ -688,7 +688,7 @@ msgstr ""
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -697,7 +697,7 @@ msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -749,7 +749,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr ""
|
||||
@@ -759,7 +759,7 @@ msgstr ""
|
||||
msgid "invited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr ""
|
||||
@@ -769,7 +769,7 @@ msgstr ""
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -781,29 +781,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -814,7 +814,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr ""
|
||||
@@ -824,7 +824,7 @@ msgstr ""
|
||||
msgid "unbanned %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
@@ -834,7 +834,7 @@ msgstr ""
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr ""
|
||||
@@ -849,12 +849,12 @@ msgstr ""
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr ""
|
||||
@@ -864,12 +864,12 @@ msgstr ""
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
@@ -879,7 +879,7 @@ msgstr ""
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr ""
|
||||
@@ -889,183 +889,183 @@ msgstr ""
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send message"
|
||||
msgid "sent a message"
|
||||
msgstr "o pana e toki"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Unban this user"
|
||||
msgid "unbanned a user"
|
||||
msgstr "o weka e weka pi jan ni"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Create a Room"
|
||||
msgid "set the room name"
|
||||
msgstr "o pali e tomo toki"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Create a Room"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "o pali e tomo toki"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Create a Room"
|
||||
msgid "created the room"
|
||||
msgstr "o pali e tomo toki"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgid "removed a widget"
|
||||
msgstr "o ante e toki"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr ""
|
||||
@@ -1298,6 +1298,7 @@ msgid "Matrix ID:"
|
||||
msgstr "nimi pi ilo Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "mi pali…"
|
||||
@@ -2610,12 +2611,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "o ante e toki"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE refentry PUBLIC "-//KDE//DTD DocBook XML V4.5-Based Variant V1.1//EN" "dtd/kdedbx45.dtd" [
|
||||
<!ENTITY % English "INCLUDE">
|
||||
<!ENTITY % Turkish "INCLUDE">
|
||||
]>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 Carl Schwan <carl@carlschwan.eu>
|
||||
@@ -9,77 +9,114 @@ SPDX-License-Identifier: CC-BY-SA-4.0
|
||||
|
||||
<refentry lang="&language;">
|
||||
<refentryinfo>
|
||||
<title>NeoChat User's Manual</title>
|
||||
<author><firstname>Carl</firstname><surname>Schwan</surname>
|
||||
<contrib>NeoChat man page.</contrib>
|
||||
<email>carl@carlschwan.eu</email></author>
|
||||
<date>2022-11-01</date>
|
||||
<releaseinfo>22.09</releaseinfo>
|
||||
<productname>NeoChat</productname>
|
||||
<title
|
||||
>NeoChat Kullanıcı Kılavuzu</title>
|
||||
<author
|
||||
><firstname
|
||||
>Carl</firstname
|
||||
><surname
|
||||
>Schwan</surname
|
||||
> <contrib
|
||||
>NeoChat man page.</contrib
|
||||
> <email
|
||||
>carl@carlschwan.eu</email
|
||||
></author>
|
||||
<date
|
||||
>2022-11-01</date>
|
||||
<releaseinfo
|
||||
>22.09</releaseinfo>
|
||||
<productname
|
||||
>NeoChat</productname>
|
||||
</refentryinfo>
|
||||
|
||||
<refmeta>
|
||||
<refentrytitle>
|
||||
<command>neochat</command>
|
||||
<command
|
||||
>neochat</command>
|
||||
</refentrytitle>
|
||||
<manvolnum>1</manvolnum>
|
||||
<manvolnum
|
||||
>1</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>neochat</refname>
|
||||
<refpurpose>Client for interacting with the matrix messaging protocol</refpurpose>
|
||||
<refname
|
||||
>neochat</refname>
|
||||
<refpurpose
|
||||
>Matrix iletileşme protokolü ile etkileşim için istemci</refpurpose>
|
||||
</refnamediv>
|
||||
<!-- body begins here -->
|
||||
<refsynopsisdiv id='synopsis'>
|
||||
<cmdsynopsis>
|
||||
<command>neochat</command>
|
||||
<arg choice="opt"><replaceable>URI</replaceable></arg>
|
||||
</cmdsynopsis>
|
||||
<cmdsynopsis
|
||||
><command
|
||||
>neochat</command
|
||||
> <arg choice="opt"
|
||||
><replaceable
|
||||
>URI</replaceable
|
||||
></arg
|
||||
> </cmdsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
|
||||
<refsect1 id="description">
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<command>neochat</command> is a chat application for the matrix protocol
|
||||
that work on both desktop and mobile.
|
||||
</para>
|
||||
<title
|
||||
>Açıklama</title>
|
||||
<para
|
||||
><command
|
||||
>neochat</command
|
||||
>, Matrix protokolü için hem masaüstünde hem de taşınabilir aygıtlarda çalışan bir sohbet uygulamasıdır. </para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 id="options"><title>Options</title>
|
||||
<refsect1 id="options"
|
||||
><title
|
||||
>Seçenekler</title>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><option>URI</option></term>
|
||||
<term
|
||||
><option
|
||||
>URI</option
|
||||
></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The matrix uri for an user or a room. e.g matrix:u/user:example.org and
|
||||
matrix:r/root:example.org. This will makes NeoChat try to open the given
|
||||
room or conversation.
|
||||
</para>
|
||||
<para
|
||||
>Bir kullanıcı veya oda için matrix URI'si; örneğin, matrix:u/kullanıcı:örnek.org ve matrix:r/kök:örnek.org. Bu, NeoChat'in verilen odayı veya konuşmayı açmayı denemesini sağlar. </para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 id="bug">
|
||||
<title>Reporting bugs</title>
|
||||
<para>You can report bugs and feature requests at <ulink url="https://bugs.kde.org/enter_bug.cgi?product=NeoChat&component=General">https://bugs.kde.org/enter_bug.cgi?product=NeoChat&component=General</ulink></para>
|
||||
<title
|
||||
>Hata Bildirme</title>
|
||||
<para
|
||||
>Hataları veya özellik isteklerini <ulink url="https://bugs.kde.org/enter_bug.cgi?product=NeoChat&component=General"
|
||||
>https://bugs.kde.org/enter_bug.cgi?product=NeoChat&component=General</ulink
|
||||
> bağlantısından bildirebilirsiniz</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>See Also</title>
|
||||
<title
|
||||
>Ayrıca</title>
|
||||
<simplelist>
|
||||
<member>
|
||||
A list of frequently asked questions about Matrix <ulink url="https://matrix.org/faq/">https://matrix.org/faq/</ulink>
|
||||
</member>
|
||||
<member>kf5options(7)</member>
|
||||
<member>qt5options(7)</member>
|
||||
<member
|
||||
>Matrix üzerine sıkça sorulan soruların bir listesi: <ulink url="https://matrix.org/faq/"
|
||||
>https://matrix.org/faq/</ulink
|
||||
> </member>
|
||||
<member
|
||||
>kf5options(7)</member>
|
||||
<member
|
||||
>qt5options(7)</member>
|
||||
</simplelist>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 id="copyright"><title>Copyright</title>
|
||||
<para>Copyright © 2020-2022 Tobias Fella </para>
|
||||
<para>Copyright © 2020-2022 Carl Schwan </para>
|
||||
<para>License: GNU General Public Version 3 or later <<ulink url="https://www.gnu.org/licenses/gpl-3.0.html">https://www.gnu.org/licenses/gpl-3.0.html</ulink>></para>
|
||||
<refsect1 id="copyright"
|
||||
><title
|
||||
>Telif Hakkı</title>
|
||||
<para
|
||||
>Telif hakkı © 2020-2022 Tobias Fella </para>
|
||||
<para
|
||||
>Telif hakkı © 2020-2022 Carl Schwan </para>
|
||||
<para
|
||||
>Lisans: GNU Genel Kamu Lisansa, 3. sürüm veya sonrası <<ulink url="https://www.gnu.org/licenses/gpl-3.0.html"
|
||||
>https://www.gnu.org/licenses/gpl-3.0.html</ulink
|
||||
>></para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
117
po/tr/neochat.po
117
po/tr/neochat.po
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-03-14 14:49+0300\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-05-15 21:49+0300\n"
|
||||
"Last-Translator: Emir SARI <emir_sari@icloud.com>\n"
|
||||
"Language-Team: Turkish <kde-l10n-tr@kde.org>\n"
|
||||
"Language: tr\n"
|
||||
@@ -16,7 +16,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
"X-Generator: Lokalize 23.03.70\n"
|
||||
|
||||
#: src/controller.cpp:198
|
||||
#, kde-format
|
||||
@@ -664,14 +664,14 @@ msgstr "[DEĞİŞTİRİLDİ]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[DEĞİŞTİRİLDİ: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "%1 kullanıcı: "
|
||||
msgstr[1] "%1 kullanıcı: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -723,7 +723,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "odaya katıldı (yinelendi)"
|
||||
@@ -733,7 +733,7 @@ msgstr "odaya katıldı (yinelendi)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1, odaya davet edildi"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "odaya katıldı"
|
||||
@@ -743,7 +743,7 @@ msgstr "odaya katıldı"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -755,29 +755,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "ekran adını %1 olarak değiştirdi"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " ve "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "avatarını sildi"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "bir avatar koydu"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "avatarını güncelledi"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -788,7 +788,7 @@ msgstr "bir şey değiştirmedi"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "%1 kişisinin davetini geri çekti"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "daveti reddetti"
|
||||
@@ -798,7 +798,7 @@ msgstr "daveti reddetti"
|
||||
msgid "unbanned %1"
|
||||
msgstr "%1 kişisinin yasağını kaldırdı"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "kendi yasağını kaldırdı"
|
||||
@@ -808,7 +808,7 @@ msgstr "kendi yasağını kaldırdı"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "%1 kişisini odadan dışarı çıkardı: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "odadan çıktı"
|
||||
@@ -823,12 +823,12 @@ msgstr "%1 kişisini odadan yasakladı"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "%1 kişisini odadan yasakladı: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "kendini yasakladı"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "bir davet istedi"
|
||||
@@ -838,12 +838,12 @@ msgstr "bir davet istedi"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "şu nedenle bir davet istedi: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "bilinmeyen bir şeyler yaptı"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "oda ana armasını sildi"
|
||||
@@ -853,7 +853,7 @@ msgstr "oda ana armasını sildi"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "oda ana armasını %1 olarak ayarladı"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "oda adını sildi"
|
||||
@@ -863,177 +863,177 @@ msgstr "oda adını sildi"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "oda adını %1 olarak ayarladı"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "konuyu sildi"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "konuyu %1 olarak ayarladı"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "oda avatarını değiştirdi"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "uçtan uca şifrelemeyi etkinleştirdi"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "odayı %1 sürümüne güncelledi"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "odayı oluşturdu, %1. sürüm"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "bu oda için izin düzeylerini değiştirdi"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "bu oda için sunucu erişim denetim listelerini değiştirdi"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "%1 araç takımını ekledi"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "%1 araç takımını kaldırdı"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "%1 araç takımını yapılandırdı"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "%1 durumunu güncelledi"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "%2 için %1 durumunu güncelledi"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Bilinmeyen olay"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "bir ileti gönderdi"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "bir yapışkan gönderdi"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "birisini odaya yeniden davet etti"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "birisini odaya davet etti"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ekran adını değiştirdi"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "bir kullanıcının yanıtını geri çevirdi"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "bir kullanıcının yasağını kaldırdı"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "bir kişiyi odadan dışarı çıkardı"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "bir kişiyi odadan yasakladı"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "oda ana armasını ayarladı"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "oda adını ayarladı"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "konuyu ayarladı"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "oda sürümünü yükseltti"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "odayı oluşturdu"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "bir araç takımı ekledi"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "bir araç takımını kaldırdı"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "bir araç takımını yapılandırdı"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "durumu güncelledi"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "bir anket başlattı"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Rapor başarıyla gönderildi."
|
||||
@@ -1130,7 +1130,7 @@ msgstr "Şifreli bir ileti gönder…"
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:123
|
||||
#, kde-format
|
||||
msgid "Set an attachment caption..."
|
||||
msgstr "Bir ilişik alt yazısı ekle..."
|
||||
msgstr "Bir ek alt yazısı ekle..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:123
|
||||
#, kde-format
|
||||
@@ -1261,6 +1261,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix kimliği:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Yükleniyor…"
|
||||
@@ -2575,12 +2576,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "İletileri Ara"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Aramaya başlamak için metin gir"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Sonuç bulunamadı"
|
||||
|
||||
111
po/uk/neochat.po
111
po/uk/neochat.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-03-15 08:01+0200\n"
|
||||
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
|
||||
"Language-Team: Ukrainian <kde-i18n-uk@kde.org>\n"
|
||||
@@ -676,7 +676,7 @@ msgstr "[ЗМІНЕНО]"
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ЗМІНЕНО: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -685,7 +685,7 @@ msgstr[1] "%1 користувачі: "
|
||||
msgstr[2] "%1 користувачів: "
|
||||
msgstr[3] "%1 користувач: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -737,7 +737,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "долучається до кімнати (повторно)"
|
||||
@@ -747,7 +747,7 @@ msgstr "долучається до кімнати (повторно)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "запрошено %1 до кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "долучається до кімнати"
|
||||
@@ -757,7 +757,7 @@ msgstr "долучається до кімнати"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -769,29 +769,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "змінено своє показане ім'я на %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " і "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "вилучено свій аватар"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "встановлено аватар"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "оновлено свій аватар"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -802,7 +802,7 @@ msgstr "нічого не змінено"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "відкликано запрошення %1"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "відкинуто запрошення"
|
||||
@@ -812,7 +812,7 @@ msgstr "відкинуто запрошення"
|
||||
msgid "unbanned %1"
|
||||
msgstr "розблоковано %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "саморозблоковується"
|
||||
@@ -822,7 +822,7 @@ msgstr "саморозблоковується"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "викинуто %1 з кімнати: %2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "полишає кімнату"
|
||||
@@ -837,12 +837,12 @@ msgstr "заблоковано %1 у кімнаті"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "заблоковано %1 у кімнаті: %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "самозаблоковується у кімнаті"
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "надіслано запит щодо запрошення"
|
||||
@@ -852,12 +852,12 @@ msgstr "надіслано запит щодо запрошення"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "надіслано запит щодо запрошення з поясненням причини: %1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "виконано щось невідоме"
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "вилучено основний варіант назви кімнати"
|
||||
@@ -867,7 +867,7 @@ msgstr "вилучено основний варіант назви кімнат
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "встановлено основний варіант назви кімнати: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "вилучено назву кімнати"
|
||||
@@ -877,177 +877,177 @@ msgstr "вилучено назву кімнати"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "встановлено назву кімнати: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "вилучено тему"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "встановлено тему: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "змінено аватар кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "активовано наскрізне шифрування"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "оновлено версію кімнати до %1"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "створено кімнату, версія %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "змінено рівні прав доступу для цієї кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "Для цієї кімнати змінено списки керування доступом на сервері"
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "додано віджет %1"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "вилучено віджет %1"
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "налаштовано віджет %1"
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "оновлено стан %1"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "оновлено стан %1 для %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Невідома подія"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "надіслав повідомлення"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "надіслати наліпку"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "повторно запросив когось до кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "запросив когось до кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "змінив власне показане ім'я"
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "відкликав запрошення користувача"
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "розблокував користувача"
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "викинув користувача з кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "заблокував користувача у кімнаті"
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "встановив основний варіант назви кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "встановив назву кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "встановив тему"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "оновив версію кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "створив кімнату"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "додав віджет"
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "вилучив віджет"
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "налаштував віджет"
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "оновив стан"
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "почав голосування"
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Скаргу успішно надіслано."
|
||||
@@ -1277,6 +1277,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Ідентифікатор Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Завантаження…"
|
||||
@@ -2602,12 +2603,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "Пошук повідомлень"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "Введіть фрагмент тексту, щоб почати пошук"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "Нічого не знайдено"
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kdeorg\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"PO-Revision-Date: 2023-02-24 12:44\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2023-07-03 11:41\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"Language: zh_CN\n"
|
||||
@@ -14,8 +14,8 @@ msgstr ""
|
||||
"X-Crowdin-Project: kdeorg\n"
|
||||
"X-Crowdin-Project-ID: 269464\n"
|
||||
"X-Crowdin-Language: zh-CN\n"
|
||||
"X-Crowdin-File: /kf5-trunk/messages/neochat/neochat.pot\n"
|
||||
"X-Crowdin-File-ID: 24924\n"
|
||||
"X-Crowdin-File: /kf5-stable/messages/neochat/neochat.pot\n"
|
||||
"X-Crowdin-File-ID: 41945\n"
|
||||
|
||||
#: src/controller.cpp:198
|
||||
#, kde-format
|
||||
@@ -666,13 +666,13 @@ msgstr ""
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -724,7 +724,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ":%1"
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "加入了聊天室 (多次)"
|
||||
@@ -734,7 +734,7 @@ msgstr "加入了聊天室 (多次)"
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "发送了将 %1 加入聊天室的邀请"
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "加入了聊天室"
|
||||
@@ -744,7 +744,7 @@ msgstr "加入了聊天室"
|
||||
msgid ": %1"
|
||||
msgstr ":%1"
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -756,29 +756,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "将显示名称更改为 %1"
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " 和 "
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "清除了头像"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "设置头像"
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "更新了头像"
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -789,7 +789,7 @@ msgstr "未更改任何属性"
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "退回 %1 的邀请"
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "拒绝邀请"
|
||||
@@ -799,7 +799,7 @@ msgstr "拒绝邀请"
|
||||
msgid "unbanned %1"
|
||||
msgstr "取消封禁 %1"
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "自取消封禁"
|
||||
@@ -809,7 +809,7 @@ msgstr "自取消封禁"
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "将 %1 移出了聊天室:%2"
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "离开聊天室"
|
||||
@@ -824,12 +824,12 @@ msgstr "从聊天室中封禁了 %1"
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "从聊天室封禁了 %1 : %2"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "希望能被邀请"
|
||||
@@ -839,12 +839,12 @@ msgstr "希望能被邀请"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "希望能被邀请,原因:%1"
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "清除了聊天室主别名"
|
||||
@@ -854,7 +854,7 @@ msgstr "清除了聊天室主别名"
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "设置聊天室主别名为: %1"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "清除了聊天室名称"
|
||||
@@ -864,177 +864,177 @@ msgstr "清除了聊天室名称"
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "将聊天室名称设置为: %1"
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "清除了话题"
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "将话题设置为: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "更改了聊天室头像"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "激活了端到端加密"
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "升级了聊天室到 %1 版本"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "创建了聊天室,版本为 %1"
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "更新了 %1 的状态"
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "更新了 %1 的状态为 %2"
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "未知事件"
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr ""
|
||||
@@ -1176,10 +1176,9 @@ msgstr "创建聊天室"
|
||||
|
||||
#: src/qml/Component/ExploreComponent.qml:58
|
||||
#: src/qml/Component/ExploreComponent.qml:109
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Rooms and private chats"
|
||||
#, kde-format
|
||||
msgid "Create rooms and chats"
|
||||
msgstr "聊天室和私聊"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/FullScreenImage.qml:82
|
||||
#, kde-format
|
||||
@@ -1261,6 +1260,7 @@ msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "加载中…"
|
||||
@@ -1754,10 +1754,9 @@ msgstr "编辑用户权力等级"
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:37
|
||||
#: src/qml/RoomSettings/Permissions.qml:74
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Members"
|
||||
#, kde-format
|
||||
msgid "Member (0)"
|
||||
msgstr "成员"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/PowerLevelDialog.qml:38
|
||||
#: src/qml/RoomSettings/Permissions.qml:75
|
||||
@@ -1820,10 +1819,9 @@ msgid "Unban this user"
|
||||
msgstr "解禁此用户"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit user power level"
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "编辑用户权力等级"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
@@ -2546,12 +2544,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr "搜索消息"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr "请输入文本以开始搜索"
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr "未找到结果"
|
||||
@@ -2707,11 +2705,9 @@ msgid "Room ID"
|
||||
msgstr "聊天室 ID"
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:130
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@action:inmenu"
|
||||
#| msgid "Copy Address to Clipboard"
|
||||
#, kde-format
|
||||
msgid "Copy room ID to clipboard"
|
||||
msgstr "将地址复制到剪贴板"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/RoomSettings/General.qml:144
|
||||
#, kde-format
|
||||
@@ -3383,10 +3379,9 @@ msgid "Show deleted messages"
|
||||
msgstr "显示已被删除的消息"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show avatar update events"
|
||||
#, kde-format
|
||||
msgid "Show state events"
|
||||
msgstr "显示头像更新事件"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:112
|
||||
#, kde-format
|
||||
@@ -3651,7 +3646,7 @@ msgstr ""
|
||||
#, kde-format
|
||||
msgctxt "@window:title"
|
||||
msgid "Spellchecking"
|
||||
msgstr "拼写检查"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:94
|
||||
#, kde-format
|
||||
@@ -3691,7 +3686,7 @@ msgstr "自动检测语言"
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:172
|
||||
#, kde-format
|
||||
msgid "Spell checking languages"
|
||||
msgstr "拼写检查语言"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/SonnetConfigPage.qml:180
|
||||
#, kde-format
|
||||
@@ -3782,9 +3777,3 @@ msgstr "显示"
|
||||
#, kde-format
|
||||
msgid "Quit"
|
||||
msgstr "退出"
|
||||
|
||||
#~ msgid "Logout"
|
||||
#~ msgstr "退出登录"
|
||||
|
||||
#~ msgid "Rooms"
|
||||
#~ msgstr "聊天室"
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-03-17 03:15+0000\n"
|
||||
"POT-Creation-Date: 2023-05-20 02:32+0000\n"
|
||||
"PO-Revision-Date: 2022-12-30 18:05+0900\n"
|
||||
"Last-Translator: Kisaragi Hiu <mail@kisaragi-hiu.com>\n"
|
||||
"Language-Team: Traditional Chinese <zh-l10n@linux.org.tw>\n"
|
||||
@@ -663,13 +663,13 @@ msgstr ""
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:843
|
||||
#: src/models/messageeventmodel.cpp:848
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:850
|
||||
#: src/models/messageeventmodel.cpp:855
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -721,7 +721,7 @@ msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:674
|
||||
#: src/neochatroom.cpp:533 src/neochatroom.cpp:678
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr ""
|
||||
@@ -731,7 +731,7 @@ msgstr ""
|
||||
msgid "invited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:535 src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr ""
|
||||
@@ -741,7 +741,7 @@ msgstr ""
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:684
|
||||
#: src/neochatroom.cpp:546 src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
@@ -753,29 +753,29 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:553 src/neochatroom.cpp:695
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:694
|
||||
#: src/neochatroom.cpp:556 src/neochatroom.cpp:698
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:704
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:702
|
||||
#: src/neochatroom.cpp:564 src/neochatroom.cpp:706
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:706
|
||||
#: src/neochatroom.cpp:568 src/neochatroom.cpp:710
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
@@ -786,7 +786,7 @@ msgstr ""
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:574 src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr ""
|
||||
@@ -796,7 +796,7 @@ msgstr ""
|
||||
msgid "unbanned %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:578 src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
@@ -806,7 +806,7 @@ msgstr ""
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:582 src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr ""
|
||||
@@ -821,12 +821,12 @@ msgstr ""
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:723
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:727
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:595 src/neochatroom.cpp:730
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr ""
|
||||
@@ -836,12 +836,12 @@ msgstr ""
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:730
|
||||
#: src/neochatroom.cpp:599 src/neochatroom.cpp:734
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:602 src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
@@ -851,7 +851,7 @@ msgstr ""
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr ""
|
||||
@@ -861,177 +861,177 @@ msgstr ""
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:608
|
||||
#: src/neochatroom.cpp:609
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:611 src/neochatroom.cpp:742
|
||||
#: src/neochatroom.cpp:615 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:745
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:617
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:622
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:751
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:755
|
||||
#: src/neochatroom.cpp:629 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:629
|
||||
#: src/neochatroom.cpp:633
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:636
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:634
|
||||
#: src/neochatroom.cpp:638
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:636
|
||||
#: src/neochatroom.cpp:640
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:637
|
||||
#: src/neochatroom.cpp:641
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:773
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:777
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:657
|
||||
#: src/neochatroom.cpp:661
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:665
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:671
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:676
|
||||
#: src/neochatroom.cpp:680
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:686
|
||||
#: src/neochatroom.cpp:690
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:712
|
||||
#: src/neochatroom.cpp:716
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:716
|
||||
#: src/neochatroom.cpp:720
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:722
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:721
|
||||
#: src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:733
|
||||
#: src/neochatroom.cpp:737
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:740
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:739
|
||||
#: src/neochatroom.cpp:743
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:748
|
||||
#: src/neochatroom.cpp:752
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:763
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:766
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:764
|
||||
#: src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:766
|
||||
#: src/neochatroom.cpp:770
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:770
|
||||
#: src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1689 src/neochatroom.cpp:1690
|
||||
#: src/neochatroom.cpp:1693 src/neochatroom.cpp:1694
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr ""
|
||||
@@ -1257,6 +1257,7 @@ msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:52 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
@@ -2538,12 +2539,12 @@ msgctxt "@action:title"
|
||||
msgid "Search Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:58
|
||||
#: src/qml/Page/SearchPage.qml:59
|
||||
#, kde-format
|
||||
msgid "Enter a text to start searching"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/SearchPage.qml:64
|
||||
#: src/qml/Page/SearchPage.qml:65
|
||||
#, kde-format
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@@ -76,7 +76,7 @@ private:
|
||||
|
||||
QQuickTextDocument *m_document;
|
||||
|
||||
NeoChatRoom *m_room = nullptr;
|
||||
QPointer<NeoChatRoom> m_room;
|
||||
bool completionVisible = false;
|
||||
|
||||
int m_cursorPosition;
|
||||
|
||||
@@ -605,6 +605,11 @@ QVariant MessageEventModel::data(const QModelIndex &idx, int role) const
|
||||
|
||||
if (role == SpecialMarksRole) {
|
||||
if (isPending) {
|
||||
// A pending event with an m.new_content key will be merged into the
|
||||
// original event so don't show.
|
||||
if (evt.contentJson().contains("m.new_content")) {
|
||||
return EventStatus::Hidden;
|
||||
}
|
||||
return pendingIt->deliveryStatus();
|
||||
}
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@ Name[es]=NeoChat
|
||||
Name[eu]=NeoChat
|
||||
Name[fi]=NeoChat
|
||||
Name[fr]=NeoChat
|
||||
Name[gl]=NeoChat
|
||||
Name[hu]=NeoChat
|
||||
Name[ia]=Neochat
|
||||
Name[id]=NeoChat
|
||||
@@ -51,6 +52,7 @@ Comment[es]=Un cliente para Matrix, el protocolo de comunicaciones descentraliza
|
||||
Comment[eu]=Matrix, deszentralizatutako komunikazio protokolorako, bezero bat
|
||||
Comment[fi]=Hajautetun Matrix-viestintäyhteyskäytännön asiakasohjelma
|
||||
Comment[fr]=Un client pour « Matrix », le protocole décentralisé de communications.
|
||||
Comment[gl]=Un cliente para Matrix, o protocolo de comunicación descentralizada
|
||||
Comment[hu]=Kliens a matrixhoz, a decentralizált kommunikációs protokollhoz
|
||||
Comment[ia]=Un cliente per Matrix, le protocollo de communication decentralisate
|
||||
Comment[id]=Sebuah klien untuk matrix, protokol komunikasi terdecentralisasi
|
||||
@@ -60,7 +62,7 @@ Comment[ka]=კლიენტი Matrix-სთვის, დეცენტრ
|
||||
Comment[ko]=Matrix, 분산 대화 프로토콜 클라이언트
|
||||
Comment[lt]=Matrix decentralizuoto bendravimo protokolo kliento programa
|
||||
Comment[nl]=Een client voor matrix, het gedecentraliseerde communicatieprotocol
|
||||
Comment[nn]=Klient for Matrix, den desentraliserte lynmeldingsprotokollen.
|
||||
Comment[nn]=Ein klient for Matrix – protokollen for desentralisert kommunikasjon
|
||||
Comment[pa]=ਮੈਟਰਿਕਸ, ਸਰਬ-ਸਾਂਝੇ ਸੰਚਾਰ ਪਰੋਟੋਕਾਲ, ਲਈ ਕਲਾਈਂਟ ਹੈ
|
||||
Comment[pl]=Program do obsługi matriksa, rozproszonego protokołu porozumiewania się
|
||||
Comment[pt]=Um cliente para o Matrix, o protocolo descentralizado de comunicações
|
||||
@@ -90,6 +92,7 @@ Name[es]=Nuevo mensaje
|
||||
Name[eu]=Mezu berria
|
||||
Name[fi]=Uusi viesti
|
||||
Name[fr]=Nouveau message
|
||||
Name[gl]=Nova mensaxe
|
||||
Name[hu]=Új üzenet
|
||||
Name[ia]=Nove message
|
||||
Name[id]=Pesan baru
|
||||
@@ -126,6 +129,7 @@ Comment[es]=Hay un mensaje nuevo
|
||||
Comment[eu]=Mezu berri bat dago
|
||||
Comment[fi]=Saapui uusi viesti
|
||||
Comment[fr]=Il y a un nouveau message
|
||||
Comment[gl]=Hai unha nova mensaxe
|
||||
Comment[hu]=Új üzenet érkezett
|
||||
Comment[ia]=Il ha un nove message
|
||||
Comment[id]=Ada pesan baru
|
||||
@@ -166,6 +170,7 @@ Name[es]=Nueva invitación
|
||||
Name[eu]=Gonbidapen berria
|
||||
Name[fi]=Uusi kutsu
|
||||
Name[fr]=Nouvelle invitation
|
||||
Name[gl]=Novo convite
|
||||
Name[ia]=Nove invitation
|
||||
Name[id]=Undangan Baru
|
||||
Name[ie]=Nov invitation
|
||||
@@ -173,6 +178,7 @@ Name[it]=Nuovo invito
|
||||
Name[ka]=ახალი მოსაწვევი
|
||||
Name[ko]=새 초대장
|
||||
Name[nl]=Nieuwe uitnodiging
|
||||
Name[nn]=Ny invitasjon
|
||||
Name[pa]=ਨਵਾਂ ਸੱਦਾ
|
||||
Name[pl]=Nowe zaproszenie
|
||||
Name[pt]=Novo Convite
|
||||
@@ -197,6 +203,7 @@ Comment[es]=Hay una nueva invitación a una sala
|
||||
Comment[eu]=Gela baterako gonbidapen berri bat dago
|
||||
Comment[fi]=Uusi kutsu huoneeseen
|
||||
Comment[fr]=Il y a une nouvelle invitation dans un salon.
|
||||
Comment[gl]=Tes un novo convite para unha sala
|
||||
Comment[ia]=Il ha un nove invitation a un sala
|
||||
Comment[id]=Ada undangan baru ke sebuah ruangan
|
||||
Comment[ie]=Vu have un nov invitation a un chambre
|
||||
@@ -204,6 +211,7 @@ Comment[it]=È presente un nuovo invito a una stanza
|
||||
Comment[ka]=გაქვთ ახალი ოთახის მოსაწვევი
|
||||
Comment[ko]=새로운 대화방 초대장을 받음
|
||||
Comment[nl]=Er is een nieuwe uitnodiging naar een room
|
||||
Comment[nn]=Du har ein ny invitasjon til eit rom
|
||||
Comment[pa]=ਰੂਮ ਲਈ ਨਵਾਂ ਸੱਦਾ ਹੈ
|
||||
Comment[pl]=Dostępna jest nowe zaproszenie do pokoju
|
||||
Comment[pt]=Existe um novo convite para uma sala
|
||||
|
||||
@@ -468,7 +468,7 @@ QString NeoChatRoom::eventToString(const RoomEvent &evt, Qt::TextFormat format,
|
||||
fileCaption = e.plainBody() + " | " + fileCaption;
|
||||
}
|
||||
textHandler.setData(fileCaption);
|
||||
return !fileCaption.isEmpty() ? textHandler.handleRecievePlainText() : i18n("a file");
|
||||
return !fileCaption.isEmpty() ? textHandler.handleRecievePlainText(Qt::PlainText, stripNewlines) : i18n("a file");
|
||||
}
|
||||
|
||||
QString body;
|
||||
@@ -604,8 +604,12 @@ QString NeoChatRoom::eventToString(const RoomEvent &evt, Qt::TextFormat format,
|
||||
[](const RoomNameEvent &e) {
|
||||
return (e.name().isEmpty()) ? i18n("cleared the room name") : i18n("set the room name to: %1", e.name().toHtmlEscaped());
|
||||
},
|
||||
[prettyPrint](const RoomTopicEvent &e) {
|
||||
return (e.topic().isEmpty()) ? i18n("cleared the topic") : i18n("set the topic to: %1", prettyPrint ? Quotient::prettyPrint(e.topic()) : e.topic());
|
||||
[prettyPrint, stripNewlines](const RoomTopicEvent &e) {
|
||||
return (e.topic().isEmpty()) ? i18n("cleared the topic")
|
||||
: i18n("set the topic to: %1",
|
||||
prettyPrint ? Quotient::prettyPrint(e.topic())
|
||||
: stripNewlines ? e.topic().replace(u'\n', u' ')
|
||||
: e.topic());
|
||||
},
|
||||
[](const RoomAvatarEvent &) {
|
||||
return i18n("changed the room avatar");
|
||||
|
||||
@@ -14,6 +14,7 @@ Name[es]=NeoChat
|
||||
Name[eu]=NeoChat
|
||||
Name[fi]=NeoChat
|
||||
Name[fr]=NeoChat
|
||||
Name[gl]=NeoChat
|
||||
Name[hu]=NeoChat
|
||||
Name[ia]=Neochat
|
||||
Name[id]=NeoChat
|
||||
@@ -50,6 +51,7 @@ Comment[es]=Buscar salas en NeoChat
|
||||
Comment[eu]=Bilatu gelak NeoChat-en
|
||||
Comment[fi]=Etsi huoneita NeoChatissä
|
||||
Comment[fr]=Trouver des salons dans NeoChat
|
||||
Comment[gl]=Atopa salas en NeoChat
|
||||
Comment[ia]=Trova salas in NeoChat
|
||||
Comment[id]=Cari ruangan di NeoChat
|
||||
Comment[ie]=Trovar chambres in NeoChat
|
||||
@@ -57,6 +59,7 @@ Comment[it]=Trova stanze in NeoChat
|
||||
Comment[ka]=იპოვე ოთახები NeoChat-ში
|
||||
Comment[ko]=NeoChat에서 대화방 찾기
|
||||
Comment[nl]=Rooms zoeken in NeoChat
|
||||
Comment[nn]=Finn rom i NeoChat
|
||||
Comment[pl]=Znajdź pokoje w NeoChat
|
||||
Comment[pt]=Procurar salas no NeoChat
|
||||
Comment[pt_BR]=Encontrar salas no NeoChat
|
||||
|
||||
@@ -6,6 +6,7 @@ import QtQuick.Controls 2.12 as QQC2
|
||||
import org.kde.kirigami 2.19 as Kirigami
|
||||
|
||||
Kirigami.Page {
|
||||
title: i18n("Loading…")
|
||||
Kirigami.LoadingPlaceholder {
|
||||
id: loadingIndicator
|
||||
anchors.centerIn: parent
|
||||
|
||||
@@ -28,6 +28,7 @@ Kirigami.ScrollablePage {
|
||||
header: RowLayout {
|
||||
Kirigami.SearchField {
|
||||
id: searchField
|
||||
focus: true
|
||||
Layout.topMargin: Kirigami.Units.smallSpacing
|
||||
Layout.leftMargin: Kirigami.Units.smallSpacing
|
||||
Layout.fillWidth: true
|
||||
|
||||
@@ -151,12 +151,6 @@ QString TextHandler::handleRecievePlainText(Qt::TextFormat inputFormat, const bo
|
||||
// Strip mx-reply if present.
|
||||
m_dataBuffer.remove(TextRegex::removeRichReply);
|
||||
|
||||
if (stripNewlines) {
|
||||
m_dataBuffer.replace(QStringLiteral("<br>"), QStringLiteral(" "));
|
||||
m_dataBuffer.replace(QStringLiteral("<br />"), QStringLiteral(" "));
|
||||
m_dataBuffer.replace(u'\n', QStringLiteral(" "));
|
||||
}
|
||||
|
||||
// Escaping then unescaping allows < and > to be maintained in a plain text string
|
||||
// otherwise markdownToHTML will strip what it thinks is a bad html tag entirely.
|
||||
if (inputFormat == Qt::PlainText) {
|
||||
@@ -169,6 +163,15 @@ QString TextHandler::handleRecievePlainText(Qt::TextFormat inputFormat, const bo
|
||||
*/
|
||||
m_dataBuffer = markdownToHTML(m_dataBuffer);
|
||||
|
||||
if (stripNewlines) {
|
||||
m_dataBuffer.replace(QStringLiteral("<br>\n"), QStringLiteral(" "));
|
||||
m_dataBuffer.replace(QStringLiteral("<br>"), QStringLiteral(" "));
|
||||
m_dataBuffer.replace(QStringLiteral("<br />\n"), QStringLiteral(" "));
|
||||
m_dataBuffer.replace(QStringLiteral("<br />"), QStringLiteral(" "));
|
||||
m_dataBuffer.replace(u'\n', QStringLiteral(" "));
|
||||
m_dataBuffer.replace(u'\u2028', " ");
|
||||
}
|
||||
|
||||
// Strip all tags/attributes except code blocks which will be escaped.
|
||||
QString outputString;
|
||||
nextTokenType();
|
||||
@@ -193,6 +196,7 @@ QString TextHandler::handleRecievePlainText(Qt::TextFormat inputFormat, const bo
|
||||
outputString = unescapeHtml(outputString);
|
||||
}
|
||||
|
||||
outputString = outputString.trimmed();
|
||||
return outputString;
|
||||
}
|
||||
|
||||
@@ -307,12 +311,13 @@ QString TextHandler::cleanAttributes(const QString &tag, const QString &tagStrin
|
||||
|
||||
if (isAllowedAttribute(tag, getAttributeType(nextAttribute))) {
|
||||
if (tag == QStringLiteral("img") && getAttributeType(nextAttribute) == QStringLiteral("src")) {
|
||||
QString attributeData = getAttributeData(nextAttribute).remove(u'"');
|
||||
QString attributeData = TextRegex::attributeData.match(getAttributeData(nextAttribute)).captured(1);
|
||||
if (isAllowedLink(attributeData, true)) {
|
||||
outputString.append(u' ' + nextAttribute);
|
||||
}
|
||||
} else if (tag == u'a' && getAttributeType(nextAttribute) == QStringLiteral("href")) {
|
||||
if (isAllowedLink(getAttributeData(nextAttribute).remove(u'"'))) {
|
||||
QString attributeData = TextRegex::attributeData.match(getAttributeData(nextAttribute)).captured(1);
|
||||
if (isAllowedLink(attributeData)) {
|
||||
outputString.append(u' ' + nextAttribute);
|
||||
}
|
||||
} else if (tag == QStringLiteral("code") && getAttributeType(nextAttribute) == QStringLiteral("class")) {
|
||||
@@ -370,6 +375,7 @@ QString TextHandler::unescapeHtml(QString stringIn)
|
||||
stringIn.replace(QStringLiteral("<"), QStringLiteral("<"));
|
||||
stringIn.replace(QStringLiteral(">"), QStringLiteral(">"));
|
||||
stringIn.replace(QStringLiteral("&"), QStringLiteral("&"));
|
||||
stringIn.replace(QStringLiteral("""), QStringLiteral("\""));
|
||||
return stringIn;
|
||||
}
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
namespace TextRegex
|
||||
{
|
||||
static const QRegularExpression endTagType{QStringLiteral("(>| )")};
|
||||
static const QRegularExpression attributeData{QStringLiteral("['\"](.*?)['\"]")};
|
||||
static const QRegularExpression removeReply{QStringLiteral("> <.*?>.*?\\n\\n"), QRegularExpression::DotMatchesEverythingOption};
|
||||
static const QRegularExpression removeRichReply{QStringLiteral("<mx-reply>.*?</mx-reply>"), QRegularExpression::DotMatchesEverythingOption};
|
||||
static const QRegularExpression codePill{QStringLiteral("<pre><code[^>]*>(.*?)</code></pre>"), QRegularExpression::DotMatchesEverythingOption};
|
||||
@@ -110,7 +111,7 @@ private:
|
||||
|
||||
QString m_dataBuffer;
|
||||
int m_pos;
|
||||
Type m_nextTokenType;
|
||||
Type m_nextTokenType = Text;
|
||||
QString m_nextToken;
|
||||
|
||||
void next();
|
||||
|
||||
Reference in New Issue
Block a user