Compare commits
46 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9332910bcb | ||
|
|
157c098af3 | ||
|
|
9fe134e7f0 | ||
|
|
46aaab3fb0 | ||
|
|
a5b37a78a0 | ||
|
|
59699abb94 | ||
|
|
3cc0d89ee5 | ||
|
|
96e83fc71b | ||
|
|
d89019d752 | ||
|
|
51565dfdd2 | ||
|
|
e1d09171d5 | ||
|
|
f86572f880 | ||
|
|
d7451834f3 | ||
|
|
a4767cea7d | ||
|
|
4c43869fd4 | ||
|
|
e603664521 | ||
|
|
369242ab31 | ||
|
|
013773d465 | ||
|
|
20b17a58d3 | ||
|
|
1c4bb79347 | ||
|
|
6d2b49f3eb | ||
|
|
e3d5867da6 | ||
|
|
a046e3ed27 | ||
|
|
5b935c1d33 | ||
|
|
fe6bc5a36e | ||
|
|
c085be4f6e | ||
|
|
1f73a9dc90 | ||
|
|
63206ef1dd | ||
|
|
0d286db0c2 | ||
|
|
7d3f478a74 | ||
|
|
6df2ebd1eb | ||
|
|
252fb6eb21 | ||
|
|
5873092356 | ||
|
|
30822003d1 | ||
|
|
52ae237eb7 | ||
|
|
ee02abfe37 | ||
|
|
f0de235f37 | ||
|
|
9e9fe6d275 | ||
|
|
f4ca5f0f34 | ||
|
|
5f240fa05c | ||
|
|
1e29eca59a | ||
|
|
1f71ec3bf8 | ||
|
|
64c5ad88f6 | ||
|
|
fb5a3c1c5c | ||
|
|
4a5a83f94a | ||
|
|
133edc249f |
@@ -8,8 +8,8 @@ cmake_minimum_required(VERSION 3.16)
|
|||||||
|
|
||||||
# KDE Applications version, managed by release script.
|
# KDE Applications version, managed by release script.
|
||||||
set(RELEASE_SERVICE_VERSION_MAJOR "24")
|
set(RELEASE_SERVICE_VERSION_MAJOR "24")
|
||||||
set(RELEASE_SERVICE_VERSION_MINOR "11")
|
set(RELEASE_SERVICE_VERSION_MINOR "12")
|
||||||
set(RELEASE_SERVICE_VERSION_MICRO "90")
|
set(RELEASE_SERVICE_VERSION_MICRO "1")
|
||||||
set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
|
set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
|
||||||
|
|
||||||
project(NeoChat VERSION ${RELEASE_SERVICE_VERSION})
|
project(NeoChat VERSION ${RELEASE_SERVICE_VERSION})
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ buildscript {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:7.4.1'
|
classpath 'com.android.tools.build:gradle:8.6.0'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ private Q_SLOTS:
|
|||||||
void receiveRichEdited();
|
void receiveRichEdited();
|
||||||
void receiveLineSeparator();
|
void receiveLineSeparator();
|
||||||
void receiveRichCodeUrl();
|
void receiveRichCodeUrl();
|
||||||
|
void receiveRichColor();
|
||||||
|
|
||||||
void componentOutput_data();
|
void componentOutput_data();
|
||||||
void componentOutput();
|
void componentOutput();
|
||||||
@@ -520,6 +521,25 @@ void TextHandlerTest::receiveRichCodeUrl()
|
|||||||
QCOMPARE(testTextHandler.handleRecieveRichText(), input);
|
QCOMPARE(testTextHandler.handleRecieveRichText(), input);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void TextHandlerTest::receiveRichColor()
|
||||||
|
{
|
||||||
|
const QString testInputString = QStringLiteral(
|
||||||
|
"<span data-mx-color=\"#ff00be\">¯</span><span data-mx-color=\"#ff3b1d\">\\</span><span data-mx-color=\"#ffa600\">_</span><span "
|
||||||
|
"data-mx-color=\"#64d200\">(</span><span data-mx-color=\"#00e261\">ツ</span><span data-mx-color=\"#00e7ff\">)</span><span "
|
||||||
|
"data-mx-color=\"#00e1ff\">_</span><span data-mx-color=\"#00bdff\">/</span><span data-mx-color=\"#ff60ff\">¯</span>");
|
||||||
|
const QString testOutputString = QStringLiteral(
|
||||||
|
"<span style=\"color: #ff00be;\">¯</span><span style=\"color: #ff3b1d;\">\\</span><span style=\"color: #ffa600;\">_</span><span style=\"color: "
|
||||||
|
"#64d200;\">(</span><span style=\"color: #00e261;\">ツ</span><span style=\"color: #00e7ff;\">)</span><span style=\"color: #00e1ff;\">_</span><span "
|
||||||
|
"style=\"color: #00bdff;\">/</span><span style=\"color: #ff60ff;\">¯</span>");
|
||||||
|
|
||||||
|
TextHandler testTextHandler;
|
||||||
|
testTextHandler.setData(testInputString);
|
||||||
|
|
||||||
|
qInfo() << testTextHandler.handleRecieveRichText();
|
||||||
|
|
||||||
|
QCOMPARE(testTextHandler.handleRecieveRichText(), testOutputString);
|
||||||
|
}
|
||||||
|
|
||||||
void TextHandlerTest::componentOutput_data()
|
void TextHandlerTest::componentOutput_data()
|
||||||
{
|
{
|
||||||
QTest::addColumn<QString>("testInputString");
|
QTest::addColumn<QString>("testInputString");
|
||||||
|
|||||||
@@ -56,10 +56,13 @@
|
|||||||
<summary xml:lang="ca-valencia">Xat a Matrix</summary>
|
<summary xml:lang="ca-valencia">Xat a Matrix</summary>
|
||||||
<summary xml:lang="de">Über Matrix unterhalten</summary>
|
<summary xml:lang="de">Über Matrix unterhalten</summary>
|
||||||
<summary xml:lang="en-GB">Chat on Matrix</summary>
|
<summary xml:lang="en-GB">Chat on Matrix</summary>
|
||||||
|
<summary xml:lang="eo">Babilo en Matrix</summary>
|
||||||
<summary xml:lang="es">Charle en Matrix</summary>
|
<summary xml:lang="es">Charle en Matrix</summary>
|
||||||
<summary xml:lang="eu">Berriketa Matrix-en</summary>
|
<summary xml:lang="eu">Berriketa Matrix-en</summary>
|
||||||
|
<summary xml:lang="fi">Keskustelu Matrixissä</summary>
|
||||||
<summary xml:lang="fr">Discuter sur Matrix</summary>
|
<summary xml:lang="fr">Discuter sur Matrix</summary>
|
||||||
<summary xml:lang="gl">Charlar en Matrix</summary>
|
<summary xml:lang="gl">Charlar en Matrix</summary>
|
||||||
|
<summary xml:lang="he">התכתבות דרך Matrix</summary>
|
||||||
<summary xml:lang="hu">Csevegés Matrixon</summary>
|
<summary xml:lang="hu">Csevegés Matrixon</summary>
|
||||||
<summary xml:lang="ia">Conversation en ditecto sur Matrix</summary>
|
<summary xml:lang="ia">Conversation en ditecto sur Matrix</summary>
|
||||||
<summary xml:lang="it">Chat su Matrix</summary>
|
<summary xml:lang="it">Chat su Matrix</summary>
|
||||||
@@ -116,7 +119,7 @@
|
|||||||
<p xml:lang="eu">«NeoChat»ek «Matrix» zehaztapenaren ezaugarri guztiak eskaintzen dituen aplikazio bat izan nahi du. Beraz, egungo zehaztapen egonkorrean dagoen guztiaren euskarria du, VoIP, hariak eta muturren artean zifratzeko salbuespen nabarmenekin. Badira beste ez-betetze txikiago batzuk, «Matrix»en zehaztapena etengabe eboluzioan dagoelako, baina azken helburua zehaztapen osoaren euskarria ematea izaten jarraitzen du.</p>
|
<p xml:lang="eu">«NeoChat»ek «Matrix» zehaztapenaren ezaugarri guztiak eskaintzen dituen aplikazio bat izan nahi du. Beraz, egungo zehaztapen egonkorrean dagoen guztiaren euskarria du, VoIP, hariak eta muturren artean zifratzeko salbuespen nabarmenekin. Badira beste ez-betetze txikiago batzuk, «Matrix»en zehaztapena etengabe eboluzioan dagoelako, baina azken helburua zehaztapen osoaren euskarria ematea izaten jarraitzen du.</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="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="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="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 é fornecer compatibilidade coa especificación completa.</p>
|
||||||
<p xml:lang="he">NeoChat מתיימר להיות יישום עתיר יכולות לפי מפרט Matrix. כיוון שזה ייעודו, כל מה שבמפרט היציב עם חריגות משמעותיות כגון VoIP, שרשורים ועוד מגוון היבטים של הצפנה מקצה לקצה נתמכים גם הם. יש מספר השמטות קטן עקב העובדה שהמפרט של Matrix ממשיך להתפתח אך המטרה היא להמשיך לספק תמיכה בסופו של דבר לכל המפרט.</p>
|
<p xml:lang="he">NeoChat מתיימר להיות יישום עתיר יכולות לפי מפרט Matrix. כיוון שזה ייעודו, כל מה שבמפרט היציב עם חריגות משמעותיות כגון VoIP, שרשורים ועוד מגוון היבטים של הצפנה מקצה לקצה נתמכים גם הם. יש מספר השמטות קטן עקב העובדה שהמפרט של Matrix ממשיך להתפתח אך המטרה היא להמשיך לספק תמיכה בסופו של דבר לכל המפרט.</p>
|
||||||
<p xml:lang="hu">A NeoChat célja, hogy a Matrix specifikációnak megfelelő teljes funkcionalitású alkalmazás legyen. Mint ilyen, a jelenlegi stabil specifikáció támogatott a VoIP, a szálak és a végpontok közötti titkosítás egyes elemeinek kivételével. Van még néhány kisebb hiányosság annak köszönhetően, hogy a Matrix specifikáció folyamatosan fejlődik, de végső cél a teljes specifikáció megvalósítása.</p>
|
<p xml:lang="hu">A NeoChat célja, hogy a Matrix specifikációnak megfelelő teljes funkcionalitású alkalmazás legyen. Mint ilyen, a jelenlegi stabil specifikáció támogatott a VoIP, a szálak és a végpontok közötti titkosítás egyes elemeinek kivételével. Van még néhány kisebb hiányosság annak köszönhetően, hogy a Matrix specifikáció folyamatosan fejlődik, de végső cél a teljes specifikáció megvalósítása.</p>
|
||||||
<p xml:lang="ia">NeoChat aspira a esser un application plenmente 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="ia">NeoChat aspira a esser un application plenmente 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>
|
||||||
@@ -444,6 +447,8 @@
|
|||||||
<content_attribute id="social-chat">intense</content_attribute>
|
<content_attribute id="social-chat">intense</content_attribute>
|
||||||
</content_rating>
|
</content_rating>
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="24.12.1" date="2025-01-09"/>
|
||||||
|
<release version="24.12.0" date="2024-12-12"/>
|
||||||
<release version="24.08.3" date="2024-11-07"/>
|
<release version="24.08.3" date="2024-11-07"/>
|
||||||
<release version="24.08.2" date="2024-10-10"/>
|
<release version="24.08.2" date="2024-10-10"/>
|
||||||
<release version="24.08.1" date="2024-09-12"/>
|
<release version="24.08.1" date="2024-09-12"/>
|
||||||
|
|||||||
@@ -88,14 +88,18 @@ GenericName[x-test]=xxMatrix Clientxx
|
|||||||
GenericName[zh_CN]=Matrix 客户端
|
GenericName[zh_CN]=Matrix 客户端
|
||||||
GenericName[zh_TW]=Matrix 用戶端
|
GenericName[zh_TW]=Matrix 用戶端
|
||||||
Comment=Chat on Matrix
|
Comment=Chat on Matrix
|
||||||
|
Comment[ar]=دردش على ماتركس
|
||||||
Comment[ca]=Xat a Matrix
|
Comment[ca]=Xat a Matrix
|
||||||
Comment[ca@valencia]=Xat a Matrix
|
Comment[ca@valencia]=Xat a Matrix
|
||||||
Comment[de]=Über Matrix unterhalten
|
Comment[de]=Über Matrix unterhalten
|
||||||
Comment[en_GB]=Chat on Matrix
|
Comment[en_GB]=Chat on Matrix
|
||||||
|
Comment[eo]=Babilo en Matrix
|
||||||
Comment[es]=Chat en Matrix
|
Comment[es]=Chat en Matrix
|
||||||
Comment[eu]=Berriketa Matrix-en
|
Comment[eu]=Berriketa Matrix-en
|
||||||
|
Comment[fi]=Keskustele Matrixissä
|
||||||
Comment[fr]=Clavarder sur Matrix
|
Comment[fr]=Clavarder sur Matrix
|
||||||
Comment[gl]=Charle en Matrix
|
Comment[gl]=Charle en Matrix
|
||||||
|
Comment[he]=התכתבות דרך Matrix
|
||||||
Comment[hu]=Csevegés Matrixon
|
Comment[hu]=Csevegés Matrixon
|
||||||
Comment[ia]=Conversation en ditecto sur Matrix
|
Comment[ia]=Conversation en ditecto sur Matrix
|
||||||
Comment[it]= su Matrix
|
Comment[it]= su Matrix
|
||||||
@@ -104,7 +108,7 @@ Comment[pl]=Rozmawiaj na Matriksie
|
|||||||
Comment[sl]=Klepet na Matrixu
|
Comment[sl]=Klepet na Matrixu
|
||||||
Comment[sv]=Chatta på Matrix
|
Comment[sv]=Chatta på Matrix
|
||||||
Comment[ta]=மேட்ரிக்ஸில் உரையாட உதவும்
|
Comment[ta]=மேட்ரிக்ஸில் உரையாட உதவும்
|
||||||
Comment[tr]=Matrix Üzerinde Sohbet Et
|
Comment[tr]=Matrix üzerinde sohbet edin
|
||||||
Comment[uk]=Спілкування у Matrix
|
Comment[uk]=Спілкування у Matrix
|
||||||
Comment[zh_TW]=在 Matrix 上聊天
|
Comment[zh_TW]=在 Matrix 上聊天
|
||||||
MimeType=x-scheme-handler/matrix;
|
MimeType=x-scheme-handler/matrix;
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
# Copyright (C) 2024 This file is copyright:
|
# Copyright (C) 2024 This file is copyright:
|
||||||
# This file is distributed under the same license as the neochat package.
|
# This file is distributed under the same license as the neochat package.
|
||||||
|
# SPDX-FileCopyrightText: 2022, 2023, 2024, 2025 Zayed Al-Saidi <zayed.alsaidi@gmail.com>
|
||||||
#
|
#
|
||||||
# SPDX-FileCopyrightText: 2022, 2023, 2024 Zayed Al-Saidi <zayed.alsaidi@gmail.com>
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-10-10 08:55+0400\n"
|
"PO-Revision-Date: 2024-12-12 08:15+0400\n"
|
||||||
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
|
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
|
||||||
"Language-Team: ar\n"
|
"Language-Team: ar\n"
|
||||||
"Language: ar\n"
|
"Language: ar\n"
|
||||||
@@ -337,7 +337,7 @@ msgstr "العضوّ"
|
|||||||
#: src/enums/powerlevel.cpp:12
|
#: src/enums/powerlevel.cpp:12
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Moderator"
|
msgid "Moderator"
|
||||||
msgstr "الوسيط"
|
msgstr "المشرف"
|
||||||
|
|
||||||
#: src/enums/powerlevel.cpp:14
|
#: src/enums/powerlevel.cpp:14
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -869,12 +869,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "المقصد"
|
msgstr "المقصد"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "خطأ شبكي: %1"
|
msgstr "خطأ شبكي: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "فشل الولوج: %1"
|
msgstr "فشل الولوج: %1"
|
||||||
@@ -1088,10 +1088,9 @@ msgid "Settings"
|
|||||||
msgstr "إعدادات"
|
msgstr "إعدادات"
|
||||||
|
|
||||||
#: src/main.cpp:143
|
#: src/main.cpp:143
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Share a URL to Matrix"
|
|
||||||
msgid "Chat on Matrix"
|
msgid "Chat on Matrix"
|
||||||
msgstr "شارِك رابط على مارتكس"
|
msgstr "دردش على ماتركس"
|
||||||
|
|
||||||
#: src/main.cpp:145
|
#: src/main.cpp:145
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -2626,15 +2625,14 @@ msgid "Only show spaces"
|
|||||||
msgstr "أظهر الفضاءات فقط"
|
msgstr "أظهر الفضاءات فقط"
|
||||||
|
|
||||||
#: src/qml/ExploreRoomsPage.qml:95
|
#: src/qml/ExploreRoomsPage.qml:95
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Enter a room address"
|
|
||||||
msgid "Enter a Room Manually"
|
msgid "Enter a Room Manually"
|
||||||
msgstr "أدخل عنوان الغرفة"
|
msgstr "ادخل الغرفة يدويًا"
|
||||||
|
|
||||||
#: src/qml/ExploreRoomsPage.qml:103
|
#: src/qml/ExploreRoomsPage.qml:103
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "If you already know a room's address or alias, and it isn't shown here."
|
msgid "If you already know a room's address or alias, and it isn't shown here."
|
||||||
msgstr ""
|
msgstr "إذا كنت تعرف بالفعل عنوان الغرفة أو اسمها المستعار، ولم يتم عرضه هنا."
|
||||||
|
|
||||||
#: src/qml/ExploreRoomsPage.qml:115
|
#: src/qml/ExploreRoomsPage.qml:115
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -3044,7 +3042,7 @@ msgstr "شارك"
|
|||||||
#, kde-format
|
#, kde-format
|
||||||
msgctxt "@title"
|
msgctxt "@title"
|
||||||
msgid "Manually Enter a Room"
|
msgid "Manually Enter a Room"
|
||||||
msgstr ""
|
msgstr "دخول الغرفة يدويًا"
|
||||||
|
|
||||||
#: src/qml/ManualRoomDialog.qml:38 src/qml/ManualUserDialog.qml:38
|
#: src/qml/ManualRoomDialog.qml:38 src/qml/ManualUserDialog.qml:38
|
||||||
#: src/qml/SelectParentDialog.qml:37
|
#: src/qml/SelectParentDialog.qml:37
|
||||||
@@ -3894,7 +3892,7 @@ msgstr "نسخ الرابط"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "بدّل المستخدم"
|
msgstr "بدّل المستخدم"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "إعدادات الفتح"
|
msgstr "إعدادات الفتح"
|
||||||
@@ -4072,47 +4070,47 @@ msgstr "ألغى الطرف البعيد جلسة التَثَبّت بسبب أ
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "جلسة التَثَبّت ألغيت لخطأ مجهول."
|
msgstr "جلسة التَثَبّت ألغيت لخطأ مجهول."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "لا يوجد خادم."
|
msgstr "لا يوجد خادم."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "التحقق من توافر الخادم."
|
msgstr "التحقق من توافر الخادم."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "هذا ليس خادما صالحا"
|
msgstr "هذا ليس خادما صالحا"
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "عطل التسجيل لهذا الخادم."
|
msgstr "عطل التسجيل لهذا الخادم."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "لا يوجد اسم المستخدم."
|
msgstr "لا يوجد اسم المستخدم."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "التحقق من توفر اسم المستخدم."
|
msgstr "التحقق من توفر اسم المستخدم."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "اسم المستخدم غير متوفر."
|
msgstr "اسم المستخدم غير متوفر."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "تابع"
|
msgstr "تابع"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "يعمل"
|
msgstr "يعمل"
|
||||||
@@ -4728,7 +4726,7 @@ msgstr "النّشاط"
|
|||||||
#, kde-format
|
#, kde-format
|
||||||
msgctxt "@info"
|
msgctxt "@info"
|
||||||
msgid "Rooms with unread notifications will be shown first"
|
msgid "Rooms with unread notifications will be shown first"
|
||||||
msgstr ""
|
msgstr "ستعرض الغرف التي تحتوي على إشعارات غير مقروءة أولاً"
|
||||||
|
|
||||||
#: src/settings/NeoChatGeneralPage.qml:105
|
#: src/settings/NeoChatGeneralPage.qml:105
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -4773,17 +4771,16 @@ msgid "Editor"
|
|||||||
msgstr "المحرّر"
|
msgstr "المحرّر"
|
||||||
|
|
||||||
#: src/settings/NeoChatGeneralPage.qml:204
|
#: src/settings/NeoChatGeneralPage.qml:204
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Send message"
|
|
||||||
msgctxt "@option:radio"
|
msgctxt "@option:radio"
|
||||||
msgid "Send messages with Enter"
|
msgid "Send messages with Enter"
|
||||||
msgstr "أرسل رسالة"
|
msgstr "أرسل رسالة مع عند الضغط على زر الإدخال"
|
||||||
|
|
||||||
#: src/settings/NeoChatGeneralPage.qml:215
|
#: src/settings/NeoChatGeneralPage.qml:215
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgctxt "@option:radio"
|
msgctxt "@option:radio"
|
||||||
msgid "Send messages with Ctrl+Enter"
|
msgid "Send messages with Ctrl+Enter"
|
||||||
msgstr ""
|
msgstr "أرسل رسالة مع عند الضغط على Ctrl+Enter"
|
||||||
|
|
||||||
#: src/settings/NeoChatGeneralPage.qml:231
|
#: src/settings/NeoChatGeneralPage.qml:231
|
||||||
#, kde-format
|
#, kde-format
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2023-12-12 01:02+0100\n"
|
"PO-Revision-Date: 2023-12-12 01:02+0100\n"
|
||||||
"Last-Translator: Enol P. <enolp@softastur.org>\n"
|
"Last-Translator: Enol P. <enolp@softastur.org>\n"
|
||||||
"Language-Team: Asturian <alministradores@softastur.org>\n"
|
"Language-Team: Asturian <alministradores@softastur.org>\n"
|
||||||
@@ -860,12 +860,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3839,7 +3839,7 @@ msgstr ""
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4012,47 +4012,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2022-07-22 12:13+0400\n"
|
"PO-Revision-Date: 2022-07-22 12:13+0400\n"
|
||||||
"Last-Translator: Kheyyam <xxmn77@gmail.com>\n"
|
"Last-Translator: Kheyyam <xxmn77@gmail.com>\n"
|
||||||
"Language-Team: Azerbaijani <kde-i18n-doc@kde.org>\n"
|
"Language-Team: Azerbaijani <kde-i18n-doc@kde.org>\n"
|
||||||
@@ -960,12 +960,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Dəvət göndərmək"
|
msgstr "Dəvət göndərmək"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Şəbəkə xətası: %1"
|
msgstr "Şəbəkə xətası: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Giriş alınmadı: %1"
|
msgstr "Giriş alınmadı: %1"
|
||||||
@@ -4290,7 +4290,7 @@ msgstr "Kopyalamaq"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Settings"
|
#| msgid "Settings"
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
@@ -4466,52 +4466,52 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Homeserver:"
|
#| msgid "Homeserver:"
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Əsas server:"
|
msgstr "Əsas server:"
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No name"
|
#| msgid "No name"
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Ad yoxdur"
|
msgstr "Ad yoxdur"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No users available"
|
#| msgid "No users available"
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "İstifadəçilər yoxdur"
|
msgstr "İstifadəçilər yoxdur"
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "@action:button"
|
#| msgctxt "@action:button"
|
||||||
#| msgid "Continue"
|
#| msgid "Continue"
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Davam etmək"
|
msgstr "Davam etmək"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-10 11:29+0100\n"
|
"PO-Revision-Date: 2024-11-10 11:29+0100\n"
|
||||||
"Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
|
"Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
|
||||||
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
|
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
|
||||||
@@ -871,12 +871,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Destinació"
|
msgstr "Destinació"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Error de la xarxa: %1"
|
msgstr "Error de la xarxa: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Ha fallat l'inici de la sessió: %1"
|
msgstr "Ha fallat l'inici de la sessió: %1"
|
||||||
@@ -3896,7 +3896,7 @@ msgstr "Copia l'enllaç"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Commuta d'usuari"
|
msgstr "Commuta d'usuari"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Obre la configuració"
|
msgstr "Obre la configuració"
|
||||||
@@ -4102,47 +4102,47 @@ msgid "The session verification was canceled due to an unknown error."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"La verificació de la sessió s'ha cancel·lat a causa d'un error desconegut."
|
"La verificació de la sessió s'ha cancel·lat a causa d'un error desconegut."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Sense servidor."
|
msgstr "Sense servidor."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "S'està comprovant la disponibilitat del servidor."
|
msgstr "S'està comprovant la disponibilitat del servidor."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Aquest no és un servidor vàlid."
|
msgstr "Aquest no és un servidor vàlid."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "El registre en aquest servidor està desactivat."
|
msgstr "El registre en aquest servidor està desactivat."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Sense nom d'usuari."
|
msgstr "Sense nom d'usuari."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "S'està comprovant la disponibilitat del nom d'usuari."
|
msgstr "S'està comprovant la disponibilitat del nom d'usuari."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Aquest nom d'usuari no està disponible."
|
msgstr "Aquest nom d'usuari no està disponible."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continua"
|
msgstr "Continua"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "En funcionament"
|
msgstr "En funcionament"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-10 11:29+0100\n"
|
"PO-Revision-Date: 2024-11-10 11:29+0100\n"
|
||||||
"Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
|
"Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
|
||||||
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
|
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
|
||||||
@@ -873,12 +873,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Destinació"
|
msgstr "Destinació"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "S'ha produït un error de la xarxa: %1"
|
msgstr "S'ha produït un error de la xarxa: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "No s'ha pogut fer l'inici de la sessió: %1"
|
msgstr "No s'ha pogut fer l'inici de la sessió: %1"
|
||||||
@@ -3898,7 +3898,7 @@ msgstr "Copia l'enllaç"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Canvia d'usuari"
|
msgstr "Canvia d'usuari"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Obri la configuració"
|
msgstr "Obri la configuració"
|
||||||
@@ -4104,47 +4104,47 @@ msgid "The session verification was canceled due to an unknown error."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"La verificació de la sessió s'ha cancel·lat a causa d'un error desconegut."
|
"La verificació de la sessió s'ha cancel·lat a causa d'un error desconegut."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Sense servidor."
|
msgstr "Sense servidor."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "S'està comprovant la disponibilitat del servidor."
|
msgstr "S'està comprovant la disponibilitat del servidor."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Este no és un servidor vàlid."
|
msgstr "Este no és un servidor vàlid."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "El registre en este servidor està desactivat."
|
msgstr "El registre en este servidor està desactivat."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Sense nom d'usuari."
|
msgstr "Sense nom d'usuari."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "S'està comprovant la disponibilitat del nom d'usuari."
|
msgstr "S'està comprovant la disponibilitat del nom d'usuari."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Este nom d'usuari no està disponible."
|
msgstr "Este nom d'usuari no està disponible."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continua"
|
msgstr "Continua"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "En funcionament"
|
msgstr "En funcionament"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-09-17 15:24+0200\n"
|
"PO-Revision-Date: 2024-09-17 15:24+0200\n"
|
||||||
"Last-Translator: Vit Pelcak <vit@pelcak.org>\n"
|
"Last-Translator: Vit Pelcak <vit@pelcak.org>\n"
|
||||||
"Language-Team: Czech <kde-i18n-doc@kde.org>\n"
|
"Language-Team: Czech <kde-i18n-doc@kde.org>\n"
|
||||||
@@ -861,12 +861,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Cíl"
|
msgstr "Cíl"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Chyba sítě: %1"
|
msgstr "Chyba sítě: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Přihlášení selhalo: %1"
|
msgstr "Přihlášení selhalo: %1"
|
||||||
@@ -3848,7 +3848,7 @@ msgstr "Kopírovat odkaz"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Přepnout uživatele"
|
msgstr "Přepnout uživatele"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Otevřít nastavení"
|
msgstr "Otevřít nastavení"
|
||||||
@@ -4021,47 +4021,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Pokračovat"
|
msgstr "Pokračovat"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Pracuje"
|
msgstr "Pracuje"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2020-12-13 17:28+0100\n"
|
"PO-Revision-Date: 2020-12-13 17:28+0100\n"
|
||||||
"Last-Translator: Martin Schlander <mschlander@opensuse.org>\n"
|
"Last-Translator: Martin Schlander <mschlander@opensuse.org>\n"
|
||||||
"Language-Team: Danish <kde-i18n-doc@kde.org>\n"
|
"Language-Team: Danish <kde-i18n-doc@kde.org>\n"
|
||||||
@@ -901,13 +901,13 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Network Error"
|
#| msgid "Network Error"
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Netværksfejl"
|
msgstr "Netværksfejl"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Login Failed"
|
#| msgid "Login Failed"
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
@@ -4051,7 +4051,7 @@ msgstr "Kopiér"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Settings"
|
#| msgid "Settings"
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
@@ -4226,48 +4226,48 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No name"
|
#| msgid "No name"
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Intet navn"
|
msgstr "Intet navn"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-25 19:26+0100\n"
|
"PO-Revision-Date: 2024-11-25 19:26+0100\n"
|
||||||
"Last-Translator: Johannes Obermayr <johannesobermayr@gmx.de>\n"
|
"Last-Translator: Johannes Obermayr <johannesobermayr@gmx.de>\n"
|
||||||
"Language-Team: German <kde-i18n-de@kde.org>\n"
|
"Language-Team: German <kde-i18n-de@kde.org>\n"
|
||||||
@@ -869,12 +869,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Ziel"
|
msgstr "Ziel"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Netzwerkfehler: %1"
|
msgstr "Netzwerkfehler: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Anmeldung fehlgeschlagen: %1"
|
msgstr "Anmeldung fehlgeschlagen: %1"
|
||||||
@@ -3910,7 +3910,7 @@ msgstr "Verknüpfung kopieren"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Benutzer wechseln"
|
msgstr "Benutzer wechseln"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Einstellungen öffnen"
|
msgstr "Einstellungen öffnen"
|
||||||
@@ -4120,47 +4120,47 @@ msgid "The session verification was canceled due to an unknown error."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Die Sitzungsverifizierung wurde wegen eines unbekannten Fehlers abgebrochen."
|
"Die Sitzungsverifizierung wurde wegen eines unbekannten Fehlers abgebrochen."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Kein Server."
|
msgstr "Kein Server."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Die Verfügbarkeit des Servers wird geprüft."
|
msgstr "Die Verfügbarkeit des Servers wird geprüft."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Das ist kein gültiger Server."
|
msgstr "Das ist kein gültiger Server."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Kein Benutzername."
|
msgstr "Kein Benutzername."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Die Verfügbarkeit des Benutzernamens wird geprüft."
|
msgstr "Die Verfügbarkeit des Benutzernamens wird geprüft."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Dieser Benutzername ist nicht verfügbar."
|
msgstr "Dieser Benutzername ist nicht verfügbar."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Fortsetzen"
|
msgstr "Fortsetzen"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Arbeitend"
|
msgstr "Arbeitend"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-09-20 13:25+0300\n"
|
"PO-Revision-Date: 2024-09-20 13:25+0300\n"
|
||||||
"Last-Translator: Antonis Geralis <capoiosct@gmail.com>\n"
|
"Last-Translator: Antonis Geralis <capoiosct@gmail.com>\n"
|
||||||
"Language-Team: Greek <kde-i18n-el@kde.org>\n"
|
"Language-Team: Greek <kde-i18n-el@kde.org>\n"
|
||||||
@@ -926,12 +926,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Προορισμός"
|
msgstr "Προορισμός"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Σφάλμα δικτύου: %1"
|
msgstr "Σφάλμα δικτύου: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Αποτυχία σύνδεσης: %1"
|
msgstr "Αποτυχία σύνδεσης: %1"
|
||||||
@@ -4052,7 +4052,7 @@ msgstr "Αντιγραφή συνδέσμου"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Εναλλαγή χρήστη"
|
msgstr "Εναλλαγή χρήστη"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Άνοιγμα ρυθμίσεων"
|
msgstr "Άνοιγμα ρυθμίσεων"
|
||||||
@@ -4253,52 +4253,52 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "Η επαλήθευση συνεδρίας ακυρώθηκε από άγνωστο σφάλμα."
|
msgstr "Η επαλήθευση συνεδρίας ακυρώθηκε από άγνωστο σφάλμα."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "@title:window"
|
#| msgctxt "@title:window"
|
||||||
#| msgid "Add server"
|
#| msgid "Add server"
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Προσθήκη εξυπηρετητή"
|
msgstr "Προσθήκη εξυπηρετητή"
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "The entered text is not a valid url"
|
#| msgid "The entered text is not a valid url"
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Το δοσμένο κείμενο δεν είναι έγκυρο url"
|
msgstr "Το δοσμένο κείμενο δεν είναι έγκυρο url"
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No name"
|
#| msgid "No name"
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Χωρίς όνομα"
|
msgstr "Χωρίς όνομα"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No users available"
|
#| msgid "No users available"
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Δεν υπάρχουν διαθέσιμοι χρήστες"
|
msgstr "Δεν υπάρχουν διαθέσιμοι χρήστες"
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Συνέχεια"
|
msgstr "Συνέχεια"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-16 15:40+0000\n"
|
"PO-Revision-Date: 2024-11-16 15:40+0000\n"
|
||||||
"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
|
"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
|
||||||
"Language-Team: British English\n"
|
"Language-Team: British English\n"
|
||||||
@@ -865,12 +865,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Destination"
|
msgstr "Destination"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Network Error: %1"
|
msgstr "Network Error: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Login Failed: %1"
|
msgstr "Login Failed: %1"
|
||||||
@@ -3876,7 +3876,7 @@ msgstr "Copy link"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Switch User"
|
msgstr "Switch User"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Open Settings"
|
msgstr "Open Settings"
|
||||||
@@ -4077,47 +4077,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "The session verification was cancelled due to an unknown error."
|
msgstr "The session verification was cancelled due to an unknown error."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "No server."
|
msgstr "No server."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Checking Server availability."
|
msgstr "Checking Server availability."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "This is not a valid server."
|
msgstr "This is not a valid server."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Registration for this server is disabled."
|
msgstr "Registration for this server is disabled."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "No username."
|
msgstr "No username."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Checking username availability."
|
msgstr "Checking username availability."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "This username is not available."
|
msgstr "This username is not available."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continue"
|
msgstr "Continue"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Working"
|
msgstr "Working"
|
||||||
|
|||||||
130
po/eo/neochat.po
130
po/eo/neochat.po
@@ -7,8 +7,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-09-17 21:39+0200\n"
|
"PO-Revision-Date: 2024-12-28 20:45+0100\n"
|
||||||
"Last-Translator: Oliver Kellogg <olivermkellogg@gmail.com>\n"
|
"Last-Translator: Oliver Kellogg <olivermkellogg@gmail.com>\n"
|
||||||
"Language-Team: Esperanto <kde-i18n-eo@kde.org>\n"
|
"Language-Team: Esperanto <kde-i18n-eo@kde.org>\n"
|
||||||
"Language: eo\n"
|
"Language: eo\n"
|
||||||
@@ -98,32 +98,31 @@ msgid "Receiving notifications for new messages"
|
|||||||
msgstr "Ricevante sciigojn por novaj mesaĝoj"
|
msgstr "Ricevante sciigojn por novaj mesaĝoj"
|
||||||
|
|
||||||
#: src/controller.cpp:249
|
#: src/controller.cpp:249
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Access token wasn't found"
|
|
||||||
msgid "Access token wasn't found: Maybe it was deleted?"
|
msgid "Access token wasn't found: Maybe it was deleted?"
|
||||||
msgstr "Alirĵetono ne estis trovita"
|
msgstr "Alirĵetono ne estis trovita: Eble ĝi estis forigita?"
|
||||||
|
|
||||||
#: src/controller.cpp:253
|
#: src/controller.cpp:253
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Please allow NeoChat to read the access token"
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Access to keychain was denied: Please allow NeoChat to read the access token"
|
"Access to keychain was denied: Please allow NeoChat to read the access token"
|
||||||
msgstr "Bonvolu permesi al NeoChat legi la alirĵetonon"
|
msgstr ""
|
||||||
|
"Aliro al ŝlosilĉeno estis neita: Bonvolu permesi al NeoChat legi la "
|
||||||
|
"alirĵetonon"
|
||||||
|
|
||||||
#: src/controller.cpp:256
|
#: src/controller.cpp:256
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"No keychain available: Please install a keychain, e.g. KWallet or GNOME "
|
"No keychain available: Please install a keychain, e.g. KWallet or GNOME "
|
||||||
"keyring on Linux"
|
"keyring on Linux"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bonvolu instali ŝlosilĉenon, ekz. KWallet aŭ GNOME-ŝlosilringo en Linukso"
|
"Ŝlosilĉeno ne haveblas: Bonvolu instali ŝlosilĉenon, ekz. KWallet aŭ GNOME-"
|
||||||
|
"ŝlosilringo en Linukso"
|
||||||
|
|
||||||
#: src/controller.cpp:259
|
#: src/controller.cpp:259
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Unable to read access token"
|
|
||||||
msgid "Unable to read access token: %1"
|
msgid "Unable to read access token: %1"
|
||||||
msgstr "Ne eblas legi alirĵetonon"
|
msgstr "Ne eblas legi alirĵetonon: %1"
|
||||||
|
|
||||||
#: src/controller.cpp:358
|
#: src/controller.cpp:358
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -172,7 +171,7 @@ msgstr "Montri fokuson en fenestrokapo"
|
|||||||
#: src/devtools/DevtoolsPage.qml:18 src/settings/NeoChatGeneralPage.qml:273
|
#: src/devtools/DevtoolsPage.qml:18 src/settings/NeoChatGeneralPage.qml:273
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Developer Tools"
|
msgid "Developer Tools"
|
||||||
msgstr "Iloj por programistoj"
|
msgstr "Evoluistaj Iloj"
|
||||||
|
|
||||||
#: src/devtools/DevtoolsPage.qml:29
|
#: src/devtools/DevtoolsPage.qml:29
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -418,7 +417,7 @@ msgstr "ŝanĝis ilian montran nomon al %1"
|
|||||||
#: src/eventhandler.cpp:363
|
#: src/eventhandler.cpp:363
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid " and "
|
msgid " and "
|
||||||
msgstr "kaj"
|
msgstr " kaj "
|
||||||
|
|
||||||
#: src/eventhandler.cpp:366
|
#: src/eventhandler.cpp:366
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -868,12 +867,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Celo"
|
msgstr "Celo"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Reta Eraro: %1"
|
msgstr "Reta Eraro: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Ensaluto Malsukcesis: %1"
|
msgstr "Ensaluto Malsukcesis: %1"
|
||||||
@@ -1090,10 +1089,9 @@ msgid "Settings"
|
|||||||
msgstr "Agordo"
|
msgstr "Agordo"
|
||||||
|
|
||||||
#: src/main.cpp:143
|
#: src/main.cpp:143
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Share a URL to Matrix"
|
|
||||||
msgid "Chat on Matrix"
|
msgid "Chat on Matrix"
|
||||||
msgstr "Kundividi URL al Matrix"
|
msgstr "Babilo en Matrix"
|
||||||
|
|
||||||
#: src/main.cpp:145
|
#: src/main.cpp:145
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -1559,7 +1557,7 @@ msgstr "Flagoj"
|
|||||||
#, kde-format
|
#, kde-format
|
||||||
msgctxt "'Custom' is a category of emoji"
|
msgctxt "'Custom' is a category of emoji"
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "Propra"
|
msgstr "Tajlorita"
|
||||||
|
|
||||||
#: src/models/imagepacksmodel.cpp:92
|
#: src/models/imagepacksmodel.cpp:92
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -1822,12 +1820,13 @@ msgid ", "
|
|||||||
msgstr ", "
|
msgstr ", "
|
||||||
|
|
||||||
#: src/neochatconnection.cpp:79
|
#: src/neochatconnection.cpp:79
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Contact your matrix server administrator for support."
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"File too large to download.<br />Contact your matrix server administrator "
|
"File too large to download.<br />Contact your matrix server administrator "
|
||||||
"for support."
|
"for support."
|
||||||
msgstr "Kontaktu vian administranton de matrica servilo por subteno."
|
msgstr ""
|
||||||
|
"Dosiero tro granda por elŝuti.<br />Kontaktu vian administranton de matrix-"
|
||||||
|
"servilo por subteno."
|
||||||
|
|
||||||
#: src/neochatconnection.cpp:314
|
#: src/neochatconnection.cpp:314
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -1992,7 +1991,7 @@ msgstr "Ŝanĝi Konton"
|
|||||||
#, kde-format
|
#, kde-format
|
||||||
msgctxt "@button: login to or register a new account."
|
msgctxt "@button: login to or register a new account."
|
||||||
msgid "Add Account"
|
msgid "Add Account"
|
||||||
msgstr "Aldoni Konton"
|
msgstr "Aldoni konton"
|
||||||
|
|
||||||
#: src/qml/AccountSwitchDialog.qml:57
|
#: src/qml/AccountSwitchDialog.qml:57
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -2371,7 +2370,7 @@ msgctxt ""
|
|||||||
"@option:check The canonical parent is the default one if a room has multiple "
|
"@option:check The canonical parent is the default one if a room has multiple "
|
||||||
"parent spaces."
|
"parent spaces."
|
||||||
msgid "Make this space the canonical parent"
|
msgid "Make this space the canonical parent"
|
||||||
msgstr "Igi ĉi tiun spacon la kanonan gepatron"
|
msgstr "Igi ĉi tiun spacon la kanonikan gepatron"
|
||||||
|
|
||||||
#: src/qml/CreateRoomDialog.qml:267 src/qml/ServerComboBox.qml:186
|
#: src/qml/CreateRoomDialog.qml:267 src/qml/ServerComboBox.qml:186
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -2623,10 +2622,9 @@ msgid "Only show spaces"
|
|||||||
msgstr "Nur montri spacojn"
|
msgstr "Nur montri spacojn"
|
||||||
|
|
||||||
#: src/qml/ExploreRoomsPage.qml:95
|
#: src/qml/ExploreRoomsPage.qml:95
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Enter a room address"
|
|
||||||
msgid "Enter a Room Manually"
|
msgid "Enter a Room Manually"
|
||||||
msgstr "Enigi ĉambro-adreson"
|
msgstr "Enigi Ĉambron Permane"
|
||||||
|
|
||||||
#: src/qml/ExploreRoomsPage.qml:103
|
#: src/qml/ExploreRoomsPage.qml:103
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -3095,7 +3093,7 @@ msgstr "Antaŭen"
|
|||||||
#, kde-format
|
#, kde-format
|
||||||
msgctxt "@title"
|
msgctxt "@title"
|
||||||
msgid "Forward Message"
|
msgid "Forward Message"
|
||||||
msgstr "Antaŭen Mesaĝon"
|
msgstr "Plusendi Mesaĝon"
|
||||||
|
|
||||||
#: src/qml/MessageDelegateContextMenu.qml:72
|
#: src/qml/MessageDelegateContextMenu.qml:72
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -3881,7 +3879,7 @@ msgstr "Kopii ligilon"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Ŝanĝi Uzanton"
|
msgstr "Ŝanĝi Uzanton"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Malfermi Agordojn"
|
msgstr "Malfermi Agordojn"
|
||||||
@@ -4068,62 +4066,61 @@ msgstr "La fora partio nuligis la sean konfirmon ĉar la ŝlosiloj ne kongruas."
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "La seancokonfirmo estis nuligita pro nekonata eraro."
|
msgstr "La seancokonfirmo estis nuligita pro nekonata eraro."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Neniu servilo."
|
msgstr "Neniu servilo."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Kontrolante la haveblecon de la Servilo."
|
msgstr "Kontrolante la haveblecon de la Servilo."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Ĉi tio ne estas valida servilo."
|
msgstr "Ĉi tio ne estas valida servilo."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Registrado por ĉi tiu servilo estas malŝaltita."
|
msgstr "Registrado por ĉi tiu servilo estas malŝaltita."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Neniu uzantnomo."
|
msgstr "Neniu uzantnomo."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Kontrolante uzantnoman haveblecon."
|
msgstr "Kontrolante uzantnoman haveblecon."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Ĉi tiu uzantnomo ne disponeblas."
|
msgstr "Ĉi tiu uzantnomo ne disponeblas."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Daŭrigi"
|
msgstr "Daŭrigi"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Laborante"
|
msgstr "Laborante"
|
||||||
|
|
||||||
#: src/roommanager.cpp:145
|
#: src/roommanager.cpp:145
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "%1 is not a correct Matrix identifier"
|
|
||||||
msgid "Malformed or empty Matrix id<br />%1 is not a correct Matrix identifier"
|
msgid "Malformed or empty Matrix id<br />%1 is not a correct Matrix identifier"
|
||||||
msgstr "%1 ne estas ĝusta Matrico-identigilo"
|
msgstr ""
|
||||||
|
"Misformita aŭ malplena Matrix-id<br />%1 ne estas ĝusta Matrico-identigilo"
|
||||||
|
|
||||||
#: src/roommanager.cpp:342
|
#: src/roommanager.cpp:342
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Failed to join room"
|
|
||||||
msgid "Failed to join room<br />%1"
|
msgid "Failed to join room<br />%1"
|
||||||
msgstr "Malsukcesis aliĝi al ĉambro"
|
msgstr "Malsukcesis aliĝi al ĉambro<br />%1"
|
||||||
|
|
||||||
#: src/roommanager.cpp:366
|
#: src/roommanager.cpp:366
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -4131,10 +4128,9 @@ msgid "You requested to join '%1'"
|
|||||||
msgstr "Vi petis aliĝi al '%1'"
|
msgstr "Vi petis aliĝi al '%1'"
|
||||||
|
|
||||||
#: src/roommanager.cpp:370
|
#: src/roommanager.cpp:370
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Failed to request joining room"
|
|
||||||
msgid "Failed to request joining room<br />%1"
|
msgid "Failed to request joining room<br />%1"
|
||||||
msgstr "Malsukcesis peti aliĝon al ĉambro"
|
msgstr "Malsukcesis peti aliĝon al ĉambro<br />%1"
|
||||||
|
|
||||||
#: src/settings/AccountEditorPage.qml:20
|
#: src/settings/AccountEditorPage.qml:20
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -4499,7 +4495,7 @@ msgstr "Aldoni glumarkon"
|
|||||||
#, kde-format
|
#, kde-format
|
||||||
msgctxt "@title"
|
msgctxt "@title"
|
||||||
msgid "Stickers & Emojis"
|
msgid "Stickers & Emojis"
|
||||||
msgstr "Glumarkoj kaj Emojis"
|
msgstr "Glumarkoj & Emoĝioj"
|
||||||
|
|
||||||
#: src/settings/ExportKeysDialog.qml:17
|
#: src/settings/ExportKeysDialog.qml:17
|
||||||
#: src/settings/NeoChatSecurityPage.qml:107
|
#: src/settings/NeoChatSecurityPage.qml:107
|
||||||
@@ -4774,17 +4770,16 @@ msgid "Editor"
|
|||||||
msgstr "Redaktoro"
|
msgstr "Redaktoro"
|
||||||
|
|
||||||
#: src/settings/NeoChatGeneralPage.qml:204
|
#: src/settings/NeoChatGeneralPage.qml:204
|
||||||
#, fuzzy, kde-format
|
#, kde-format
|
||||||
#| msgid "Send message"
|
|
||||||
msgctxt "@option:radio"
|
msgctxt "@option:radio"
|
||||||
msgid "Send messages with Enter"
|
msgid "Send messages with Enter"
|
||||||
msgstr "Sendi mesaĝon"
|
msgstr "Sendi mesaĝojn per Enter"
|
||||||
|
|
||||||
#: src/settings/NeoChatGeneralPage.qml:215
|
#: src/settings/NeoChatGeneralPage.qml:215
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgctxt "@option:radio"
|
msgctxt "@option:radio"
|
||||||
msgid "Send messages with Ctrl+Enter"
|
msgid "Send messages with Ctrl+Enter"
|
||||||
msgstr ""
|
msgstr "Sendi mesaĝojn per Ctrl+Enter"
|
||||||
|
|
||||||
#: src/settings/NeoChatGeneralPage.qml:231
|
#: src/settings/NeoChatGeneralPage.qml:231
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -5732,28 +5727,3 @@ msgstr "Montri"
|
|||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr "Forlasi"
|
msgstr "Forlasi"
|
||||||
|
|
||||||
#~ msgid "Matrix client"
|
|
||||||
#~ msgstr "Matrico-kliento"
|
|
||||||
|
|
||||||
#~ msgctxt "@title"
|
|
||||||
#~ msgid "Room ID or Alias"
|
|
||||||
#~ msgstr "Ĉambro ID aŭ Kaŝnomo"
|
|
||||||
|
|
||||||
#~ msgid "Maybe it was deleted?"
|
|
||||||
#~ msgstr "Eble ĝi estis forigita?"
|
|
||||||
|
|
||||||
#~ msgid "Access to keychain was denied."
|
|
||||||
#~ msgstr "Aliro al ŝlosilĉeno estis rifuzita."
|
|
||||||
|
|
||||||
#~ msgid "No keychain available."
|
|
||||||
#~ msgstr "Neniu ŝlosilĉeno havebla."
|
|
||||||
|
|
||||||
#~ msgid "Network Error"
|
|
||||||
#~ msgstr "Reta Eraro"
|
|
||||||
|
|
||||||
#~ msgid "File too large to download."
|
|
||||||
#~ msgstr "Dosiero tro granda por elŝuti."
|
|
||||||
|
|
||||||
#~ msgid "Malformed or empty Matrix id"
|
|
||||||
#~ msgstr "Misforma aŭ malplena Matrico-id"
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-11 00:52+0100\n"
|
"PO-Revision-Date: 2024-11-11 00:52+0100\n"
|
||||||
"Last-Translator: Eloy Cuadra <ecuadra@eloihr.net>\n"
|
"Last-Translator: Eloy Cuadra <ecuadra@eloihr.net>\n"
|
||||||
"Language-Team: Spanish <kde-l10n-es@kde.org>\n"
|
"Language-Team: Spanish <kde-l10n-es@kde.org>\n"
|
||||||
@@ -869,12 +869,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Destino"
|
msgstr "Destino"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Error de red: %1"
|
msgstr "Error de red: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "El inicio de sesión ha fallado: %1"
|
msgstr "El inicio de sesión ha fallado: %1"
|
||||||
@@ -3889,7 +3889,7 @@ msgstr "Copiar enlace"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Cambiar usuario"
|
msgstr "Cambiar usuario"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Abrir las preferencias"
|
msgstr "Abrir las preferencias"
|
||||||
@@ -4097,47 +4097,47 @@ msgid "The session verification was canceled due to an unknown error."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"La verificación de la sesión se ha cancelado debido a un error desconocido."
|
"La verificación de la sesión se ha cancelado debido a un error desconocido."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "No hay ningún servidor."
|
msgstr "No hay ningún servidor."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Comprobando disponibilidad del servidor."
|
msgstr "Comprobando disponibilidad del servidor."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Este servidor no es válido."
|
msgstr "Este servidor no es válido."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "El registro de este servidor está desactivado."
|
msgstr "El registro de este servidor está desactivado."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Sin nombre de usuario."
|
msgstr "Sin nombre de usuario."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Comprobando disponibilidad del nombre de usuario."
|
msgstr "Comprobando disponibilidad del nombre de usuario."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Este nombre de usuario no está disponible."
|
msgstr "Este nombre de usuario no está disponible."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Trabajando"
|
msgstr "Trabajando"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-19 20:22+0100\n"
|
"PO-Revision-Date: 2024-11-19 20:22+0100\n"
|
||||||
"Last-Translator: Iñigo Salvador Azurmendi <xalba@ni.eus>\n"
|
"Last-Translator: Iñigo Salvador Azurmendi <xalba@ni.eus>\n"
|
||||||
"Language-Team: Basque <kde-i18n-eu@kde.org>\n"
|
"Language-Team: Basque <kde-i18n-eu@kde.org>\n"
|
||||||
@@ -870,12 +870,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Jomuga"
|
msgstr "Jomuga"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Sareko errorea: %1"
|
msgstr "Sareko errorea: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Saio-hastea huts egin du: %1"
|
msgstr "Saio-hastea huts egin du: %1"
|
||||||
@@ -3884,7 +3884,7 @@ msgstr "Kopiatu esteka"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Aldatu erabiltzailea"
|
msgstr "Aldatu erabiltzailea"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Ireki ezarpenak"
|
msgstr "Ireki ezarpenak"
|
||||||
@@ -4086,47 +4086,47 @@ msgid "The session verification was canceled due to an unknown error."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Saioaren egiaztapena bertan behera utzi da, errore ezezagun bat dela eta."
|
"Saioaren egiaztapena bertan behera utzi da, errore ezezagun bat dela eta."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Zerbitzaririk ez."
|
msgstr "Zerbitzaririk ez."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Zerbitzariaren eskuragarritasuna egiaztatzen."
|
msgstr "Zerbitzariaren eskuragarritasuna egiaztatzen."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Zerbitzari horrek ez du balio."
|
msgstr "Zerbitzari horrek ez du balio."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Zerbitzari horretako erregistroa ezgaituta dago."
|
msgstr "Zerbitzari horretako erregistroa ezgaituta dago."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Erabiltzaile-izenik ez."
|
msgstr "Erabiltzaile-izenik ez."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Erabiltzaile-izenaren eskuragarritasuna egiaztatzen."
|
msgstr "Erabiltzaile-izenaren eskuragarritasuna egiaztatzen."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Erabiltzaile-izen hori ez dago eskuragarri."
|
msgstr "Erabiltzaile-izen hori ez dago eskuragarri."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Jarraitu"
|
msgstr "Jarraitu"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Lanean"
|
msgstr "Lanean"
|
||||||
|
|||||||
1302
po/fi/neochat.po
1302
po/fi/neochat.po
File diff suppressed because it is too large
Load Diff
@@ -4,7 +4,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-11 10:08+0100\n"
|
"PO-Revision-Date: 2024-11-11 10:08+0100\n"
|
||||||
"Last-Translator: Xavier Besnard <xavier.besnard@kde.org>\n"
|
"Last-Translator: Xavier Besnard <xavier.besnard@kde.org>\n"
|
||||||
"Language-Team: French <French <kde-francophone@kde.org>>\n"
|
"Language-Team: French <French <kde-francophone@kde.org>>\n"
|
||||||
@@ -13,7 +13,7 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
"X-Generator: Lokalize 24.08.3\n"
|
"X-Generator: Lokalize 24.12.0\n"
|
||||||
|
|
||||||
#: src/chatbar/AttachDialog.qml:29
|
#: src/chatbar/AttachDialog.qml:29
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -864,12 +864,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Destination"
|
msgstr "Destination"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Erreur du réseau : %1"
|
msgstr "Erreur du réseau : %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "La connexion a échoué : %1"
|
msgstr "La connexion a échoué : %1"
|
||||||
@@ -3898,7 +3898,7 @@ msgstr "Copier un lien"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Changer d'utilisateur"
|
msgstr "Changer d'utilisateur"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Ouvrir la configuration"
|
msgstr "Ouvrir la configuration"
|
||||||
@@ -4104,47 +4104,47 @@ msgid "The session verification was canceled due to an unknown error."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"La vérification de session a été annulée à cause d'une erreur inconnue."
|
"La vérification de session a été annulée à cause d'une erreur inconnue."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Aucun serveur."
|
msgstr "Aucun serveur."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Vérification de la disponibilité du serveur."
|
msgstr "Vérification de la disponibilité du serveur."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Ceci n'est pas un serveur valable."
|
msgstr "Ceci n'est pas un serveur valable."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "L'enregistrement avec ce serveur est désactivé."
|
msgstr "L'enregistrement avec ce serveur est désactivé."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Aucun nom d'utilisateur."
|
msgstr "Aucun nom d'utilisateur."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Vérification de la disponibilité du nom d'utilisateur."
|
msgstr "Vérification de la disponibilité du nom d'utilisateur."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Ce nom d'utilisateur est indisponible."
|
msgstr "Ce nom d'utilisateur est indisponible."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuer"
|
msgstr "Continuer"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "De travail"
|
msgstr "De travail"
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-10 13:42+0100\n"
|
"PO-Revision-Date: 2024-12-19 22:31+0100\n"
|
||||||
"Last-Translator: Adrián Chaves (Gallaecio) <adrian@chaves.io>\n"
|
"Last-Translator: Adrián Chaves (Gallaecio) <adrian@chaves.io>\n"
|
||||||
"Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n"
|
"Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n"
|
||||||
"Language: gl\n"
|
"Language: gl\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Lokalize 24.08.3\n"
|
"X-Generator: Lokalize 24.12.0\n"
|
||||||
|
|
||||||
#: src/chatbar/AttachDialog.qml:29
|
#: src/chatbar/AttachDialog.qml:29
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -648,7 +648,7 @@ msgstr "%1 definiu un nome visual e actualizou o seu avatar."
|
|||||||
#: src/eventhandler.cpp:569
|
#: src/eventhandler.cpp:569
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "%1 set a display name and cleared their avatar"
|
msgid "%1 set a display name and cleared their avatar"
|
||||||
msgstr "%1 definiu un nome visual e retirou o seu avatar."
|
msgstr "%1 definiu un nome visual e borrou o seu avatar."
|
||||||
|
|
||||||
#: src/eventhandler.cpp:571
|
#: src/eventhandler.cpp:571
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -866,12 +866,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Destino"
|
msgstr "Destino"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Erro de rede: %1"
|
msgstr "Erro de rede: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "O acceso fallou: %1"
|
msgstr "O acceso fallou: %1"
|
||||||
@@ -1880,6 +1880,7 @@ msgstr "Responder"
|
|||||||
msgid "Reply..."
|
msgid "Reply..."
|
||||||
msgstr "Responder…"
|
msgstr "Responder…"
|
||||||
|
|
||||||
|
# skip-rule: trasno-file-a_reverse
|
||||||
#: src/notificationsmanager.cpp:304
|
#: src/notificationsmanager.cpp:304
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "%1 invited you to a room"
|
msgid "%1 invited you to a room"
|
||||||
@@ -2757,7 +2758,7 @@ msgstr "Saír da pantalla completa"
|
|||||||
#, kde-format
|
#, kde-format
|
||||||
msgctxt "menu"
|
msgctxt "menu"
|
||||||
msgid "Enter Full Screen"
|
msgid "Enter Full Screen"
|
||||||
msgstr "Ir a pantalla completa"
|
msgstr "Poñer a pantalla completa"
|
||||||
|
|
||||||
#: src/qml/GlobalMenu.qml:93
|
#: src/qml/GlobalMenu.qml:93
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -3002,7 +3003,7 @@ msgstr "Centrar de novo"
|
|||||||
#, kde-format
|
#, kde-format
|
||||||
msgctxt "@action:intoolbar Determine the device's location"
|
msgctxt "@action:intoolbar Determine the device's location"
|
||||||
msgid "Locate"
|
msgid "Locate"
|
||||||
msgstr "Localizar"
|
msgstr "Atopar"
|
||||||
|
|
||||||
#: src/qml/LocationsPage.qml:16 src/qml/RoomInformation.qml:127
|
#: src/qml/LocationsPage.qml:16 src/qml/RoomInformation.qml:127
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -3499,7 +3500,7 @@ msgstr "Engadir un servidor"
|
|||||||
#: src/qml/ServerComboBox.qml:137
|
#: src/qml/ServerComboBox.qml:137
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "The entered text is not a valid url"
|
msgid "The entered text is not a valid url"
|
||||||
msgstr "O texto non é un URL válido."
|
msgstr "O texto inserido non é un URL válido."
|
||||||
|
|
||||||
#: src/qml/ServerComboBox.qml:141
|
#: src/qml/ServerComboBox.qml:141
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -3883,7 +3884,7 @@ msgstr "Copiar a ligazón"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Cambiar de conta"
|
msgstr "Cambiar de conta"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Abrir a configuración"
|
msgstr "Abrir a configuración"
|
||||||
@@ -4084,47 +4085,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "A verificación de sesión cancelouse por un erro descoñecido."
|
msgstr "A verificación de sesión cancelouse por un erro descoñecido."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Non hai servidor."
|
msgstr "Non hai servidor."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Comprobando a dispoñibilidade do servidor."
|
msgstr "Comprobando a dispoñibilidade do servidor."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Non é un servidor válido."
|
msgstr "Non é un servidor válido."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Este servidor desactivou o rexistro."
|
msgstr "Este servidor desactivou o rexistro."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Non hai nome de persoa usuaria."
|
msgstr "Non hai nome de persoa usuaria."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Comprobando a dispoñibilidade do nome de persoa usuaria."
|
msgstr "Comprobando a dispoñibilidade do nome de persoa usuaria."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Este nome de persoa usuaria non está dispoñíbel."
|
msgstr "Este nome de persoa usuaria non está dispoñíbel."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Traballando"
|
msgstr "Traballando"
|
||||||
@@ -5524,7 +5525,7 @@ msgid ""
|
|||||||
"The phone number has not been verified. Please go to the text message and "
|
"The phone number has not been verified. Please go to the text message and "
|
||||||
"follow the instructions there and then click the button below"
|
"follow the instructions there and then click the button below"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Non se verificou o número de teléfono. Abra o mensaxe de texto e siga as "
|
"Non se verificou o número de teléfono. Abra a mensaxe de texto e siga as "
|
||||||
"instrucións nela e prema o botón embaixo."
|
"instrucións nela e prema o botón embaixo."
|
||||||
|
|
||||||
#: src/settings/ThreePIdCard.qml:183
|
#: src/settings/ThreePIdCard.qml:183
|
||||||
@@ -5560,7 +5561,7 @@ msgid ""
|
|||||||
"The phone number has not been verified. Please go to the text message and "
|
"The phone number has not been verified. Please go to the text message and "
|
||||||
"follow the instructions there and then click the button above"
|
"follow the instructions there and then click the button above"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Non se verificou o número de teléfono. Abra o mensaxe de texto e siga as "
|
"Non se verificou o número de teléfono. Abra a mensaxe de texto e siga as "
|
||||||
"instrucións nela e prema o botón arriba."
|
"instrucións nela e prema o botón arriba."
|
||||||
|
|
||||||
#: src/timeline/ChatBarComponent.qml:98
|
#: src/timeline/ChatBarComponent.qml:98
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-13 22:41+0100\n"
|
"PO-Revision-Date: 2024-11-13 22:41+0100\n"
|
||||||
"Last-Translator: Kristof Kiszel <ulysses@fsf.hu>\n"
|
"Last-Translator: Kristof Kiszel <ulysses@fsf.hu>\n"
|
||||||
"Language-Team: Hungarian <kde-l10n-hu@kde.org>\n"
|
"Language-Team: Hungarian <kde-l10n-hu@kde.org>\n"
|
||||||
@@ -869,12 +869,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Cél"
|
msgstr "Cél"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Hálózati hiba: %1"
|
msgstr "Hálózati hiba: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Sikertelen bejelentkezés: %1"
|
msgstr "Sikertelen bejelentkezés: %1"
|
||||||
@@ -3891,7 +3891,7 @@ msgstr "Hivatkozás másolása"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Felhasználóváltás"
|
msgstr "Felhasználóváltás"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Beállítások megnyitása"
|
msgstr "Beállítások megnyitása"
|
||||||
@@ -4087,47 +4087,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "A munkamenet-ellenőrzés ismeretlen okokból megszakadt."
|
msgstr "A munkamenet-ellenőrzés ismeretlen okokból megszakadt."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Nincs kiszolgáló."
|
msgstr "Nincs kiszolgáló."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Kiszolgáló elérhetőségének ellenőrzése."
|
msgstr "Kiszolgáló elérhetőségének ellenőrzése."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Ez nem egy érvényes kiszolgáló."
|
msgstr "Ez nem egy érvényes kiszolgáló."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "A regisztráció le van tiltva ezen a kiszolgálón."
|
msgstr "A regisztráció le van tiltva ezen a kiszolgálón."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Nincs felhasználónév."
|
msgstr "Nincs felhasználónév."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Felhasználónév elérhetőségének ellenőrzése."
|
msgstr "Felhasználónév elérhetőségének ellenőrzése."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "A felhasználónév nem érhető el."
|
msgstr "A felhasználónév nem érhető el."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Tovább"
|
msgstr "Tovább"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Dolgozunk"
|
msgstr "Dolgozunk"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-14 09:49+0100\n"
|
"PO-Revision-Date: 2024-11-14 09:49+0100\n"
|
||||||
"Last-Translator: giovanni <g.sora@tiscali.it>\n"
|
"Last-Translator: giovanni <g.sora@tiscali.it>\n"
|
||||||
"Language-Team: Interlingua <kde-i18n-doc@kde.org>\n"
|
"Language-Team: Interlingua <kde-i18n-doc@kde.org>\n"
|
||||||
@@ -867,12 +867,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Destination"
|
msgstr "Destination"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Error de rete: %1"
|
msgstr "Error de rete: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Accesso falleva: %1"
|
msgstr "Accesso falleva: %1"
|
||||||
@@ -3889,7 +3889,7 @@ msgstr "Copia Ligamine"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Commuta Usator"
|
msgstr "Commuta Usator"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Aperi Preferentias"
|
msgstr "Aperi Preferentias"
|
||||||
@@ -4096,47 +4096,47 @@ msgid "The session verification was canceled due to an unknown error."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Le verification de session esseva cancellate debite a un error incognite."
|
"Le verification de session esseva cancellate debite a un error incognite."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Nulle servitor."
|
msgstr "Nulle servitor."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Verificante disponibilitate de Servitor."
|
msgstr "Verificante disponibilitate de Servitor."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Isto non es un valide servitor."
|
msgstr "Isto non es un valide servitor."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Registration per iste servitor es dishabilitate."
|
msgstr "Registration per iste servitor es dishabilitate."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Necun nomine de usator."
|
msgstr "Necun nomine de usator."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Verificante disponibilitate de nomine de usator."
|
msgstr "Verificante disponibilitate de nomine de usator."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Iste nomine de usator non es disponibile."
|
msgstr "Iste nomine de usator non es disponibile."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continua"
|
msgstr "Continua"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "travaliante"
|
msgstr "travaliante"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2023-06-16 19:31+0700\n"
|
"PO-Revision-Date: 2023-06-16 19:31+0700\n"
|
||||||
"Last-Translator: Linerly <linerly@protonmail.com>\n"
|
"Last-Translator: Linerly <linerly@protonmail.com>\n"
|
||||||
"Language-Team: Indonesian <kde-i18n-doc@kde.org>\n"
|
"Language-Team: Indonesian <kde-i18n-doc@kde.org>\n"
|
||||||
@@ -945,12 +945,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Tujuan"
|
msgstr "Tujuan"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Kesalahan Jaringan: %1"
|
msgstr "Kesalahan Jaringan: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Pemasukan Gagal: %1"
|
msgstr "Pemasukan Gagal: %1"
|
||||||
@@ -4202,7 +4202,7 @@ msgstr "Salin tautan"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Ganti Pengguna"
|
msgstr "Ganti Pengguna"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Buka Pengaturan"
|
msgstr "Buka Pengaturan"
|
||||||
@@ -4400,54 +4400,54 @@ msgstr "Pihak jarak jauh membatalkan verifikasi sesi karena kunci tidak cocok."
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "Verifikasi sesi dibatalkan karena kesalahan yang tidak diketahui."
|
msgstr "Verifikasi sesi dibatalkan karena kesalahan yang tidak diketahui."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "@title:window"
|
#| msgctxt "@title:window"
|
||||||
#| msgid "Add server"
|
#| msgid "Add server"
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Tambahkan server"
|
msgstr "Tambahkan server"
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "The entered text is not a valid url"
|
#| msgid "The entered text is not a valid url"
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Teks yang dimasukkan bukan sebuah URL yang valid"
|
msgstr "Teks yang dimasukkan bukan sebuah URL yang valid"
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No name"
|
#| msgid "No name"
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Tidak ada nama"
|
msgstr "Tidak ada nama"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No users available"
|
#| msgid "No users available"
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Tidak ada pengguna yang tersedia"
|
msgstr "Tidak ada pengguna yang tersedia"
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "@action:button"
|
#| msgctxt "@action:button"
|
||||||
#| msgid "Continue"
|
#| msgid "Continue"
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Lanjut"
|
msgstr "Lanjut"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2022-10-28 19:18+0700\n"
|
"PO-Revision-Date: 2022-10-28 19:18+0700\n"
|
||||||
"Last-Translator: OIS <mistresssilvara@hotmail.com>\n"
|
"Last-Translator: OIS <mistresssilvara@hotmail.com>\n"
|
||||||
"Language-Team: kde-i18n-doc@kde.org\n"
|
"Language-Team: kde-i18n-doc@kde.org\n"
|
||||||
@@ -906,12 +906,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Inviar un invitation"
|
msgstr "Inviar un invitation"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Errore de rete: %1"
|
msgstr "Errore de rete: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Ne successat inregistrar: %1"
|
msgstr "Ne successat inregistrar: %1"
|
||||||
@@ -4099,7 +4099,7 @@ msgstr "Copiar"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Parametres del chambre"
|
msgstr "Parametres del chambre"
|
||||||
@@ -4273,52 +4273,52 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Homeserver:"
|
#| msgid "Homeserver:"
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Hem-servitor:"
|
msgstr "Hem-servitor:"
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No name"
|
#| msgid "No name"
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Sin nómine"
|
msgstr "Sin nómine"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No users available"
|
#| msgid "No users available"
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Null usatores disponibil"
|
msgstr "Null usatores disponibil"
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "@action:button"
|
#| msgctxt "@action:button"
|
||||||
#| msgid "Continue"
|
#| msgid "Continue"
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-10 21:34+0100\n"
|
"PO-Revision-Date: 2024-11-10 21:34+0100\n"
|
||||||
"Last-Translator: Vincenzo Reale <smart2128vr@gmail.com>\n"
|
"Last-Translator: Vincenzo Reale <smart2128vr@gmail.com>\n"
|
||||||
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
|
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Lokalize 24.08.3\n"
|
"X-Generator: Lokalize 24.12.0\n"
|
||||||
|
|
||||||
#: src/chatbar/AttachDialog.qml:29
|
#: src/chatbar/AttachDialog.qml:29
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -866,12 +866,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Destinazione"
|
msgstr "Destinazione"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Errore di rete: %1"
|
msgstr "Errore di rete: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Accesso non riuscito: %1"
|
msgstr "Accesso non riuscito: %1"
|
||||||
@@ -3895,7 +3895,7 @@ msgstr "Copia collegamento"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Cambia utente"
|
msgstr "Cambia utente"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Apri le impostazioni"
|
msgstr "Apri le impostazioni"
|
||||||
@@ -4104,47 +4104,47 @@ msgstr ""
|
|||||||
"La verifica della sessione è stata annullata a causa di un errore "
|
"La verifica della sessione è stata annullata a causa di un errore "
|
||||||
"sconosciuto."
|
"sconosciuto."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Nessun server."
|
msgstr "Nessun server."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Verifica della disponibilità del server."
|
msgstr "Verifica della disponibilità del server."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Questo non è un server valido."
|
msgstr "Questo non è un server valido."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "La registrazione per questo server è disabilitata."
|
msgstr "La registrazione per questo server è disabilitata."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Nessun nome utente."
|
msgstr "Nessun nome utente."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Verifica della disponibilità del nome utente."
|
msgstr "Verifica della disponibilità del nome utente."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Il nome utente non è disponibile."
|
msgstr "Il nome utente non è disponibile."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continua"
|
msgstr "Continua"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Attivo"
|
msgstr "Attivo"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2020-11-05 23:50-0800\n"
|
"PO-Revision-Date: 2020-11-05 23:50-0800\n"
|
||||||
"Last-Translator: Japanese KDE translation team <kde-jp@kde.org>\n"
|
"Last-Translator: Japanese KDE translation team <kde-jp@kde.org>\n"
|
||||||
"Language-Team: Japanese <kde-jp@kde.org>\n"
|
"Language-Team: Japanese <kde-jp@kde.org>\n"
|
||||||
@@ -856,12 +856,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3828,7 +3828,7 @@ msgstr ""
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4001,47 +4001,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-27 04:18+0100\n"
|
"PO-Revision-Date: 2024-11-27 04:18+0100\n"
|
||||||
"Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>\n"
|
"Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>\n"
|
||||||
"Language-Team: Georgian <kde-i18n-doc@kde.org>\n"
|
"Language-Team: Georgian <kde-i18n-doc@kde.org>\n"
|
||||||
@@ -866,12 +866,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "დანიშნულება"
|
msgstr "დანიშნულება"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "ქსელის შეცდომა: %1"
|
msgstr "ქსელის შეცდომა: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "შესვლის შეცდომა: %1"
|
msgstr "შესვლის შეცდომა: %1"
|
||||||
@@ -3877,7 +3877,7 @@ msgstr "ბმულის კოპირება"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "მომხმარებლის გადართვა"
|
msgstr "მომხმარებლის გადართვა"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "პარამეტრების გახსნა"
|
msgstr "პარამეტრების გახსნა"
|
||||||
@@ -4064,47 +4064,47 @@ msgstr "დაშორებულმა სესიის გადამო
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "სესიის გადამოწმება უცნობი შეცდომის გამო გაუქმდა."
|
msgstr "სესიის გადამოწმება უცნობი შეცდომის გამო გაუქმდა."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "სერვერის გარეშე."
|
msgstr "სერვერის გარეშე."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "სერვერის წვდომადობის შემოწმება."
|
msgstr "სერვერის წვდომადობის შემოწმება."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "ეს სწორი სერვერი არაა."
|
msgstr "ეს სწორი სერვერი არაა."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "ამ სერვერისთვის რეგისტრაცია გამორთულია."
|
msgstr "ამ სერვერისთვის რეგისტრაცია გამორთულია."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "მომხმარებლის სახელის გარეშე."
|
msgstr "მომხმარებლის სახელის გარეშე."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "მომხმარებლის სახელის წვდომადობის შემოწმება."
|
msgstr "მომხმარებლის სახელის წვდომადობის შემოწმება."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "ეს მომხმარებლის სახელი ხელმისაწვდომი არაა."
|
msgstr "ეს მომხმარებლის სახელი ხელმისაწვდომი არაა."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "გაგრძელება"
|
msgstr "გაგრძელება"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "მუშაობს"
|
msgstr "მუშაობს"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-02-24 22:09+0100\n"
|
"PO-Revision-Date: 2024-02-24 22:09+0100\n"
|
||||||
"Last-Translator: Shinjo Park <kde@peremen.name>\n"
|
"Last-Translator: Shinjo Park <kde@peremen.name>\n"
|
||||||
"Language-Team: Korean <kde-kr@kde.org>\n"
|
"Language-Team: Korean <kde-kr@kde.org>\n"
|
||||||
@@ -940,12 +940,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "대상"
|
msgstr "대상"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "네트워크 오류: %1"
|
msgstr "네트워크 오류: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "로그인 실패: %1"
|
msgstr "로그인 실패: %1"
|
||||||
@@ -4074,7 +4074,7 @@ msgstr "링크 복사"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "사용자 전환"
|
msgstr "사용자 전환"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "설정 열기"
|
msgstr "설정 열기"
|
||||||
@@ -4251,47 +4251,47 @@ msgstr "원격지에서 키가 일치하지 않아서 세션 확인을 취소했
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "알 수 없는 이유로 세션 확인이 취소되었습니다."
|
msgstr "알 수 없는 이유로 세션 확인이 취소되었습니다."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "서버가 없습니다."
|
msgstr "서버가 없습니다."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "서버를 확인하고 있습니다."
|
msgstr "서버를 확인하고 있습니다."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "올바른 서버가 아닙니다."
|
msgstr "올바른 서버가 아닙니다."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "이 서버에 등록이 비활성화되어 있습니다."
|
msgstr "이 서버에 등록이 비활성화되어 있습니다."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "사용자 이름이 없습니다."
|
msgstr "사용자 이름이 없습니다."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "사용자 이름 사용 가능 여부를 확인하고 있습니다."
|
msgstr "사용자 이름 사용 가능 여부를 확인하고 있습니다."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "이 사용자 이름을 사용할 수 없습니다."
|
msgstr "이 사용자 이름을 사용할 수 없습니다."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "계속"
|
msgstr "계속"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "작업 중"
|
msgstr "작업 중"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2023-02-25 01:00+0000\n"
|
"PO-Revision-Date: 2023-02-25 01:00+0000\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@@ -863,12 +863,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3853,7 +3853,7 @@ msgstr ""
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4026,47 +4026,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-10-14 21:07+0300\n"
|
"PO-Revision-Date: 2024-10-14 21:07+0300\n"
|
||||||
"Last-Translator: Toms Trasuns <toms.trasuns@posteo.net>\n"
|
"Last-Translator: Toms Trasuns <toms.trasuns@posteo.net>\n"
|
||||||
"Language-Team: Latvian <kde-i18n-doc@kde.org>\n"
|
"Language-Team: Latvian <kde-i18n-doc@kde.org>\n"
|
||||||
@@ -869,12 +869,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Galamērķis"
|
msgstr "Galamērķis"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Tīkla kļūda: %1"
|
msgstr "Tīkla kļūda: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Ierakstīšanās neizdevās: %1"
|
msgstr "Ierakstīšanās neizdevās: %1"
|
||||||
@@ -3888,7 +3888,7 @@ msgstr "Kopēt saiti"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Pārslēgt lietotāju"
|
msgstr "Pārslēgt lietotāju"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Atvērt iestatījumus"
|
msgstr "Atvērt iestatījumus"
|
||||||
@@ -4074,47 +4074,47 @@ msgstr "Attālā puse atcēla sesijas verifikāciju, jo neatbilst atslēgas"
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "Sesijas verifikācija ir atcelta nezināmas kļūdas dēļ."
|
msgstr "Sesijas verifikācija ir atcelta nezināmas kļūdas dēļ."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Nav servera."
|
msgstr "Nav servera."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Pārbauda servera pieejamību."
|
msgstr "Pārbauda servera pieejamību."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Šis nav derīgs serveris."
|
msgstr "Šis nav derīgs serveris."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Reģistrācija šajā serverī ir izslēgta."
|
msgstr "Reģistrācija šajā serverī ir izslēgta."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Nav lietotājvārda"
|
msgstr "Nav lietotājvārda"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Pārbauda lietotājvārda pieejamību."
|
msgstr "Pārbauda lietotājvārda pieejamību."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Šis lietotājvārds nav pieejams."
|
msgstr "Šis lietotājvārds nav pieejams."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Turpināt"
|
msgstr "Turpināt"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Darbojas"
|
msgstr "Darbojas"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-07 12:39+0100\n"
|
"PO-Revision-Date: 2024-11-07 12:39+0100\n"
|
||||||
"Last-Translator: Freek de Kruijf <freekdekruijf@kde.nl>\n"
|
"Last-Translator: Freek de Kruijf <freekdekruijf@kde.nl>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -867,12 +867,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Bestemming"
|
msgstr "Bestemming"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Netwerkfout: %1"
|
msgstr "Netwerkfout: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Aanmelden mislukt: %1"
|
msgstr "Aanmelden mislukt: %1"
|
||||||
@@ -3895,7 +3895,7 @@ msgstr "Koppeling kopiëren"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Gebruiker wisselen"
|
msgstr "Gebruiker wisselen"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Instellingen openen"
|
msgstr "Instellingen openen"
|
||||||
@@ -4101,47 +4101,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "Verificatie van de sessie is geannuleerd vanwege een onbekende fout."
|
msgstr "Verificatie van de sessie is geannuleerd vanwege een onbekende fout."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Geen server."
|
msgstr "Geen server."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Beschikbaarheid van server controleren."
|
msgstr "Beschikbaarheid van server controleren."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Dit is geen geldige server."
|
msgstr "Dit is geen geldige server."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Registratie voor deze server is uitgeschakeld."
|
msgstr "Registratie voor deze server is uitgeschakeld."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Geen gebruikersnaam."
|
msgstr "Geen gebruikersnaam."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Beschikbaarheid van gebruikersnaam controleren."
|
msgstr "Beschikbaarheid van gebruikersnaam controleren."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Deze gebruikersnaam is niet beschikbaar."
|
msgstr "Deze gebruikersnaam is niet beschikbaar."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Doorgaan"
|
msgstr "Doorgaan"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Werkend"
|
msgstr "Werkend"
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-10-27 15:01+0100\n"
|
"PO-Revision-Date: 2024-10-27 15:01+0100\n"
|
||||||
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
|
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
|
||||||
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
|
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
|
||||||
@@ -101,20 +101,17 @@ msgstr "Varsling av nye meldingar"
|
|||||||
|
|
||||||
#: src/controller.cpp:249
|
#: src/controller.cpp:249
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Access token wasn't found"
|
|
||||||
msgid "Access token wasn't found: Maybe it was deleted?"
|
msgid "Access token wasn't found: Maybe it was deleted?"
|
||||||
msgstr "Fann ikkje tilgangspollett"
|
msgstr "Fann ikkje tilgangspollett"
|
||||||
|
|
||||||
#: src/controller.cpp:253
|
#: src/controller.cpp:253
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Please allow NeoChat to read the access token"
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Access to keychain was denied: Please allow NeoChat to read the access token"
|
"Access to keychain was denied: Please allow NeoChat to read the access token"
|
||||||
msgstr "Gje NeoChat løyve til å lesa tilgangspolletten"
|
msgstr "Gje NeoChat løyve til å lesa tilgangspolletten"
|
||||||
|
|
||||||
#: src/controller.cpp:256
|
#: src/controller.cpp:256
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"No keychain available: Please install a keychain, e.g. KWallet or GNOME "
|
"No keychain available: Please install a keychain, e.g. KWallet or GNOME "
|
||||||
"keyring on Linux"
|
"keyring on Linux"
|
||||||
@@ -122,7 +119,6 @@ msgstr "Installer ein nøkkelring, for eksempel KWallet eller GNOME Keyring"
|
|||||||
|
|
||||||
#: src/controller.cpp:259
|
#: src/controller.cpp:259
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Unable to read access token"
|
|
||||||
msgid "Unable to read access token: %1"
|
msgid "Unable to read access token: %1"
|
||||||
msgstr "Klarte ikkje lesa tilgangspollett"
|
msgstr "Klarte ikkje lesa tilgangspollett"
|
||||||
|
|
||||||
@@ -649,70 +645,51 @@ msgstr ""
|
|||||||
# Kan gjelda meir enn éin person, så «oppdaterte avataren sin» vert feil.
|
# Kan gjelda meir enn éin person, så «oppdaterte avataren sin» vert feil.
|
||||||
#: src/eventhandler.cpp:567
|
#: src/eventhandler.cpp:567
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "their refers to a singular user"
|
|
||||||
#| msgid "updated their avatar"
|
|
||||||
msgid "%1 set a display name and updated their avatar"
|
msgid "%1 set a display name and updated their avatar"
|
||||||
msgstr "valde ein ny avatar"
|
msgstr "valde ein ny avatar"
|
||||||
|
|
||||||
#: src/eventhandler.cpp:569
|
#: src/eventhandler.cpp:569
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "their refers to a singular user"
|
|
||||||
#| msgid "cleared their avatar"
|
|
||||||
msgid "%1 set a display name and cleared their avatar"
|
msgid "%1 set a display name and cleared their avatar"
|
||||||
msgstr "fjerna avataren sin"
|
msgstr "fjerna avataren sin"
|
||||||
|
|
||||||
#: src/eventhandler.cpp:571
|
#: src/eventhandler.cpp:571
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Changes your display name in this room"
|
|
||||||
msgid "%1 set a display name for this room"
|
msgid "%1 set a display name for this room"
|
||||||
msgstr "Byter visingsnamnet ditt i dette rommet"
|
msgstr "Byter visingsnamnet ditt i dette rommet"
|
||||||
|
|
||||||
#: src/eventhandler.cpp:574
|
#: src/eventhandler.cpp:574
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "their refers to a singular user"
|
|
||||||
#| msgid "changed their display name to %1"
|
|
||||||
msgid "%1 changed their display name and set an avatar"
|
msgid "%1 changed their display name and set an avatar"
|
||||||
msgstr "endra visingsnamnet sitt til %1"
|
msgstr "endra visingsnamnet sitt til %1"
|
||||||
|
|
||||||
#: src/eventhandler.cpp:576
|
#: src/eventhandler.cpp:576
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "their refers to a singular user"
|
|
||||||
#| msgid "changed their display name to %1"
|
|
||||||
msgid "%1 changed their display name and updated their avatar"
|
msgid "%1 changed their display name and updated their avatar"
|
||||||
msgstr "endra visingsnamnet sitt til %1"
|
msgstr "endra visingsnamnet sitt til %1"
|
||||||
|
|
||||||
#: src/eventhandler.cpp:578
|
#: src/eventhandler.cpp:578
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "their refers to a singular user"
|
|
||||||
#| msgid "changed their display name to %1"
|
|
||||||
msgid "%1 changed their display name and cleared their avatar"
|
msgid "%1 changed their display name and cleared their avatar"
|
||||||
msgstr "endra visingsnamnet sitt til %1"
|
msgstr "endra visingsnamnet sitt til %1"
|
||||||
|
|
||||||
#: src/eventhandler.cpp:580
|
#: src/eventhandler.cpp:580
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "their refers to a singular user"
|
|
||||||
#| msgid "changed their display name"
|
|
||||||
msgid "%1 changed their display name"
|
msgid "%1 changed their display name"
|
||||||
msgstr "endra visingsnamnet sitt"
|
msgstr "endra visingsnamnet sitt"
|
||||||
|
|
||||||
#: src/eventhandler.cpp:583
|
#: src/eventhandler.cpp:583
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "their refers to a singular user"
|
|
||||||
#| msgid "cleared their display name"
|
|
||||||
msgid "%1 cleared their display name and set an avatar"
|
msgid "%1 cleared their display name and set an avatar"
|
||||||
msgstr "fjerna visingsnamnet"
|
msgstr "fjerna visingsnamnet"
|
||||||
|
|
||||||
#: src/eventhandler.cpp:585
|
#: src/eventhandler.cpp:585
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "their refers to a singular user"
|
|
||||||
#| msgid "cleared their display name"
|
|
||||||
msgid "%1 cleared their display name and updated their avatar"
|
msgid "%1 cleared their display name and updated their avatar"
|
||||||
msgstr "fjerna visingsnamnet"
|
msgstr "fjerna visingsnamnet"
|
||||||
|
|
||||||
#: src/eventhandler.cpp:587
|
#: src/eventhandler.cpp:587
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "their refers to a singular user"
|
|
||||||
#| msgid "cleared their display name"
|
|
||||||
msgid "%1 cleared their display name and cleared their avatar"
|
msgid "%1 cleared their display name and cleared their avatar"
|
||||||
msgstr "fjerna visingsnamnet"
|
msgstr "fjerna visingsnamnet"
|
||||||
|
|
||||||
@@ -829,8 +806,6 @@ msgstr "%1 oppretta rommet"
|
|||||||
|
|
||||||
#: src/eventhandler.cpp:636
|
#: src/eventhandler.cpp:636
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "'power level' means permission level"
|
|
||||||
#| msgid "changed the power levels for this room"
|
|
||||||
msgctxt "'power level' means permission level"
|
msgctxt "'power level' means permission level"
|
||||||
msgid "%1 changed the power levels for this room"
|
msgid "%1 changed the power levels for this room"
|
||||||
msgstr "endra maktnivået for rommet"
|
msgstr "endra maktnivået for rommet"
|
||||||
@@ -894,12 +869,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Mål"
|
msgstr "Mål"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Nettverksfeil: %1"
|
msgstr "Nettverksfeil: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Feil ved innlogging: %1"
|
msgstr "Feil ved innlogging: %1"
|
||||||
@@ -1109,15 +1084,12 @@ msgstr "Gå tilbake"
|
|||||||
|
|
||||||
#: src/login/WelcomePage.qml:269
|
#: src/login/WelcomePage.qml:269
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "@action:button"
|
|
||||||
#| msgid "Room Settings"
|
|
||||||
msgctxt "@action:button"
|
msgctxt "@action:button"
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Romval"
|
msgstr "Romval"
|
||||||
|
|
||||||
#: src/main.cpp:143
|
#: src/main.cpp:143
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Share a URL to Matrix"
|
|
||||||
msgid "Chat on Matrix"
|
msgid "Chat on Matrix"
|
||||||
msgstr "Del ei adresse på Matrix"
|
msgstr "Del ei adresse på Matrix"
|
||||||
|
|
||||||
@@ -1854,7 +1826,6 @@ msgstr ", "
|
|||||||
|
|
||||||
#: src/neochatconnection.cpp:79
|
#: src/neochatconnection.cpp:79
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Contact your matrix server administrator for support."
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"File too large to download.<br />Contact your matrix server administrator "
|
"File too large to download.<br />Contact your matrix server administrator "
|
||||||
"for support."
|
"for support."
|
||||||
@@ -2657,7 +2628,6 @@ msgstr "Berre vis rom"
|
|||||||
|
|
||||||
#: src/qml/ExploreRoomsPage.qml:95
|
#: src/qml/ExploreRoomsPage.qml:95
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Enter a room address"
|
|
||||||
msgid "Enter a Room Manually"
|
msgid "Enter a Room Manually"
|
||||||
msgstr "Skriv inn romadresse"
|
msgstr "Skriv inn romadresse"
|
||||||
|
|
||||||
@@ -3033,8 +3003,6 @@ msgstr ""
|
|||||||
|
|
||||||
#: src/qml/LocationChooser.qml:41
|
#: src/qml/LocationChooser.qml:41
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "Locations on a map"
|
|
||||||
#| msgid "Locations"
|
|
||||||
msgctxt "@action:intoolbar Determine the device's location"
|
msgctxt "@action:intoolbar Determine the device's location"
|
||||||
msgid "Locate"
|
msgid "Locate"
|
||||||
msgstr "Posisjonar"
|
msgstr "Posisjonar"
|
||||||
@@ -3916,7 +3884,7 @@ msgstr "Kopier lenkje"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Byt brukar"
|
msgstr "Byt brukar"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Opna innstillingar"
|
msgstr "Opna innstillingar"
|
||||||
@@ -4106,54 +4074,53 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "Stadfestinga av økta vart av ukjend grunn avbroten."
|
msgstr "Stadfestinga av økta vart av ukjend grunn avbroten."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Ingen tenar."
|
msgstr "Ingen tenar."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Kontrollerer tilgang til tenar."
|
msgstr "Kontrollerer tilgang til tenar."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Dette er ikkje ein gyldig tenar."
|
msgstr "Dette er ikkje ein gyldig tenar."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Denne tenaren er stengd for nye registreringar."
|
msgstr "Denne tenaren er stengd for nye registreringar."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Manglar brukarnamn."
|
msgstr "Manglar brukarnamn."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Ser om brukarnamnet er tilgjengeleg."
|
msgstr "Ser om brukarnamnet er tilgjengeleg."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Brukarnamnet er ikkje tilgjengeleg."
|
msgstr "Brukarnamnet er ikkje tilgjengeleg."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Hald fram"
|
msgstr "Hald fram"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Arbeider"
|
msgstr "Arbeider"
|
||||||
|
|
||||||
#: src/roommanager.cpp:145
|
#: src/roommanager.cpp:145
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "%1 is not a correct Matrix identifier"
|
|
||||||
msgid "Malformed or empty Matrix id<br />%1 is not a correct Matrix identifier"
|
msgid "Malformed or empty Matrix id<br />%1 is not a correct Matrix identifier"
|
||||||
msgstr "%1 er ikkje ein gyldig Matrix-identifikator"
|
msgstr "%1 er ikkje ein gyldig Matrix-identifikator"
|
||||||
|
|
||||||
@@ -4811,7 +4778,6 @@ msgstr "Tekstredigering"
|
|||||||
# Namn på «send»-knappen i skrivefeltet.
|
# Namn på «send»-knappen i skrivefeltet.
|
||||||
#: src/settings/NeoChatGeneralPage.qml:204
|
#: src/settings/NeoChatGeneralPage.qml:204
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Send message"
|
|
||||||
msgctxt "@option:radio"
|
msgctxt "@option:radio"
|
||||||
msgid "Send messages with Enter"
|
msgid "Send messages with Enter"
|
||||||
msgstr "Send meldinga"
|
msgstr "Send meldinga"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2021-12-31 11:06-0800\n"
|
"PO-Revision-Date: 2021-12-31 11:06-0800\n"
|
||||||
"Last-Translator: A S Alam <aalam@satluj.org>\n"
|
"Last-Translator: A S Alam <aalam@satluj.org>\n"
|
||||||
"Language-Team: Punjabi <punjabi-users@lists.sf.net>\n"
|
"Language-Team: Punjabi <punjabi-users@lists.sf.net>\n"
|
||||||
@@ -949,12 +949,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "ਸੱਦਾ ਭੇਜੋ"
|
msgstr "ਸੱਦਾ ਭੇਜੋ"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "ਨੈੱਟਵਰਕ ਗ਼ਲਤੀ: %1"
|
msgstr "ਨੈੱਟਵਰਕ ਗ਼ਲਤੀ: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "ਲਾਗਇਨ ਫੇਲ੍ਹ ਹੈ: %1"
|
msgstr "ਲਾਗਇਨ ਫੇਲ੍ਹ ਹੈ: %1"
|
||||||
@@ -4247,7 +4247,7 @@ msgstr "ਕਾਪੀ ਕਰੋ"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Settings"
|
#| msgid "Settings"
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
@@ -4423,52 +4423,52 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Homeserver:"
|
#| msgid "Homeserver:"
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "ਹੋਮ-ਸਰਵਰ:"
|
msgstr "ਹੋਮ-ਸਰਵਰ:"
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No name"
|
#| msgid "No name"
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "ਕੋਈ ਨਾਂ ਨਹੀਂ"
|
msgstr "ਕੋਈ ਨਾਂ ਨਹੀਂ"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No users available"
|
#| msgid "No users available"
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "ਕੋਈ ਵਰਤੋਂਕਾਰ ਮੌਜੂਦ ਨਹੀਂ ਹੈ"
|
msgstr "ਕੋਈ ਵਰਤੋਂਕਾਰ ਮੌਜੂਦ ਨਹੀਂ ਹੈ"
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "@action:button"
|
#| msgctxt "@action:button"
|
||||||
#| msgid "Continue"
|
#| msgid "Continue"
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "ਜਾਰੀ ਰੱਖੋ"
|
msgstr "ਜਾਰੀ ਰੱਖੋ"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
# Copyright (C) 2023 This file is copyright:
|
# Copyright (C) 2023 This file is copyright:
|
||||||
# This file is distributed under the same license as the neochat package.
|
# This file is distributed under the same license as the neochat package.
|
||||||
#
|
|
||||||
# Karol Kosek <krkk@krkk.ct8.pl>, 2020.
|
# Karol Kosek <krkk@krkk.ct8.pl>, 2020.
|
||||||
# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
|
# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
|
||||||
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-10 15:33+0100\n"
|
"PO-Revision-Date: 2024-12-29 08:43+0100\n"
|
||||||
"Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>\n"
|
"Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>\n"
|
||||||
"Language-Team: Polish <kde-i18n-doc@kde.org>\n"
|
"Language-Team: Polish <kde-i18n-doc@kde.org>\n"
|
||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
@@ -17,7 +17,7 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||||
"|| n%100>=20) ? 1 : 2);\n"
|
"|| n%100>=20) ? 1 : 2);\n"
|
||||||
"X-Generator: Lokalize 24.08.2\n"
|
"X-Generator: Lokalize 24.12.0\n"
|
||||||
|
|
||||||
#: src/chatbar/AttachDialog.qml:29
|
#: src/chatbar/AttachDialog.qml:29
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -869,12 +869,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Miejsce docelowe"
|
msgstr "Miejsce docelowe"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Błąd sieciowy: %1"
|
msgstr "Błąd sieciowy: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Nie udało się wejść: %1"
|
msgstr "Nie udało się wejść: %1"
|
||||||
@@ -974,7 +974,7 @@ msgstr "Wejdź jednorazowo"
|
|||||||
#, kde-format
|
#, kde-format
|
||||||
msgctxt "@action:button"
|
msgctxt "@action:button"
|
||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Wejdź"
|
msgstr "Zaloguj się"
|
||||||
|
|
||||||
#: src/login/LoginRegister.qml:31
|
#: src/login/LoginRegister.qml:31
|
||||||
#, kde-format
|
#, kde-format
|
||||||
@@ -3893,7 +3893,7 @@ msgstr "Skopiuj odnośnik"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Przełącz na innego użytkownika"
|
msgstr "Przełącz na innego użytkownika"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Otwórz ustawienia"
|
msgstr "Otwórz ustawienia"
|
||||||
@@ -4092,47 +4092,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "Zaniechano sprawdzenia posiedzenia ze względu na nieznany błąd."
|
msgstr "Zaniechano sprawdzenia posiedzenia ze względu na nieznany błąd."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Nie ma żadnego serwera."
|
msgstr "Nie ma żadnego serwera."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Sprawdzanie dostępności serwera."
|
msgstr "Sprawdzanie dostępności serwera."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "To nie jest poprawny serwer."
|
msgstr "To nie jest poprawny serwer."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Rejestrowanie się na ten serwer jest wyłączone."
|
msgstr "Rejestrowanie się na ten serwer jest wyłączone."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Brak nazwy użytkownika."
|
msgstr "Brak nazwy użytkownika."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Sprawdzanie dostępności nazwy użytkownika."
|
msgstr "Sprawdzanie dostępności nazwy użytkownika."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Ta nazwa użytkownika jest niedostępna."
|
msgstr "Ta nazwa użytkownika jest niedostępna."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Dalej"
|
msgstr "Dalej"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Pracuje"
|
msgstr "Pracuje"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2023-06-24 10:17+0100\n"
|
"PO-Revision-Date: 2023-06-24 10:17+0100\n"
|
||||||
"Last-Translator: José Nuno Coelho Pires <zepires@gmail.com>\n"
|
"Last-Translator: José Nuno Coelho Pires <zepires@gmail.com>\n"
|
||||||
"Language-Team: Portuguese <kde-i18n-pt@kde.org>\n"
|
"Language-Team: Portuguese <kde-i18n-pt@kde.org>\n"
|
||||||
@@ -947,12 +947,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Destino"
|
msgstr "Destino"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Erro de Rede: %1"
|
msgstr "Erro de Rede: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Autenticação sem Sucesso: %1"
|
msgstr "Autenticação sem Sucesso: %1"
|
||||||
@@ -4204,7 +4204,7 @@ msgstr "Copiar a ligação"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Mudar de Utilizador"
|
msgstr "Mudar de Utilizador"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Abrir a Configuração"
|
msgstr "Abrir a Configuração"
|
||||||
@@ -4412,54 +4412,54 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "A verificação da sessão foi cancelada devido a um erro desconhecido."
|
msgstr "A verificação da sessão foi cancelada devido a um erro desconhecido."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "@title:window"
|
#| msgctxt "@title:window"
|
||||||
#| msgid "Add server"
|
#| msgid "Add server"
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Adicionar um servidor"
|
msgstr "Adicionar um servidor"
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "The entered text is not a valid url"
|
#| msgid "The entered text is not a valid url"
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "O texto introduzido não é um URL válido"
|
msgstr "O texto introduzido não é um URL válido"
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No name"
|
#| msgid "No name"
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Sem nome"
|
msgstr "Sem nome"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No users available"
|
#| msgid "No users available"
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Sem utilizadores disponíveis"
|
msgstr "Sem utilizadores disponíveis"
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "@action:button"
|
#| msgctxt "@action:button"
|
||||||
#| msgid "Continue"
|
#| msgid "Continue"
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-08-03 00:01-0300\n"
|
"PO-Revision-Date: 2024-08-03 00:01-0300\n"
|
||||||
"Last-Translator: Geraldo Simiao <geraldosimiao@fedoraproject.org>\n"
|
"Last-Translator: Geraldo Simiao <geraldosimiao@fedoraproject.org>\n"
|
||||||
"Language-Team: Brazilian Portuguese <kde-i18n-pt_BR@kde.org>\n"
|
"Language-Team: Brazilian Portuguese <kde-i18n-pt_BR@kde.org>\n"
|
||||||
@@ -955,12 +955,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Destino"
|
msgstr "Destino"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Erro de rede: %1"
|
msgstr "Erro de rede: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Falha ao entrar: %1"
|
msgstr "Falha ao entrar: %1"
|
||||||
@@ -4266,7 +4266,7 @@ msgstr "Copiar"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Settings"
|
#| msgid "Settings"
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
@@ -4442,52 +4442,52 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Homeserver:"
|
#| msgid "Homeserver:"
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Servidor doméstico:"
|
msgstr "Servidor doméstico:"
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No name"
|
#| msgid "No name"
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Sem nome"
|
msgstr "Sem nome"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No users available"
|
#| msgid "No users available"
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Nenhum usuário disponível"
|
msgstr "Nenhum usuário disponível"
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "@action:button"
|
#| msgctxt "@action:button"
|
||||||
#| msgid "Continue"
|
#| msgid "Continue"
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-10-31 10:08+0300\n"
|
"PO-Revision-Date: 2024-10-31 10:08+0300\n"
|
||||||
"Last-Translator: Olesya Gerasimenko <translation-team@basealt.ru>\n"
|
"Last-Translator: Olesya Gerasimenko <translation-team@basealt.ru>\n"
|
||||||
"Language-Team: Basealt Translation Team\n"
|
"Language-Team: Basealt Translation Team\n"
|
||||||
@@ -868,12 +868,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Назначение"
|
msgstr "Назначение"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Ошибка сети: %1"
|
msgstr "Ошибка сети: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Ошибка входа в систему: %1"
|
msgstr "Ошибка входа в систему: %1"
|
||||||
@@ -3911,7 +3911,7 @@ msgstr "Скопировать ссылку"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Сменить учётную запись"
|
msgstr "Сменить учётную запись"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Настроить"
|
msgstr "Настроить"
|
||||||
@@ -4093,47 +4093,47 @@ msgstr "Удалённая сторона отменила проверку: к
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "Проверка отменена: произошла неизвестная ошибка."
|
msgstr "Проверка отменена: произошла неизвестная ошибка."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Сервер отсутствует."
|
msgstr "Сервер отсутствует."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Проверка доступности сервера."
|
msgstr "Проверка доступности сервера."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Этот сервер является некорректным."
|
msgstr "Этот сервер является некорректным."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Для этого сервера отключена регистрация."
|
msgstr "Для этого сервера отключена регистрация."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Имя пользователя отсутствует."
|
msgstr "Имя пользователя отсутствует."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Проверка доступности имени пользователя."
|
msgstr "Проверка доступности имени пользователя."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Это имя пользователя недоступно."
|
msgstr "Это имя пользователя недоступно."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Продолжить"
|
msgstr "Продолжить"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Работает"
|
msgstr "Работает"
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-01-23 09:01+0100\n"
|
"PO-Revision-Date: 2024-01-23 09:01+0100\n"
|
||||||
"Last-Translator: Roman Paholik <wizzardsk@gmail.com>\n"
|
"Last-Translator: Roman Paholik <wizzardsk@gmail.com>\n"
|
||||||
"Language-Team: Slovak <kde-sk@linux.sk>\n"
|
"Language-Team: Slovak <kde-sk@linux.sk>\n"
|
||||||
@@ -957,12 +957,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Odoslať pozvanie"
|
msgstr "Odoslať pozvanie"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Chyba siete: %1"
|
msgstr "Chyba siete: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Prihlásenie zlyhalo: %1"
|
msgstr "Prihlásenie zlyhalo: %1"
|
||||||
@@ -4275,7 +4275,7 @@ msgstr "Kopírovať"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Settings"
|
#| msgid "Settings"
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
@@ -4451,52 +4451,52 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Homeserver:"
|
#| msgid "Homeserver:"
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Domáci server:"
|
msgstr "Domáci server:"
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No name"
|
#| msgid "No name"
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Žiadne meno"
|
msgstr "Žiadne meno"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "No users available"
|
#| msgid "No users available"
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Nie sú k dispozícii žiadni používatelia"
|
msgstr "Nie sú k dispozícii žiadni používatelia"
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "@action:button"
|
#| msgctxt "@action:button"
|
||||||
#| msgid "Continue"
|
#| msgid "Continue"
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Pokračovať"
|
msgstr "Pokračovať"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-10 07:42+0100\n"
|
"PO-Revision-Date: 2024-11-10 07:42+0100\n"
|
||||||
"Last-Translator: Matjaž Jeran <matjaz.jeran@amis.net>\n"
|
"Last-Translator: Matjaž Jeran <matjaz.jeran@amis.net>\n"
|
||||||
"Language-Team: Slovenian <lugos-slo@lugos.si>\n"
|
"Language-Team: Slovenian <lugos-slo@lugos.si>\n"
|
||||||
@@ -872,12 +872,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Cilj"
|
msgstr "Cilj"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Napaka omrežja: %1"
|
msgstr "Napaka omrežja: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Prijava je spodletela: %1"
|
msgstr "Prijava je spodletela: %1"
|
||||||
@@ -3894,7 +3894,7 @@ msgstr "Kopiraj povezavo"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Preklopi uporabnika"
|
msgstr "Preklopi uporabnika"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Odpri nastavitve"
|
msgstr "Odpri nastavitve"
|
||||||
@@ -4091,47 +4091,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "Verifikacija seje je bila preklicana zaradi neznane napake."
|
msgstr "Verifikacija seje je bila preklicana zaradi neznane napake."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Ni strežnika."
|
msgstr "Ni strežnika."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Preverjanje razpoložljivosti strežnika."
|
msgstr "Preverjanje razpoložljivosti strežnika."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "To ni veljavni strežnik."
|
msgstr "To ni veljavni strežnik."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Registracija za ta strežnik je onemogočena."
|
msgstr "Registracija za ta strežnik je onemogočena."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Ni uporabniškega imena."
|
msgstr "Ni uporabniškega imena."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Preverjanje razpoložljivosti uporabniškega imena."
|
msgstr "Preverjanje razpoložljivosti uporabniškega imena."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Tega uporabniškega imena ni na voljo."
|
msgstr "Tega uporabniškega imena ni na voljo."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Nadaljuj"
|
msgstr "Nadaljuj"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "V delovanju"
|
msgstr "V delovanju"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-22 19:48+0100\n"
|
"PO-Revision-Date: 2024-11-22 19:48+0100\n"
|
||||||
"Last-Translator: Stefan Asserhäll <stefan.asserhall@gmail.com>\n"
|
"Last-Translator: Stefan Asserhäll <stefan.asserhall@gmail.com>\n"
|
||||||
"Language-Team: Swedish <kde-i18n-doc@kde.org>\n"
|
"Language-Team: Swedish <kde-i18n-doc@kde.org>\n"
|
||||||
@@ -865,12 +865,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Mål"
|
msgstr "Mål"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Nätverksfel: %1"
|
msgstr "Nätverksfel: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Inloggning misslyckades: %1"
|
msgstr "Inloggning misslyckades: %1"
|
||||||
@@ -3883,7 +3883,7 @@ msgstr "Kopiera länk"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Byt användare"
|
msgstr "Byt användare"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Öppna inställningarna"
|
msgstr "Öppna inställningarna"
|
||||||
@@ -4080,47 +4080,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "Sessionsverifikationen avbröts på grund av ett okänt fel."
|
msgstr "Sessionsverifikationen avbröts på grund av ett okänt fel."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Ingen server."
|
msgstr "Ingen server."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Kontrollerar serverns tillgänglighet."
|
msgstr "Kontrollerar serverns tillgänglighet."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Det är inte en giltig server."
|
msgstr "Det är inte en giltig server."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Registrering för servern är inaktiverad."
|
msgstr "Registrering för servern är inaktiverad."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Inget användarnamn."
|
msgstr "Inget användarnamn."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Kontrollerar användarnamnets tillgänglighet."
|
msgstr "Kontrollerar användarnamnets tillgänglighet."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Användarnamnet är inte tillgängligt."
|
msgstr "Användarnamnet är inte tillgängligt."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Fortsätt"
|
msgstr "Fortsätt"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Arbetar"
|
msgstr "Arbetar"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-17 22:06+0530\n"
|
"PO-Revision-Date: 2024-11-17 22:06+0530\n"
|
||||||
"Last-Translator: Kishore G <kishore96@gmail.com>\n"
|
"Last-Translator: Kishore G <kishore96@gmail.com>\n"
|
||||||
"Language-Team: Tamil <kde-i18n-doc@kde.org>\n"
|
"Language-Team: Tamil <kde-i18n-doc@kde.org>\n"
|
||||||
@@ -865,12 +865,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "சேருமிடம்"
|
msgstr "சேருமிடம்"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "பிணைய சிக்கல்: %1"
|
msgstr "பிணைய சிக்கல்: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "நுழைவு தோல்வியடைந்தது: %1"
|
msgstr "நுழைவு தோல்வியடைந்தது: %1"
|
||||||
@@ -3872,7 +3872,7 @@ msgstr "இணைப்பை நகலெடு"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "பயனரை மாற்று"
|
msgstr "பயனரை மாற்று"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "அமைப்புகளை திற"
|
msgstr "அமைப்புகளை திற"
|
||||||
@@ -4057,47 +4057,47 @@ msgstr "சாவிகள் பொருந்தாமையால் தொ
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "தெரியாத சிக்கலால் அமர்வு உறுதிப்பாட்டு ரத்து செய்யப்பட்டது."
|
msgstr "தெரியாத சிக்கலால் அமர்வு உறுதிப்பாட்டு ரத்து செய்யப்பட்டது."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "சேவையகம் இல்லை."
|
msgstr "சேவையகம் இல்லை."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "சேவையகத்திற்கான இணைப்பு சரிபார்க்கப்படுகிறது"
|
msgstr "சேவையகத்திற்கான இணைப்பு சரிபார்க்கப்படுகிறது"
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "இது ஓர் முறையான சேவையகம் அல்ல."
|
msgstr "இது ஓர் முறையான சேவையகம் அல்ல."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "இச்சேவையகத்தில் கணக்குருவாக்கம் முடக்கப்பட்டுள்ளது."
|
msgstr "இச்சேவையகத்தில் கணக்குருவாக்கம் முடக்கப்பட்டுள்ளது."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "பயனர் பெயர் இல்லை."
|
msgstr "பயனர் பெயர் இல்லை."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "பெயர் கிடைக்கிறதா என சரிபார்க்கப்படுகிறது."
|
msgstr "பெயர் கிடைக்கிறதா என சரிபார்க்கப்படுகிறது."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "இந்த பெயர் கிடைக்கவில்லை"
|
msgstr "இந்த பெயர் கிடைக்கவில்லை"
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "தொடர்"
|
msgstr "தொடர்"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "வேலை செய்கிறது"
|
msgstr "வேலை செய்கிறது"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-01-08 19:47-0500\n"
|
"PO-Revision-Date: 2024-01-08 19:47-0500\n"
|
||||||
"Last-Translator: Weblate Admin <admin@example.com>\n"
|
"Last-Translator: Weblate Admin <admin@example.com>\n"
|
||||||
"Language-Team: Toki Pona <http://weblate.blackquill.cc/projects/ante-toki-pi-"
|
"Language-Team: Toki Pona <http://weblate.blackquill.cc/projects/ante-toki-pi-"
|
||||||
@@ -908,12 +908,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "pakala linluwi: %1"
|
msgstr "pakala linluwi: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "sina ken ala sijelo: %1"
|
msgstr "sina ken ala sijelo: %1"
|
||||||
@@ -4051,7 +4051,7 @@ msgstr "o tu e lipu tawa lipu jo"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -4226,52 +4226,52 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgid "Homeserver:"
|
#| msgid "Homeserver:"
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "nasin URL ilo:"
|
msgstr "nasin URL ilo:"
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "NAME OF TRANSLATORS"
|
#| msgctxt "NAME OF TRANSLATORS"
|
||||||
#| msgid "Your names"
|
#| msgid "Your names"
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "kulupu pi ante toki pi toki pona"
|
msgstr "kulupu pi ante toki pi toki pona"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, fuzzy, kde-format
|
#, fuzzy, kde-format
|
||||||
#| msgctxt "@action:button"
|
#| msgctxt "@action:button"
|
||||||
#| msgid "Continue"
|
#| msgid "Continue"
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "o awen tawa"
|
msgstr "o awen tawa"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-22 18:44+0300\n"
|
"PO-Revision-Date: 2024-11-22 18:44+0300\n"
|
||||||
"Last-Translator: Emir SARI <emir_sari@icloud.com>\n"
|
"Last-Translator: Emir SARI <emir_sari@icloud.com>\n"
|
||||||
"Language-Team: Turkish <kde-l10n-tr@kde.org>\n"
|
"Language-Team: Turkish <kde-l10n-tr@kde.org>\n"
|
||||||
@@ -868,12 +868,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Hedef"
|
msgstr "Hedef"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Ağ hatası: %1"
|
msgstr "Ağ hatası: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Oturum açma başarısız: %1"
|
msgstr "Oturum açma başarısız: %1"
|
||||||
@@ -3881,7 +3881,7 @@ msgstr "Bağlantıyı Kopyala"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Kullanıcı değiştir"
|
msgstr "Kullanıcı değiştir"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Ayarları aç"
|
msgstr "Ayarları aç"
|
||||||
@@ -4078,47 +4078,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "Oturum doğrulaması, bilinmeyen bir hata yüzünden iptal edildi."
|
msgstr "Oturum doğrulaması, bilinmeyen bir hata yüzünden iptal edildi."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Sunucu yok."
|
msgstr "Sunucu yok."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Sunucu kullanılabilirliği denetleniyor."
|
msgstr "Sunucu kullanılabilirliği denetleniyor."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Bu, geçerli bir sunucu değil."
|
msgstr "Bu, geçerli bir sunucu değil."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Bu sunucu için kayıt işlemi devre dışı."
|
msgstr "Bu sunucu için kayıt işlemi devre dışı."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Kullanıcı adı yok."
|
msgstr "Kullanıcı adı yok."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Kullanıcı adı kullanılabilirliği denetleniyor."
|
msgstr "Kullanıcı adı kullanılabilirliği denetleniyor."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Bu kullanıcı adı kullanılamıyor."
|
msgstr "Bu kullanıcı adı kullanılamıyor."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Sürdür"
|
msgstr "Sürdür"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Çalışıyor"
|
msgstr "Çalışıyor"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-10 23:14+0200\n"
|
"PO-Revision-Date: 2024-11-10 23:14+0200\n"
|
||||||
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
|
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
|
||||||
"Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
|
"Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
|
||||||
@@ -871,12 +871,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "Призначення"
|
msgstr "Призначення"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "Помилка у мережі: %1"
|
msgstr "Помилка у мережі: %1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "Невдала спроба увійти: %1"
|
msgstr "Невдала спроба увійти: %1"
|
||||||
@@ -3913,7 +3913,7 @@ msgstr "Копіювати посилання"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Змінити користувача"
|
msgstr "Змінити користувача"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "Відкрити налаштування"
|
msgstr "Відкрити налаштування"
|
||||||
@@ -4112,47 +4112,47 @@ msgstr ""
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "Перевірку сеансу скасовано через невідому помилку."
|
msgstr "Перевірку сеансу скасовано через невідому помилку."
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "Немає сервера."
|
msgstr "Немає сервера."
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "Перевірка доступності сервера."
|
msgstr "Перевірка доступності сервера."
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "Цей сервер є некоректним."
|
msgstr "Цей сервер є некоректним."
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "Реєстрацію на цьому сервері вимкнено."
|
msgstr "Реєстрацію на цьому сервері вимкнено."
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "Немає імені користувача."
|
msgstr "Немає імені користувача."
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "Перевірка доступності імені користувача."
|
msgstr "Перевірка доступності імені користувача."
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "Це ім’я користувача є недоступним."
|
msgstr "Це ім’я користувача є недоступним."
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Продовжити"
|
msgstr "Продовжити"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "Працюємо"
|
msgstr "Працюємо"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: kdeorg\n"
|
"Project-Id-Version: kdeorg\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-04-23 19:24\n"
|
"PO-Revision-Date: 2024-04-23 19:24\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Simplified\n"
|
"Language-Team: Chinese Simplified\n"
|
||||||
@@ -859,12 +859,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "目标文件夹"
|
msgstr "目标文件夹"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "网络错误:%1"
|
msgstr "网络错误:%1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "登录失败:%1"
|
msgstr "登录失败:%1"
|
||||||
@@ -3842,7 +3842,7 @@ msgstr "复制链接"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "切换用户"
|
msgstr "切换用户"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "打开设置"
|
msgstr "打开设置"
|
||||||
@@ -4018,47 +4018,47 @@ msgstr "由于密钥不匹配,另一端取消了会话验证。"
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "由于未知错误,会话验证被取消。"
|
msgstr "由于未知错误,会话验证被取消。"
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "无服务器。"
|
msgstr "无服务器。"
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "正在检查服务器状态"
|
msgstr "正在检查服务器状态"
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "此服务器无效。"
|
msgstr "此服务器无效。"
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "此服务器已禁止注册。"
|
msgstr "此服务器已禁止注册。"
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "无用户名。"
|
msgstr "无用户名。"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "正在检查用户名是否可用。"
|
msgstr "正在检查用户名是否可用。"
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "该用户名不可用。"
|
msgstr "该用户名不可用。"
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "继续"
|
msgstr "继续"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "正在处理"
|
msgstr "正在处理"
|
||||||
@@ -4164,12 +4164,12 @@ msgstr "密码不匹配"
|
|||||||
#: src/settings/AccountEditorPage.qml:207
|
#: src/settings/AccountEditorPage.qml:207
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Email Addresses"
|
msgid "Email Addresses"
|
||||||
msgstr "电子邮件地址"
|
msgstr ""
|
||||||
|
|
||||||
#: src/settings/AccountEditorPage.qml:213
|
#: src/settings/AccountEditorPage.qml:213
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Phone Numbers"
|
msgid "Phone Numbers"
|
||||||
msgstr "电话号码"
|
msgstr ""
|
||||||
|
|
||||||
#: src/settings/AccountEditorPage.qml:218
|
#: src/settings/AccountEditorPage.qml:218
|
||||||
#, kde-format
|
#, kde-format
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: neochat\n"
|
"Project-Id-Version: neochat\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||||
"POT-Creation-Date: 2024-11-23 02:27+0000\n"
|
"POT-Creation-Date: 2024-12-24 02:31+0000\n"
|
||||||
"PO-Revision-Date: 2024-11-26 22:02+0900\n"
|
"PO-Revision-Date: 2024-11-26 22:02+0900\n"
|
||||||
"Last-Translator: Kisaragi Hiu <mail@kisaragi-hiu.com>\n"
|
"Last-Translator: Kisaragi Hiu <mail@kisaragi-hiu.com>\n"
|
||||||
"Language-Team: Traditional Chinese <zh-l10n@lists.slat.org>\n"
|
"Language-Team: Traditional Chinese <zh-l10n@lists.slat.org>\n"
|
||||||
@@ -863,12 +863,12 @@ msgctxt "The location being downloaded to"
|
|||||||
msgid "Destination"
|
msgid "Destination"
|
||||||
msgstr "目的地"
|
msgstr "目的地"
|
||||||
|
|
||||||
#: src/login.cpp:88 src/login.cpp:103
|
#: src/login.cpp:87 src/login.cpp:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Network Error: %1"
|
msgid "Network Error: %1"
|
||||||
msgstr "網路錯誤:%1"
|
msgstr "網路錯誤:%1"
|
||||||
|
|
||||||
#: src/login.cpp:96
|
#: src/login.cpp:95
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Login Failed: %1"
|
msgid "Login Failed: %1"
|
||||||
msgstr "登入失敗:%1"
|
msgstr "登入失敗:%1"
|
||||||
@@ -3845,7 +3845,7 @@ msgstr "複製連結"
|
|||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "切換使用者"
|
msgstr "切換使用者"
|
||||||
|
|
||||||
#: src/qml/UserInfo.qml:101
|
#: src/qml/UserInfo.qml:102
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Open Settings"
|
msgid "Open Settings"
|
||||||
msgstr "開啟設定"
|
msgstr "開啟設定"
|
||||||
@@ -4021,47 +4021,47 @@ msgstr "遠端由於雙方金鑰不相符而取消了工作階段驗證。"
|
|||||||
msgid "The session verification was canceled due to an unknown error."
|
msgid "The session verification was canceled due to an unknown error."
|
||||||
msgstr "工作階段驗證由於不明錯誤而取消。"
|
msgstr "工作階段驗證由於不明錯誤而取消。"
|
||||||
|
|
||||||
#: src/registration.cpp:308
|
#: src/registration.cpp:305
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No server."
|
msgid "No server."
|
||||||
msgstr "無伺服器。"
|
msgstr "無伺服器。"
|
||||||
|
|
||||||
#: src/registration.cpp:310
|
#: src/registration.cpp:307
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking Server availability."
|
msgid "Checking Server availability."
|
||||||
msgstr "正在檢查伺服器可用性。"
|
msgstr "正在檢查伺服器可用性。"
|
||||||
|
|
||||||
#: src/registration.cpp:312
|
#: src/registration.cpp:309
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This is not a valid server."
|
msgid "This is not a valid server."
|
||||||
msgstr "這不是一個有效的伺服器。"
|
msgstr "這不是一個有效的伺服器。"
|
||||||
|
|
||||||
#: src/registration.cpp:314
|
#: src/registration.cpp:311
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Registration for this server is disabled."
|
msgid "Registration for this server is disabled."
|
||||||
msgstr "此伺服器已停用註冊。"
|
msgstr "此伺服器已停用註冊。"
|
||||||
|
|
||||||
#: src/registration.cpp:316
|
#: src/registration.cpp:313
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "No username."
|
msgid "No username."
|
||||||
msgstr "無使用者名稱。"
|
msgstr "無使用者名稱。"
|
||||||
|
|
||||||
#: src/registration.cpp:318
|
#: src/registration.cpp:315
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Checking username availability."
|
msgid "Checking username availability."
|
||||||
msgstr "正在檢查使用者名稱是否可用。"
|
msgstr "正在檢查使用者名稱是否可用。"
|
||||||
|
|
||||||
#: src/registration.cpp:320
|
#: src/registration.cpp:317
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "This username is not available."
|
msgid "This username is not available."
|
||||||
msgstr "無法使用這個使用者名稱。"
|
msgstr "無法使用這個使用者名稱。"
|
||||||
|
|
||||||
#: src/registration.cpp:322
|
#: src/registration.cpp:319
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "繼續"
|
msgstr "繼續"
|
||||||
|
|
||||||
#: src/registration.cpp:324
|
#: src/registration.cpp:321
|
||||||
#, kde-format
|
#, kde-format
|
||||||
msgid "Working"
|
msgid "Working"
|
||||||
msgstr "處理中"
|
msgstr "處理中"
|
||||||
|
|||||||
@@ -27,6 +27,10 @@ apps:
|
|||||||
|
|
||||||
compression: lzo
|
compression: lzo
|
||||||
|
|
||||||
|
package-repositories:
|
||||||
|
- type: apt
|
||||||
|
ppa: ubuntu-toolchain-r/test
|
||||||
|
|
||||||
slots:
|
slots:
|
||||||
session-dbus-interface:
|
session-dbus-interface:
|
||||||
interface: dbus
|
interface: dbus
|
||||||
@@ -76,6 +80,7 @@ parts:
|
|||||||
source-depth: 1
|
source-depth: 1
|
||||||
plugin: cmake
|
plugin: cmake
|
||||||
build-environment:
|
build-environment:
|
||||||
|
- PATH: /snap/bin:${PATH}
|
||||||
- PKG_CONFIG_PATH: $CRAFT_STAGE/usr/lib/$CRAFT_ARCH_TRIPLET/pkgconfig:$PKG_CONFIG_PATH
|
- PKG_CONFIG_PATH: $CRAFT_STAGE/usr/lib/$CRAFT_ARCH_TRIPLET/pkgconfig:$PKG_CONFIG_PATH
|
||||||
cmake-parameters:
|
cmake-parameters:
|
||||||
- -DCMAKE_INSTALL_PREFIX=/usr
|
- -DCMAKE_INSTALL_PREFIX=/usr
|
||||||
@@ -92,10 +97,16 @@ parts:
|
|||||||
- olm
|
- olm
|
||||||
- qtkeychain
|
- qtkeychain
|
||||||
source: https://github.com/quotient-im/libQuotient.git
|
source: https://github.com/quotient-im/libQuotient.git
|
||||||
source-tag: 0.9.0
|
source-tag: 0.9.1
|
||||||
source-depth: 1
|
source-depth: 1
|
||||||
plugin: cmake
|
plugin: cmake
|
||||||
|
build-environment:
|
||||||
|
- PATH: /snap/bin:${PATH}
|
||||||
|
build-snaps:
|
||||||
|
- cmake
|
||||||
build-packages:
|
build-packages:
|
||||||
|
- gcc-13
|
||||||
|
- g++-13
|
||||||
- libssl-dev
|
- libssl-dev
|
||||||
cmake-parameters:
|
cmake-parameters:
|
||||||
- -DCMAKE_INSTALL_PREFIX=/usr
|
- -DCMAKE_INSTALL_PREFIX=/usr
|
||||||
@@ -103,6 +114,9 @@ parts:
|
|||||||
- -DBUILD_TESTING=OFF
|
- -DBUILD_TESTING=OFF
|
||||||
- -DQuotient_ENABLE_E2EE=ON
|
- -DQuotient_ENABLE_E2EE=ON
|
||||||
- -DBUILD_WITH_QT6=ON
|
- -DBUILD_WITH_QT6=ON
|
||||||
|
override-build: |
|
||||||
|
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100 --slave /usr/bin/g++ g++ /usr/bin/g++-13 --slave /usr/bin/gcov gcov /usr/bin/gcov-13
|
||||||
|
craftctl default
|
||||||
prime:
|
prime:
|
||||||
- -usr/include
|
- -usr/include
|
||||||
- -usr/lib/*/pkgconfig
|
- -usr/lib/*/pkgconfig
|
||||||
@@ -113,6 +127,8 @@ parts:
|
|||||||
source-tag: 'v0.3.0'
|
source-tag: 'v0.3.0'
|
||||||
source-depth: 1
|
source-depth: 1
|
||||||
plugin: cmake
|
plugin: cmake
|
||||||
|
build-environment:
|
||||||
|
- PATH: /snap/bin:${PATH}
|
||||||
cmake-parameters:
|
cmake-parameters:
|
||||||
- -DCMAKE_INSTALL_PREFIX=/usr
|
- -DCMAKE_INSTALL_PREFIX=/usr
|
||||||
- -DCMAKE_BUILD_TYPE=Release
|
- -DCMAKE_BUILD_TYPE=Release
|
||||||
@@ -130,9 +146,10 @@ parts:
|
|||||||
- kquickimageeditor
|
- kquickimageeditor
|
||||||
parse-info:
|
parse-info:
|
||||||
- usr/share/metainfo/org.kde.neochat.appdata.xml
|
- usr/share/metainfo/org.kde.neochat.appdata.xml
|
||||||
source: https://invent.kde.org/network/neochat.git
|
source: .
|
||||||
source-tag: 'v24.08.1'
|
|
||||||
plugin: cmake
|
plugin: cmake
|
||||||
|
build-environment:
|
||||||
|
- PATH: /snap/bin:${PATH}
|
||||||
build-packages:
|
build-packages:
|
||||||
- cmark
|
- cmark
|
||||||
- libcmark-dev
|
- libcmark-dev
|
||||||
|
|||||||
@@ -319,7 +319,8 @@ void ChatBarCache::postMessage()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
room->postMessage(text(), sendText, *std::get<std::optional<Quotient::RoomMessageEvent::MsgType>>(result), replyId(), editId(), threadId());
|
auto type = std::get<std::optional<Quotient::RoomMessageEvent::MsgType>>(result);
|
||||||
|
room->postMessage(text(), sendText, type ? *type : Quotient::RoomMessageEvent::MsgType::Text, replyId(), editId(), threadId());
|
||||||
clearCache();
|
clearCache();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -423,10 +423,14 @@ void Controller::setTestMode(bool test)
|
|||||||
|
|
||||||
void Controller::removeConnection(const QString &userId)
|
void Controller::removeConnection(const QString &userId)
|
||||||
{
|
{
|
||||||
if (m_connectionsLoading.contains(userId) && m_connectionsLoading[userId]) {
|
// When loadAccessTokenFromKeyChain() fails m_connectionsLoading won't have an
|
||||||
auto connection = m_connectionsLoading[userId];
|
// entry for it so we need to check both separately.
|
||||||
|
if (m_accountsLoading.contains(userId)) {
|
||||||
m_accountsLoading.removeAll(userId);
|
m_accountsLoading.removeAll(userId);
|
||||||
Q_EMIT accountsLoadingChanged();
|
Q_EMIT accountsLoadingChanged();
|
||||||
|
}
|
||||||
|
if (m_connectionsLoading.contains(userId) && m_connectionsLoading[userId]) {
|
||||||
|
auto connection = m_connectionsLoading[userId];
|
||||||
SettingsGroup("Accounts"_ls).remove(userId);
|
SettingsGroup("Accounts"_ls).remove(userId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,8 +25,7 @@ void LoginHelper::init()
|
|||||||
m_connection = new NeoChatConnection();
|
m_connection = new NeoChatConnection();
|
||||||
m_matrixId = QString();
|
m_matrixId = QString();
|
||||||
m_password = QString();
|
m_password = QString();
|
||||||
m_deviceName = QStringLiteral("NeoChat %1 %2 %3 %4")
|
m_deviceName = QStringLiteral("NeoChat");
|
||||||
.arg(QSysInfo::machineHostName(), QSysInfo::productType(), QSysInfo::productVersion(), QSysInfo::currentCpuArchitecture());
|
|
||||||
m_supportsSso = false;
|
m_supportsSso = false;
|
||||||
m_supportsPassword = false;
|
m_supportsPassword = false;
|
||||||
m_ssoUrl = QUrl();
|
m_ssoUrl = QUrl();
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ Comment[ru]=Поиск комнат NeoChat
|
|||||||
Comment[sl]=Najdi sobe v NeoChatu
|
Comment[sl]=Najdi sobe v NeoChatu
|
||||||
Comment[sv]=Sök efter rum i NeoChat
|
Comment[sv]=Sök efter rum i NeoChat
|
||||||
Comment[ta]=நியோச்சாட்டில் அரங்குகளை கண்டுபிடிக்கும்
|
Comment[ta]=நியோச்சாட்டில் அரங்குகளை கண்டுபிடிக்கும்
|
||||||
Comment[tr]=NeoChat'te odalar bulun
|
Comment[tr]=NeoChat’te odalar bulun
|
||||||
Comment[uk]=Пошук кімнат у NeoChat
|
Comment[uk]=Пошук кімнат у NeoChat
|
||||||
Comment[x-test]=xxFind rooms in NeoChatxx
|
Comment[x-test]=xxFind rooms in NeoChatxx
|
||||||
Comment[zh_CN]=在 NeoChat 查找聊天室
|
Comment[zh_CN]=在 NeoChat 查找聊天室
|
||||||
|
|||||||
@@ -67,7 +67,7 @@
|
|||||||
"Description[uk]": "Оприлюднити за допомогою NeoChat",
|
"Description[uk]": "Оприлюднити за допомогою NeoChat",
|
||||||
"Description[x-test]": "xxShare via NeoChatxx",
|
"Description[x-test]": "xxShare via NeoChatxx",
|
||||||
"Description[zh_TW]": "透過 NeoChat 分享",
|
"Description[zh_TW]": "透過 NeoChat 分享",
|
||||||
"Icon": "org.kde.neochat",
|
"Icon": "org.kde.neochat.tray",
|
||||||
"License": "GPL",
|
"License": "GPL",
|
||||||
"Name": "NeoChat",
|
"Name": "NeoChat",
|
||||||
"Name[ar]": "نيوتشات",
|
"Name[ar]": "نيوتشات",
|
||||||
|
|||||||
@@ -212,7 +212,7 @@ Loader {
|
|||||||
model: WebShortcutModel {
|
model: WebShortcutModel {
|
||||||
id: webshortcutmodel
|
id: webshortcutmodel
|
||||||
selectedText: root.selectedText.length > 0 ? root.selectedText : root.plainText
|
selectedText: root.selectedText.length > 0 ? root.selectedText : root.plainText
|
||||||
onOpenUrl: RoomManager.resolveResource(url)
|
onOpenUrl: url => RoomManager.resolveResource(url.toString())
|
||||||
}
|
}
|
||||||
delegate: QQC2.MenuItem {
|
delegate: QQC2.MenuItem {
|
||||||
text: model.display
|
text: model.display
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ Kirigami.SearchDialog {
|
|||||||
onTextChanged: RoomManager.sortFilterRoomListModel.filterText = text
|
onTextChanged: RoomManager.sortFilterRoomListModel.filterText = text
|
||||||
model: RoomManager.sortFilterRoomListModel
|
model: RoomManager.sortFilterRoomListModel
|
||||||
emptyText: i18nc("Placeholder message", "No room found")
|
emptyText: i18nc("Placeholder message", "No room found")
|
||||||
|
parent: QQC2.Overlay.overlay
|
||||||
|
|
||||||
delegate: RoomDelegate {
|
delegate: RoomDelegate {
|
||||||
connection: root.connection
|
connection: root.connection
|
||||||
|
|||||||
@@ -198,7 +198,7 @@ Kirigami.Page {
|
|||||||
Shortcut {
|
Shortcut {
|
||||||
sequence: StandardKey.Cancel
|
sequence: StandardKey.Cancel
|
||||||
onActivated: {
|
onActivated: {
|
||||||
if (!timelineViewLoader.item.atYEnd || root.currentRoom.hasUnreadMessages) {
|
if (!timelineViewLoader.item.atYEnd || !root.currentRoom.partiallyReadStats.empty()) {
|
||||||
timelineViewLoader.item.goToLastMessage();
|
timelineViewLoader.item.goToLastMessage();
|
||||||
root.currentRoom.markAllMessagesAsRead();
|
root.currentRoom.markAllMessagesAsRead();
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -186,7 +186,7 @@ QQC2.ScrollView {
|
|||||||
padding: Kirigami.Units.largeSpacing
|
padding: Kirigami.Units.largeSpacing
|
||||||
|
|
||||||
z: 2
|
z: 2
|
||||||
visible: (root.currentRoom?.hasUnreadMessages ?? false)
|
visible: (!root.currentRoom?.partiallyReadStats.empty())
|
||||||
|
|
||||||
text: root.currentRoom.readMarkerLoaded ? i18n("Jump to first unread message") : i18n("Jump to oldest loaded message")
|
text: root.currentRoom.readMarkerLoaded ? i18n("Jump to first unread message") : i18n("Jump to oldest loaded message")
|
||||||
action: Kirigami.Action {
|
action: Kirigami.Action {
|
||||||
@@ -195,7 +195,7 @@ QQC2.ScrollView {
|
|||||||
root.focusChatBar();
|
root.focusChatBar();
|
||||||
}
|
}
|
||||||
goReadMarkerFab.textChanged()
|
goReadMarkerFab.textChanged()
|
||||||
messageListView.goToEvent(root.currentRoom.readMarkerEventId);
|
messageListView.goToEvent(root.currentRoom.lastFullyReadEventId);
|
||||||
}
|
}
|
||||||
icon.name: "go-up"
|
icon.name: "go-up"
|
||||||
shortcut: "Shift+PgUp"
|
shortcut: "Shift+PgUp"
|
||||||
@@ -354,7 +354,7 @@ QQC2.ScrollView {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function allUnreadVisible() {
|
function allUnreadVisible() {
|
||||||
let readMarkerRow = eventToIndex(root.currentRoom.readMarkerEventId);
|
let readMarkerRow = eventToIndex(root.currentRoom.lastFullyReadEventId);
|
||||||
if (readMarkerRow >= 0 && readMarkerRow < firstVisibleIndex() && messageListView.atYEnd) {
|
if (readMarkerRow >= 0 && readMarkerRow < firstVisibleIndex() && messageListView.atYEnd) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -91,6 +91,7 @@ RowLayout {
|
|||||||
id: switchUserButton
|
id: switchUserButton
|
||||||
text: i18n("Switch User")
|
text: i18n("Switch User")
|
||||||
icon.name: "system-switch-user"
|
icon.name: "system-switch-user"
|
||||||
|
shortcut: "Ctrl+U"
|
||||||
onTriggered: accountSwitchDialog.createObject(QQC2.Overlay.overlay, {
|
onTriggered: accountSwitchDialog.createObject(QQC2.Overlay.overlay, {
|
||||||
connection: root.connection
|
connection: root.connection
|
||||||
}).open();
|
}).open();
|
||||||
@@ -105,11 +106,6 @@ RowLayout {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
Shortcut {
|
|
||||||
sequence: "Ctrl+U"
|
|
||||||
onActivated: switchUserButton.toggle()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
// QQC2.ToolButton {
|
// QQC2.ToolButton {
|
||||||
// Layout.alignment: Qt.AlignRight
|
// Layout.alignment: Qt.AlignRight
|
||||||
|
|||||||
@@ -93,10 +93,7 @@ void Registration::registerAccount()
|
|||||||
auto matrixId = "@%1:%2"_ls.arg(m_username, m_homeserver);
|
auto matrixId = "@%1:%2"_ls.arg(m_username, m_homeserver);
|
||||||
connection->resolveServer(matrixId);
|
connection->resolveServer(matrixId);
|
||||||
|
|
||||||
auto displayName = "NeoChat %1 %2 %3 %4"_ls.arg(QSysInfo::machineHostName(),
|
auto displayName = "NeoChat"_ls;
|
||||||
QSysInfo::productType(),
|
|
||||||
QSysInfo::productVersion(),
|
|
||||||
QSysInfo::currentCpuArchitecture());
|
|
||||||
connection->loginWithPassword(matrixId, m_password, displayName);
|
connection->loginWithPassword(matrixId, m_password, displayName);
|
||||||
|
|
||||||
connect(connection, &Connection::connected, this, [this, displayName, connection] {
|
connect(connection, &Connection::connected, this, [this, displayName, connection] {
|
||||||
|
|||||||
@@ -142,15 +142,6 @@ TextHandler::handleRecieveRichText(Qt::TextFormat inputFormat, const NeoChatRoom
|
|||||||
// If the image does not have an explicit width, but has a vertical-align it's most likely an emoticon.
|
// If the image does not have an explicit width, but has a vertical-align it's most likely an emoticon.
|
||||||
// We must do some pre-processing for it to show up nicely in and around text.
|
// We must do some pre-processing for it to show up nicely in and around text.
|
||||||
if (isEmoticon) {
|
if (isEmoticon) {
|
||||||
// Remove any pre-existing height
|
|
||||||
extraAttributes.removeIf([](const QString &s) {
|
|
||||||
return s.contains(QStringLiteral("height="));
|
|
||||||
});
|
|
||||||
|
|
||||||
// Make sure it's the same height as the rest of the text
|
|
||||||
const QFontMetrics metrics(QGuiApplication::font());
|
|
||||||
extraAttributes.append(QStringLiteral("height=\"%1\"").arg(metrics.height()));
|
|
||||||
|
|
||||||
// Align it properly
|
// Align it properly
|
||||||
extraAttributes.append(QStringLiteral("style=\"%1\"").arg(customEmojiStyle));
|
extraAttributes.append(QStringLiteral("style=\"%1\"").arg(customEmojiStyle));
|
||||||
}
|
}
|
||||||
@@ -505,6 +496,7 @@ QString TextHandler::cleanAttributes(const QString &tag, const QString &tagStrin
|
|||||||
nextAttribute = tagString.mid(nextAttributeIndex, nextSpaceIndex - nextAttributeIndex);
|
nextAttribute = tagString.mid(nextAttributeIndex, nextSpaceIndex - nextAttributeIndex);
|
||||||
|
|
||||||
if (isAllowedAttribute(tag, getAttributeType(nextAttribute))) {
|
if (isAllowedAttribute(tag, getAttributeType(nextAttribute))) {
|
||||||
|
QString style;
|
||||||
if (tag == QStringLiteral("img") && getAttributeType(nextAttribute) == QStringLiteral("src")) {
|
if (tag == QStringLiteral("img") && getAttributeType(nextAttribute) == QStringLiteral("src")) {
|
||||||
QString attributeData = TextRegex::attributeData.match(getAttributeData(nextAttribute)).captured(1);
|
QString attributeData = TextRegex::attributeData.match(getAttributeData(nextAttribute)).captured(1);
|
||||||
if (isAllowedLink(attributeData, true)) {
|
if (isAllowedLink(attributeData, true)) {
|
||||||
@@ -525,9 +517,19 @@ QString TextHandler::cleanAttributes(const QString &tag, const QString &tagStrin
|
|||||||
if (attributeData == customEmojiStyle) {
|
if (attributeData == customEmojiStyle) {
|
||||||
outputString.append(u' ' + nextAttribute);
|
outputString.append(u' ' + nextAttribute);
|
||||||
}
|
}
|
||||||
|
} else if (getAttributeType(nextAttribute) == QStringLiteral("data-mx-color")) {
|
||||||
|
const QString attributeData = TextRegex::attributeData.match(getAttributeData(nextAttribute)).captured(1);
|
||||||
|
style.append(u"color: " + attributeData + u';');
|
||||||
|
} else if (getAttributeType(nextAttribute) == QStringLiteral("data-mx-bg-color")) {
|
||||||
|
const QString attributeData = TextRegex::attributeData.match(getAttributeData(nextAttribute)).captured(1);
|
||||||
|
style.append(u"background-color: " + attributeData + u';');
|
||||||
} else {
|
} else {
|
||||||
outputString.append(u' ' + nextAttribute);
|
outputString.append(u' ' + nextAttribute);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!style.isEmpty()) {
|
||||||
|
outputString.append(u" style=\"" + style + u'"');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
nextAttributeIndex = nextSpaceIndex + 1;
|
nextAttributeIndex = nextSpaceIndex + 1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user