Compare commits
84 Commits
v23.07.90
...
work/tobia
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fe3516b044 | ||
|
|
794683b5d2 | ||
|
|
9f7f5409bd | ||
|
|
7d7b9d7ae0 | ||
|
|
c7c892c51c | ||
|
|
97903a7cb0 | ||
|
|
0c8f488ac4 | ||
|
|
88368cefaa | ||
|
|
ab4bb41979 | ||
|
|
c2398b19dc | ||
|
|
4b3dac025f | ||
|
|
9eeff06328 | ||
|
|
657a8291d0 | ||
|
|
bc4431462a | ||
|
|
fdd8a62873 | ||
|
|
c164228894 | ||
|
|
7d418f0883 | ||
|
|
e90aecbead | ||
|
|
221c27fbbe | ||
|
|
1907404124 | ||
|
|
81e953dd8c | ||
|
|
9311052e39 | ||
|
|
648fff20f2 | ||
|
|
980211f36a | ||
|
|
25e0e3fa8e | ||
|
|
403c1ed391 | ||
|
|
c2f76612cf | ||
|
|
2a651b8946 | ||
|
|
00c0d1c276 | ||
|
|
0162d91b60 | ||
|
|
5f41b7b4c1 | ||
|
|
d9691bac7c | ||
|
|
719b916837 | ||
|
|
f9514fe925 | ||
|
|
399b9e6944 | ||
|
|
00cf5c8a5b | ||
|
|
02f26424e2 | ||
|
|
3bd639775a | ||
|
|
163c1ef407 | ||
|
|
9997b1074a | ||
|
|
f52a25717b | ||
|
|
5746c24b73 | ||
|
|
dca1b22521 | ||
|
|
b15f1461d8 | ||
|
|
24fd7a0f5b | ||
|
|
0ac3932303 | ||
|
|
807a9ee779 | ||
|
|
4f32a168cd | ||
|
|
45d2da56c7 | ||
|
|
d794e26d62 | ||
|
|
42cc42642d | ||
|
|
ffd6205bd1 | ||
|
|
9ba6b2f0a5 | ||
|
|
f8d3e25f8e | ||
|
|
75cd77facb | ||
|
|
8546d76a54 | ||
|
|
00b7f68a03 | ||
|
|
b486cb905c | ||
|
|
cdd5c9f484 | ||
|
|
3e6c426397 | ||
|
|
847f41e1ad | ||
|
|
ed5bb270ff | ||
|
|
c8b4da2b96 | ||
|
|
ba5445e135 | ||
|
|
1cca39e105 | ||
|
|
dbf67b984e | ||
|
|
c9126cf38e | ||
|
|
13988da4fc | ||
|
|
0847839abc | ||
|
|
6b55e502a0 | ||
|
|
8f81629ac1 | ||
|
|
7f459cb90f | ||
|
|
420e195313 | ||
|
|
3263a69880 | ||
|
|
b060881f06 | ||
|
|
701e786c1f | ||
|
|
646c8ba8fe | ||
|
|
9b31fdea10 | ||
|
|
ce5dfdee16 | ||
|
|
918e805718 | ||
|
|
7debf47833 | ||
|
|
2c142c36e6 | ||
|
|
3279142498 | ||
|
|
0e08a1aa7e |
@@ -58,5 +58,9 @@ Dependencies:
|
||||
'require':
|
||||
'frameworks/kdbusaddons': '@latest-kf6'
|
||||
|
||||
- 'on': ['Linux/Qt6', 'Linux/Qt5']
|
||||
'require':
|
||||
'sdk/selenium-webdriver-at-spi': '@latest-kf6'
|
||||
|
||||
Options:
|
||||
require-passing-tests-on: [ 'Linux/Qt5', 'FreeBSD' ]
|
||||
require-passing-tests-on: [ 'Linux/Qt5', 'FreeBSD', 'Windows' ]
|
||||
|
||||
@@ -8,8 +8,8 @@ cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
# KDE Applications version, managed by release script.
|
||||
set(RELEASE_SERVICE_VERSION_MAJOR "23")
|
||||
set(RELEASE_SERVICE_VERSION_MINOR "07")
|
||||
set(RELEASE_SERVICE_VERSION_MICRO "90")
|
||||
set(RELEASE_SERVICE_VERSION_MINOR "11")
|
||||
set(RELEASE_SERVICE_VERSION_MICRO "70")
|
||||
set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
|
||||
|
||||
project(NeoChat VERSION ${RELEASE_SERVICE_VERSION})
|
||||
@@ -93,12 +93,6 @@ set_package_properties(KF${QT_MAJOR_VERSION}Kirigami2 PROPERTIES
|
||||
)
|
||||
find_package(KF${QT_MAJOR_VERSION}KirigamiAddons 0.7.2 REQUIRED)
|
||||
|
||||
find_package(Qt${QT_MAJOR_VERSION}Keychain)
|
||||
set_package_properties(Qt${QT_MAJOR_VERSION}Keychain PROPERTIES
|
||||
TYPE REQUIRED
|
||||
PURPOSE "Secure storage of account secrets"
|
||||
)
|
||||
|
||||
if(ANDROID)
|
||||
find_package(OpenSSL)
|
||||
set_package_properties(OpenSSL PROPERTIES
|
||||
@@ -130,6 +124,11 @@ set_package_properties(Quotient${QUOTIENT_SUFFIX} PROPERTIES
|
||||
PURPOSE "Talk with matrix server"
|
||||
)
|
||||
|
||||
if (NOT TARGET Olm::Olm)
|
||||
message(FATAL_ERROR "NeoChat requires Quotient with the E2EE feature enabled")
|
||||
endif()
|
||||
|
||||
|
||||
find_package(cmark)
|
||||
set_package_properties(cmark PROPERTIES
|
||||
TYPE REQUIRED
|
||||
@@ -160,10 +159,6 @@ set_package_properties(KF${QT_MAJOR_VERSION}DocTools PROPERTIES DESCRIPTION
|
||||
TYPE OPTIONAL
|
||||
)
|
||||
|
||||
if(NOT Quotient${QUOTIENT_SUFFIX}_VERSION_MINOR GREATER 6)
|
||||
cmake_policy(SET CMP0063 OLD)
|
||||
endif()
|
||||
|
||||
if(ANDROID)
|
||||
find_package(Sqlite3)
|
||||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/android/version.gradle.in ${CMAKE_BINARY_DIR}/version.gradle)
|
||||
@@ -179,9 +174,11 @@ install(FILES org.kde.neochat.tray.svg DESTINATION ${KDE_INSTALL_FULL_ICONDIR}/h
|
||||
add_definitions(-DQT_NO_FOREACH)
|
||||
|
||||
add_subdirectory(src)
|
||||
if (BUILD_TESTING AND Quotient${QUOTIENT_SUFFIX}_VERSION_MINOR GREATER 6)
|
||||
|
||||
if (BUILD_TESTING)
|
||||
find_package(Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} NO_MODULE COMPONENTS Test)
|
||||
add_subdirectory(autotests)
|
||||
add_subdirectory(appiumtests)
|
||||
endif()
|
||||
|
||||
if(KF${QT_MAJOR_VERSION}DocTools_FOUND)
|
||||
|
||||
23
appiumtests/CMakeLists.txt
Normal file
23
appiumtests/CMakeLists.txt
Normal file
@@ -0,0 +1,23 @@
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
# SPDX-FileCopyrightText: 2022 Harald Sitter <sitter@kde.org>
|
||||
|
||||
|
||||
if(NOT BUILD_TESTING OR NOT CMAKE_SYSTEM_NAME MATCHES "Linux")
|
||||
return()
|
||||
endif()
|
||||
|
||||
find_package(SeleniumWebDriverATSPI)
|
||||
set_package_properties(SeleniumWebDriverATSPI PROPERTIES
|
||||
DESCRIPTION "Server component for selenium tests using Linux accessibility infrastructure"
|
||||
PURPOSE "Needed for GUI tests"
|
||||
URL "https://invent.kde.org/sdk/selenium-webdriver-at-spi"
|
||||
TYPE OPTIONAL
|
||||
)
|
||||
if(NOT SeleniumWebDriverATSPI_FOUND)
|
||||
return()
|
||||
endif()
|
||||
|
||||
add_test(
|
||||
NAME logintest
|
||||
COMMAND selenium-webdriver-at-spi-run ${CMAKE_CURRENT_SOURCE_DIR}/logintest.py
|
||||
)
|
||||
42
appiumtests/login-server.py
Normal file
42
appiumtests/login-server.py
Normal file
@@ -0,0 +1,42 @@
|
||||
# SPDX-License-Identifier: MIT
|
||||
# SPDX-FileCopyrightText: 2023 Tobias Fella <tobias.fella@kde.org>
|
||||
|
||||
|
||||
from flask import Flask, request, abort
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route("/_matrix/client/v3/login", methods=["GET"])
|
||||
def login_get():
|
||||
result = dict()
|
||||
result["flows"] = [dict()]
|
||||
result["flows"][0]["type"] = "m.login.password"
|
||||
return result
|
||||
|
||||
@app.route("/_matrix/client/v3/login", methods=["POST"])
|
||||
def login_post():
|
||||
data = request.get_json()
|
||||
if data["identifier"]["user"] != "user" or data["password"] != "1234":
|
||||
abort(403)
|
||||
print(data)
|
||||
result = dict()
|
||||
result["access_token"] = "token_1234"
|
||||
result["device_id"] = "device_1234"
|
||||
result["user_id"] = "@user:localhost:1234"
|
||||
return result
|
||||
|
||||
@app.route("/_matrix/client/r0/sync")
|
||||
def sync():
|
||||
result = dict()
|
||||
result["next_batch"] = "batch1234"
|
||||
return result
|
||||
|
||||
@app.route("/.well-known/matrix/client")
|
||||
def well_known():
|
||||
reply = dict()
|
||||
reply["m.homeserver"] = dict()
|
||||
reply["m.homeserver"]["base_url"] = "https://localhost:1234"
|
||||
return reply
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(ssl_context='adhoc', port=1234)
|
||||
44
appiumtests/logintest.py
Executable file
44
appiumtests/logintest.py
Executable file
@@ -0,0 +1,44 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
# SPDX-License-Identifier: MIT
|
||||
# SPDX-FileCopyrightText: 2021-2022 Harald Sitter <sitter@kde.org>
|
||||
# SPDX-FileCopyrightText: 2023 Tobias Fella <tobias.fella@kde.org>
|
||||
|
||||
import unittest
|
||||
from appium import webdriver
|
||||
from appium.webdriver.common.appiumby import AppiumBy
|
||||
from selenium.webdriver.support.ui import WebDriverWait
|
||||
import time
|
||||
import subprocess
|
||||
|
||||
class LoginTest(unittest.TestCase):
|
||||
@classmethod
|
||||
def setUpClass(self):
|
||||
desired_caps = {}
|
||||
desired_caps["app"] = "neochat --ignore-ssl-errors"
|
||||
desired_caps["timeouts"] = {'implicit': 10000}
|
||||
self.driver = webdriver.Remote(
|
||||
command_executor='http://127.0.0.1:4723',
|
||||
desired_capabilities=desired_caps)
|
||||
subprocess.Popen(["python","login-server.py"])
|
||||
|
||||
def setUp(self):
|
||||
pass
|
||||
|
||||
def tearDown(self):
|
||||
if not self._outcome.result.wasSuccessful():
|
||||
self.driver.get_screenshot_as_file("failed_test_shot_{}.png".format(self.id()))
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(self):
|
||||
self.driver.quit()
|
||||
|
||||
def test_login(self):
|
||||
self.driver.find_element(by=AppiumBy.NAME, value="Matrix ID").send_keys("@user:localhost:1234")
|
||||
self.driver.find_element(by=AppiumBy.NAME, value="Continue").click()
|
||||
self.driver.find_element(by=AppiumBy.NAME, value="Password").send_keys("1234")
|
||||
self.driver.find_element(by=AppiumBy.NAME, value="Login").click()
|
||||
self.driver.find_element(by=AppiumBy.NAME, value="Join some rooms to get started").click()
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
@@ -10,6 +10,8 @@
|
||||
#include <Quotient/syncdata.h>
|
||||
#include <qnamespace.h>
|
||||
|
||||
#include "utils.h"
|
||||
|
||||
using namespace Quotient;
|
||||
|
||||
class TestRoom : public NeoChatRoom
|
||||
@@ -555,10 +557,10 @@ void TextHandlerTest::receiveRichPlainUrl()
|
||||
void TextHandlerTest::receiveRichEmote()
|
||||
{
|
||||
auto event = room->messageEvents().at(1).get();
|
||||
auto author = static_cast<NeoChatUser *>(room->user(event->senderId()));
|
||||
auto author = room->user(event->senderId());
|
||||
const QString testInputString = QStringLiteral("This is an emote.");
|
||||
const QString testOutputString = QStringLiteral("* <a href=\"https://matrix.to/#/@example:example.org\" style=\"color:") + author->color().name()
|
||||
+ QStringLiteral("\">@example:example.org</a> This is an emote.");
|
||||
const QString testOutputString = QStringLiteral("* <a href=\"https://matrix.to/#/@example:example.org\" style=\"color:")
|
||||
+ Utils::getUserColor(author->hueF()).name() + QStringLiteral("\">@example:example.org</a> This is an emote.");
|
||||
|
||||
TextHandler testTextHandler;
|
||||
testTextHandler.setData(testInputString);
|
||||
@@ -644,5 +646,5 @@ void TextHandlerTest::linkPreviewsReject()
|
||||
QCOMPARE(testTextHandler.getLinkPreviews(), testOutputLinks);
|
||||
}
|
||||
|
||||
QTEST_GUILESS_MAIN(TextHandlerTest)
|
||||
QTEST_MAIN(TextHandlerTest)
|
||||
#include "texthandlertest.moc"
|
||||
|
||||
@@ -46,43 +46,21 @@
|
||||
<name xml:lang="uk">NeoChat</name>
|
||||
<name xml:lang="x-test">xxNeoChatxx</name>
|
||||
<name xml:lang="zh-CN">NeoChat</name>
|
||||
<summary>A client for matrix, the decentralized communication protocol</summary>
|
||||
<summary xml:lang="ar">عميل لماتركس، ميفاق الاتصال اللامركزي</summary>
|
||||
<summary xml:lang="az">Matrix üçün müştəri, mərkəzləşməmiş kommunikasiya protokolu</summary>
|
||||
<summary xml:lang="ca">Un client de Matrix, el protocol de comunicacions descentralitzat</summary>
|
||||
<summary xml:lang="ca-valencia">Un client de Matrix, el protocol de comunicacions descentralitzat</summary>
|
||||
<summary xml:lang="cs">Klient pro decentralizovaný komunikační protokol matrix</summary>
|
||||
<summary xml:lang="de">Ein Programm für Matrix, das dezentrale Kommunikationsprotokoll</summary>
|
||||
<summary xml:lang="el">Ένας πελάτης για το Matrix, το αποκεντρωμένο πρωτόκολλο επικοινωνίας</summary>
|
||||
<summary xml:lang="en-GB">A client for matrix, the decentralised communication protocol</summary>
|
||||
<summary xml:lang="eo">Kliento por matrix, la malcentra komunikprotokolo</summary>
|
||||
<summary xml:lang="es">Un cliente para Matrix, el protocolo de comunicaciones descentralizado</summary>
|
||||
<summary xml:lang="eu">Matrix, deszentralizatutako komunikazio protokolorako bezero bat</summary>
|
||||
<summary xml:lang="fi">Asiakas Matrixille, hajautetulle viestintäyhteyskäytännölle</summary>
|
||||
<summary xml:lang="fr">Un client pour « Matrix », le protocole décentralisé de communications.</summary>
|
||||
<summary xml:lang="gl">Un cliente para Matrix, o protocolo de comunicación descentralizada.</summary>
|
||||
<summary xml:lang="hu">Kliens a matrixhoz, a decentralizált kommunikációs protokollhoz</summary>
|
||||
<summary xml:lang="ia">Un cliente per Matrix, le protocollo de communication decentralisate</summary>
|
||||
<summary xml:lang="id">Klien untuk matrix, protokol komunikasi terdesentralisasi</summary>
|
||||
<summary xml:lang="ie">Un cliente de Matrix, li protocol de communication decentralisat</summary>
|
||||
<summary xml:lang="it">Un client per matrix, il protocollo di comunicazione decentralizzato</summary>
|
||||
<summary xml:lang="ka">კლიენტი Matrix-სთვის, დეცენტრალიზებული კომუნიკაციის პროტოკოლისთვის</summary>
|
||||
<summary xml:lang="ko">Matrix, 분산 대화 프로토콜 클라이언트</summary>
|
||||
<summary xml:lang="nl">Een client voor matrix, het gedecentraliseerde communicatieprotocol</summary>
|
||||
<summary xml:lang="nn">Ein klient for Matrix – protokollen for desentralisert kommunikasjon</summary>
|
||||
<summary xml:lang="pa">ਮੈਟਰਿਕਸ, ਸਰਬ-ਸਾਂਝੇ ਸੰਚਾਰ ਪਰੋਟੋਕਾਲ, ਲਈ ਕਲਾਈਂਟ ਹੈ</summary>
|
||||
<summary xml:lang="pl">Program do obsługi matriksa, rozproszonego protokołu porozumiewania się</summary>
|
||||
<summary xml:lang="pt">Um cliente para o Matrix, o protocolo de comunicação descentralizado</summary>
|
||||
<summary xml:lang="pt-BR">Um cliente do Matrix, o protocolo de comunicação descentralizado</summary>
|
||||
<summary xml:lang="ru">Клиент для Matrix — децентрализованного коммуникационного протокола</summary>
|
||||
<summary xml:lang="sk">Klient pre matrix, decentralizovaný komunikačný protokol</summary>
|
||||
<summary xml:lang="sl">Odjemalec za matrix, decentralizirani komunikacijski protokol</summary>
|
||||
<summary xml:lang="sv">En klient för Matrix, det decentraliserade kommunikationsprotokollet</summary>
|
||||
<summary xml:lang="ta">மையமில்லா தகவல் பரிமாற்ற நெறிமுறையான மேட்ரிக்ஸுக்கான செயலி</summary>
|
||||
<summary xml:lang="tr">Merkezi olmayan iletişim protokolü Matrix için bir istemci</summary>
|
||||
<summary xml:lang="uk">Клієнт matrix, децентралізованого протоколу обміну даними</summary>
|
||||
<summary xml:lang="x-test">xxA client for matrix, the decentralized communication protocolxx</summary>
|
||||
<summary xml:lang="zh-CN">分布式通讯协议 Matrix 的客户端</summary>
|
||||
<summary>Chat with your friends on matrix</summary>
|
||||
<summary xml:lang="ca">Xategeu amb els vostres amics a Matrix</summary>
|
||||
<summary xml:lang="ca-valencia">Xategeu amb els vostres amics a Matrix</summary>
|
||||
<summary xml:lang="eo">Babilu kun viaj amikoj sur matrix</summary>
|
||||
<summary xml:lang="eu">Berriketan jardun zure lagunekin «Matrix»en</summary>
|
||||
<summary xml:lang="gl">Charle coas súas amizades en Matrix.</summary>
|
||||
<summary xml:lang="ka">ესაუბრეთ მეგობრებს Matrix-ზე</summary>
|
||||
<summary xml:lang="nl">Met uw vrienden chatten op matrix</summary>
|
||||
<summary xml:lang="nn">Prat med vennar på Matrix</summary>
|
||||
<summary xml:lang="sl">Klepet z vašimi prijatelji na matrixu</summary>
|
||||
<summary xml:lang="sv">Chatta med dina vänner på Matrix</summary>
|
||||
<summary xml:lang="ta">மேட்ரிக்ஸு மூலம் உங்கள் நண்பர்களிடம் பேசலாம்</summary>
|
||||
<summary xml:lang="tr">Matrix'te arkadaşlarınızla sohbet edin</summary>
|
||||
<summary xml:lang="uk">Спілкуйтеся з вашими друзями у matrix</summary>
|
||||
<summary xml:lang="x-test">xxChat with your friends on matrixxx</summary>
|
||||
<description>
|
||||
<p>NeoChat is a client for Matrix, the decentralized communication protocol for instant messaging. It allows you to send text messages, videos and audio files to your family, colleagues and friends. It uses KDE frameworks and most notably Kirigami
|
||||
to provide a convergent experience across multiple platforms.</p>
|
||||
@@ -114,6 +92,7 @@ to provide a convergent experience across multiple platforms.</p>
|
||||
<p xml:lang="ca">NeoChat pretén ser una aplicació amb totes les característiques per a l'especificació de Matrix. Com a tal, s'ha implementat tota l'especificació actual estable amb les notables excepcions de la VoIP, fils i alguns aspectes de l'encriptatge d'extrem a extrem. Hi ha algunes altres omissions més petites a causa del fet que l'especificació de Matrix està evolucionant constantment, però l'objectiu segueix sent proporcionar suport eventual per a tota l'especificació.</p>
|
||||
<p xml:lang="ca-valencia">NeoChat pretén ser una aplicació amb totes les característiques per a l'especificació de Matrix. Com a tal, s'ha implementat tota l'especificació actual estable amb les notables excepcions de VoIP, fils i alguns aspectes de l'encriptació d'extrem a extrem. Hi ha algunes altres omissions més xicotetes a causa del fet que l'especificació de Matrix està evolucionant constantment, però l'objectiu seguix sent proporcionar suport eventual per a tota l'especificació.</p>
|
||||
<p xml:lang="en-GB">NeoChat aims to be a fully featured application for the Matrix specification. As such everything in the current stable specification with the notable exceptions of VoIP, threads and some aspects of End-to-End Encryption are supported. There are a few other smaller omissions due to the fact that the Matrix spec is constantly evolving but the aim remains to provide eventual support for the entire spec.</p>
|
||||
<p xml:lang="eo">NeoChat celas esti plene kapabla aplikaĵo por la Matrix-specifo. Kiel tia, ĉio en la nuna stabila specifo kun la rimarkindaj esceptoj de VoIP, fadenoj kaj kelkaj aspektoj de Fin-al-Fina Ĉifrado estas subtenataj. Estas kelkaj aliaj pli malgrandaj preterlasoj pro la fakto, ke la Matrix-speco konstante evoluas, sed la celo restas provizi finfine subtenon por la tuta specifaĵo.</p>
|
||||
<p xml:lang="es">NeoChat pretende ser una aplicación con todas las funciones para la especificación de Matrix. Como tal, admite todo en la especificación estable actual, con las notables excepciones de VoIP, subprocesos y algunas funciones de cifrado de extremo a extremo. Existen algunas omisiones menos importantes debido al hecho de que la especificación de Matrix está en constante evolución, pero el objetivo sigue siendo brindar compatibilidad final con toda la especificación.</p>
|
||||
<p xml:lang="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>
|
||||
@@ -137,6 +116,7 @@ to provide a convergent experience across multiple platforms.</p>
|
||||
<p xml:lang="ca">A causa de la naturalesa del desenvolupament de l'especificació de Matrix, el NeoChat també implementa nombroses característiques inestables. Actualment són:</p>
|
||||
<p xml:lang="ca-valencia">A causa de la naturalea del desenvolupament de l'especificació de Matrix, NeoChat també implementa nombroses característiques inestables. Actualment són:</p>
|
||||
<p xml:lang="en-GB">Due to the nature of the Matrix specification development NeoChat also supports numerous unstable features. Currently these are:</p>
|
||||
<p xml:lang="eo">Pro la naturo de la Matrix-specifevoluo NeoChat ankaŭ subtenas multajn malstabilajn funkciojn. Nuntempe ĉi tiuj estas:</p>
|
||||
<p xml:lang="es">Debido a la naturaleza del desarrollo de la especificación de Matrix, NeoChat también permite numerosas funciones no estables, como:</p>
|
||||
<p xml:lang="eu">«Matrix» zehaztapenaren garapenaren izaeragatik, «Neo¢hat»ek ezaugarri ezegonkor ugari ere onartzen ditu. Gaur egun hauek:</p>
|
||||
<p xml:lang="fi">Matrix-määritelmän kehittyessä NeoChat tukee myös monia epävakaita ominaisuuksia. Tällä hetkellä näitä ovat:</p>
|
||||
@@ -162,6 +142,7 @@ to provide a convergent experience across multiple platforms.</p>
|
||||
<li xml:lang="ca">Enquestes - MSC3381</li>
|
||||
<li xml:lang="ca-valencia">Enquestes - MSC3381</li>
|
||||
<li xml:lang="en-GB">Polls - MSC3381</li>
|
||||
<li xml:lang="eo">Enketoj - MSC3381</li>
|
||||
<li xml:lang="es">Encuestas - MSC3381</li>
|
||||
<li xml:lang="eu">Polls - MSC3381</li>
|
||||
<li xml:lang="fi">Kyselyt – MSC3381</li>
|
||||
@@ -185,6 +166,7 @@ to provide a convergent experience across multiple platforms.</p>
|
||||
<li xml:lang="ca">Paquets d'adhesius - MSC2545</li>
|
||||
<li xml:lang="ca-valencia">Paquets d'adhesius - MSC2545</li>
|
||||
<li xml:lang="en-GB">Sticker Packs - MSC2545</li>
|
||||
<li xml:lang="eo">Glumark-Pakoj - MSC2545</li>
|
||||
<li xml:lang="es">Paquetes de pegatinas - MSC2545</li>
|
||||
<li xml:lang="eu">Eranskailu paketeak - MSC2545</li>
|
||||
<li xml:lang="fi">Tarrapakkaukset – MSC2545</li>
|
||||
@@ -208,6 +190,7 @@ to provide a convergent experience across multiple platforms.</p>
|
||||
<li xml:lang="ca">Esdeveniments d'ubicació - MSC3488</li>
|
||||
<li xml:lang="ca-valencia">Esdeveniments d'ubicació - MSC3488</li>
|
||||
<li xml:lang="en-GB">Location Events - MSC3488</li>
|
||||
<li xml:lang="eo">Lokaj Eventoj - MSC3488</li>
|
||||
<li xml:lang="es">Eventos de ubicación - MSC3488</li>
|
||||
<li xml:lang="eu">Kokaleku-gertaerak - MSC3488</li>
|
||||
<li xml:lang="fi">Sijaintitapahtumat – MSC3488</li>
|
||||
@@ -284,11 +267,11 @@ to provide a convergent experience across multiple platforms.</p>
|
||||
<value key="KDE::windows_store::screenshots::1::caption">Main view with room list, chat, and room information</value>
|
||||
<value key="KDE::windows_store::screenshots::1::caption" xml:lang="ca">Vista principal amb la llista de sales, xats i informació de les sales</value>
|
||||
<value key="KDE::windows_store::screenshots::1::caption" xml:lang="ca-valencia">Vista principal amb la llista de sales, xats i informació de les sales</value>
|
||||
<value key="KDE::windows_store::screenshots::1::caption" xml:lang="eo">Ĉefa vido kun ĉambra listo, babilejo kaj ĉambra informo</value>
|
||||
<value key="KDE::windows_store::screenshots::1::caption" xml:lang="es">Vista principal con la lista de salas, chat e información de la sala</value>
|
||||
<value key="KDE::windows_store::screenshots::1::caption" xml:lang="eu">Ikuspegi nagusia gela-zerrenda, berriketa, eta gelako informazioarekin</value>
|
||||
<value key="KDE::windows_store::screenshots::1::caption" xml:lang="fr">Vue principale avec la liste des salons ainsi que des informations sur les salons et forums de discussions</value>
|
||||
<value key="KDE::windows_store::screenshots::1::caption" xml:lang="gl">Vista principal coa lista de salas, a charla, e información da sala.</value>
|
||||
<value key="KDE::windows_store::screenshots::1::caption" xml:lang="ia">Vista principal con lista de sala, chat e information de sala</value>
|
||||
<value key="KDE::windows_store::screenshots::1::caption" xml:lang="it">Vista principale con elenco delle stanze, chat e informazioni sulla stanza</value>
|
||||
<value key="KDE::windows_store::screenshots::1::caption" xml:lang="ka">მთავარი ხედი სურათების სიით, ჩატით და ოთახის ინფორმაციით</value>
|
||||
<value key="KDE::windows_store::screenshots::1::caption" xml:lang="ko">대화방 목록, 채팅, 대화방 정보가 표시된 주 보기</value>
|
||||
@@ -305,11 +288,11 @@ to provide a convergent experience across multiple platforms.</p>
|
||||
<value key="KDE::windows_store::screenshots::2::caption">Login screen</value>
|
||||
<value key="KDE::windows_store::screenshots::2::caption" xml:lang="ca">Pantalla d'inici de sessió</value>
|
||||
<value key="KDE::windows_store::screenshots::2::caption" xml:lang="ca-valencia">Pantalla d'inici de sessió</value>
|
||||
<value key="KDE::windows_store::screenshots::2::caption" xml:lang="eo">Ensaluta ekrano</value>
|
||||
<value key="KDE::windows_store::screenshots::2::caption" xml:lang="es">Pantalla de inicio de sesión</value>
|
||||
<value key="KDE::windows_store::screenshots::2::caption" xml:lang="eu">Saio-hasteko pantaila</value>
|
||||
<value key="KDE::windows_store::screenshots::2::caption" xml:lang="fr">Écran de connexion</value>
|
||||
<value key="KDE::windows_store::screenshots::2::caption" xml:lang="gl">Pantalla de identificación.</value>
|
||||
<value key="KDE::windows_store::screenshots::2::caption" xml:lang="ia">Schermo de accesso</value>
|
||||
<value key="KDE::windows_store::screenshots::2::caption" xml:lang="it">Schermata di accesso</value>
|
||||
<value key="KDE::windows_store::screenshots::2::caption" xml:lang="ka">შესვლის ეკრანი</value>
|
||||
<value key="KDE::windows_store::screenshots::2::caption" xml:lang="ko">로그인 화면</value>
|
||||
|
||||
323
po/ar/neochat.po
323
po/ar/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-06 10:13+0400\n"
|
||||
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
|
||||
"Language-Team: ar\n"
|
||||
@@ -18,77 +18,77 @@ msgstr ""
|
||||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "فشل الولوج: رمز النفاذ غير صالحة أو سحبت"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "فشل الولوج: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "خطأ شبكي: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "رمز النفاذ غير موجود"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "ربما حذفت؟"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "رفض النفاذ إلى حَمَّالَة المَفَاتِيح"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "الرجاء السماح لنيوتشات بقراءة رمز النفاذ"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "لا تتوفر حَمَّالَة المَفَاتِيح"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr "الرجاء تثبيت حَمَّالَة مَفَاتِيح مثل محفظتك من كِيدِي أو غنوم Keyring على لينكس"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "غير قادر على قراءة رقم النفاذ"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "الملف كبير جدًا لتنزيله."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "راسل مدير خادوم ماتركس للدعم."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "فشل إنشاء غرفة: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "فشل إنشاء فضاء: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "رقم التعريفي للغرفة التي تحاول الانضمام إليها غير صحيح"
|
||||
@@ -200,16 +200,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (بني على %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "عميل لميفاق الاتصال ماتركس"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "يدعم ماتركس: مخطط الروابط"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -648,27 +653,27 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "صورك التعبيرية"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[هذه الرسالة محذوفة]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[هذه الرسالة محذوفة: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[أفعال محظورة]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[أفعال محظورة: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -679,7 +684,7 @@ msgstr[3] "%1 مستخدمين: "
|
||||
msgstr[4] " %1 مستخدماً: "
|
||||
msgstr[5] "%1 مستخدم: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -745,353 +750,353 @@ msgstr "منخفضة الأولوية"
|
||||
msgid "Spaces"
|
||||
msgstr "الفضاءات"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "اليوم"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "الأمس"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "اليوم الذي قبل الأمس"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "ملف"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "أعد دعوة %1 للغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "انضم للغرفة (مكررا)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "ادع %1 للغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "انضم للغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "مسح اسمهم"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "غير اسمهم إلى %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " و "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "مسح صورتهم الرمزية"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "عين صورة رمزية"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "حدث صورتهم الرمزية"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "لم يغير شيء"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "سحب %1 دعوته"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "رفض الدعوة"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "ألغى حضر %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "ألغى حضر نفسه"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "أخرج %1 من الغرفة: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "غادر الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "حظر %1 من الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "حظر %1 من الغرفة: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "حضر نفسه من الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "طلب دعوة"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "دعوة مطلوبة بسبب: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "صنع شيء مجهول"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "مسح معرف الغرفة العام"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "غير معرف الغرفة العام إلى: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "مسح اسم الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "غير اسم الغرفة إلى: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "مسح الموضوع"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "غير الموضوع إلى: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "غير الصورة الرمزية للغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "فعل التشفير التام من طرف إلى طرف"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "رقى إصدارة الغرفة إلى %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "أنشى غرفة، إصدارة %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "غير مستويات القوة لهذه الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "غير قوائم التحكم بنفاذ الخادم لهذه الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "أضاف ودجة %1"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "أزال ودجة %1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "ضبطَ ودجة %1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "حدث حالة %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "حدث حالة %1 لـ %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "حدث مجهول"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "أرسل رسالة"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "أرسل ملصق"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "أعد دعوة شخص للغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "دعا شخص للغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "غير اسمه"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "سحب دعوة مستخدم"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ألغى حضر مستخدم"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "أخرج مستخدم من الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "حظر مستخدم من الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "غير معرف الغرفة العام"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "عين اسم الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "عين الموضوع"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "رقى إصدارة الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "أنشئ الغرفة"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "أضاف ودجة"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "أزال ودجة"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ضبطَ ودجة"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "حدث الحالة"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "بدأ استفتاء"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "أرسل البلاغ بنجاح."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1112,7 +1117,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "افتح نيوتشات في هذه الغرفة"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1150,7 +1155,7 @@ msgid "Attachment:"
|
||||
msgstr "المرفق:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1205,7 +1210,7 @@ msgstr "ضع اسم للمرفق…"
|
||||
msgid "Send a message…"
|
||||
msgstr "أرسل رسالة…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1318,13 +1323,13 @@ msgstr "لا يوجد ملصقات"
|
||||
msgid "No emojis"
|
||||
msgstr "لا يوجد صورة تعبيرية"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "الصورة التعبيرية"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1335,17 +1340,17 @@ msgstr "الملصقات"
|
||||
msgid "View Location"
|
||||
msgstr "اعرض الموقع"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "أغلق"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "هذه الرسالة أرسلت من جهاز متَثَبّت منه"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "تفاعل"
|
||||
@@ -1366,13 +1371,13 @@ msgstr "ارفض"
|
||||
msgid "Accept"
|
||||
msgstr "اقبل"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "المواقع"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "لم تشارك أي مواقع في هذه الغرفة."
|
||||
@@ -1399,7 +1404,7 @@ msgid "Url:"
|
||||
msgstr "المسار:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1426,13 +1431,19 @@ msgstr "أدخل معرفك لماتركس"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "معرف ماتركس:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "معرف ماتركس:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "يحمّل..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "ولجت فعلاً"
|
||||
@@ -1487,6 +1498,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "لج"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "كلمة السّر"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1602,32 +1620,32 @@ msgstr "الصوت"
|
||||
msgid "Maximize"
|
||||
msgstr "كبّر"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "اختر ملف محلي"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "صورة الحافظة"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "اقفز إلى أول رسالة غير المقروءة"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "اقفز إلى أحدث رسالة"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "اسحب عناصر هنا لتشاركهم"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1946,70 +1964,70 @@ msgstr "مُشْرِف (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "أكد"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "تفاصيل الحساب"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "ألغ تجاهل هذا المستخدم"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "تجاهل هذا المستخدم"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "أركل هذا المستخدم"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "أدعو هذا المستخدم"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "احظر هذا المستخدم"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "احظر مستخدم"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "ألغ حظر هذا المستخدم"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "عيّن مستوى قدرة المستخدم"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "أزل آخر رسائل لهذا المستخدم"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "أزل الرسائل"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "افتح دردشة خاصة"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "نسخ الرابط"
|
||||
@@ -2660,12 +2678,25 @@ msgstr "انضم لبعض الغرف لتبدأ"
|
||||
msgid "Search in room directory"
|
||||
msgstr "ابحث في دليل الغرف"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "وسع المعاينة"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "غرفة مكتومة"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "اضبط الغرفة"
|
||||
@@ -2726,7 +2757,7 @@ msgstr "بدّل المستخدم"
|
||||
msgid "Open Settings"
|
||||
msgstr "إعدادات الفتح"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "نيوتشات غير متصل: الرجاء التأكد من اتصالك بالشبكة"
|
||||
@@ -2804,48 +2835,55 @@ msgstr "خيارات"
|
||||
msgid "Open developer tools"
|
||||
msgstr "افتح أدوات المطوّر"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "ابحث في هذه الغرفة"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "ابحث"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "أزل الغرفة من المفضلة"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "اجعل الغرفة في المفضلة"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "اعرض المواقع لهذه الغرفة"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "الأعضاء"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "ابحث عن مستخدم في الغرفة"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "أدعو مستخدم"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "أدعُ مستخدم إلى غرفة"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2856,7 +2894,7 @@ msgstr[3] "%1 أعضاء"
|
||||
msgstr[4] "%1 عضواً"
|
||||
msgstr[5] "%1 عضو"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "بلا عدد أعضاء"
|
||||
@@ -3346,12 +3384,6 @@ msgstr "الاسم:"
|
||||
msgid "Label:"
|
||||
msgstr "التسمية:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "كلمة السّر"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3650,8 +3682,9 @@ msgid "General settings"
|
||||
msgstr "إعدادات عامّة"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "أغلق إلى صينية النظام"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
327
po/az/neochat.po
327
po/az/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2022-07-22 12:13+0400\n"
|
||||
"Last-Translator: Kheyyam <xxmn77@gmail.com>\n"
|
||||
"Language-Team: Azerbaijani <kde-i18n-doc@kde.org>\n"
|
||||
@@ -17,80 +17,80 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Lokalize 22.04.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Giriş baş tutmadı: Giriş Tokeni səhvdir və ya ləğv edilib"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Giriş alınmadı: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Şəbəkə xətası: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Giriş tokeni tapılmadı"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Ola bilsin ki, o, silinib"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Açarlar bağına girişə icaz. verilmir."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "NeoChat'a giriş tokenini oxumağa icazə verin"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Açarlar bağı əlçatan deyil."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Linix'da KWallet və ya GNOME keyring kimi açarlar bağı tətbiqini quraşdırın"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Giriş nişanını oxumaq mümkün deyil"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Otaq yaradıla bilmədi: \"%1\""
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Otaq yaradıla bilmədi: \"%1\""
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Qoşulmağa cəhd etdiyiniz otaq İD-si doğru deyil"
|
||||
@@ -210,17 +210,22 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix kommunikasiya protokolu üçün müştəri"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Supports appstream: url scheme"
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Appstream dəstəklənir: URL sxemi"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -731,34 +736,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Xüsusi Emoji"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Bu ismarıc silindi]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Bu ismarıc silindi: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[DÜZƏLİŞ_EDİLDİ]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[DÜZƏLİŞ_EDİLDİ: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -818,277 +823,277 @@ msgstr "Aşağı prioritet"
|
||||
msgid "Spaces"
|
||||
msgstr "Boşluqlar"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Bu gün"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Dünən"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Sırağagün"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "fayl"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "%1 otağa yenidən dəvət edildi"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "otağa qoşuldu (təkrar)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1, otağa dəvət edildi"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "otağa qoşuldu"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "onların görünən adı silindi"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "onların görünən adı %1 kimi dəyişdirildi"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " və "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "onların avatarları silindi"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "avatar təyin edin"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "onların avatarları yeniləndi"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "%1 dəvəti geri çəkildi"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "dəvət ləğv edildi"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "%1 üzərindən qadağa götürüldü"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "özü üzərindəki qadağanı götürdü"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "%1 bu otaqdan çıxarıldı: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "otağı tərk edin"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "%1 üzərinə bu otaqda qadağa qoyuldu: %2"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "%1 üzərinə bu otaqda qadağa qoyuldu: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "öz özünü otaqdan kənarlaşdırdı"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "dəvət qəbul olundu"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "requested an invite"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "dəvət qəbul olundu"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "bilinməyən bir şey edildi"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "otağın əsas ləqəbi dəyişdirildi"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "otağın əsas ləqəbini belə dəyişdirmək: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "otağın adını silmək"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "otağın adını belə dəyişdirmək: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "mövzu silindi"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "mövzunu belə təyin etmək: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "otaq avatarını dəyişmək"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "Ucdan Uca şifrələməni aktiv etmək"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "otaq %1 versiyasına yeniləndi"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "%1 versiyalı otaq yaradıldı"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "bu otaq üçün enerji səviyyəsi dəyişdirildi"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "Bu otaq üçün xidmətə girişə nəzarət siyahıları dəyişdirildi"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "%1 vidjet əlavə olundu"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "%1 vidjet silindi"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "%1 vidjet ayarlandı"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "%1 vəziyyəti yeniləndi"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "%1 vəziyyəti %2 üçün yeniləndi"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Naməlum hal"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send a message…"
|
||||
msgid "sent a message"
|
||||
msgstr "İsmarıcı göndərin..."
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "%1 otağa yenidən dəvət edildi"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "%1, otağa dəvət edildi"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
@@ -1096,99 +1101,99 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "onların görünən adı %1 kimi dəyişdirildi"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "%1 dəvəti geri çəkildi"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "%1 üzərindən qadağa götürüldü"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "%1 bu otaqdan çıxarıldı: %2"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "%1 üzərinə bu otaqda qadağa qoyuldu: %2"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
msgid "set the room main alias"
|
||||
msgstr "otağın əsas ləqəbini belə dəyişdirmək: %1"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
msgid "set the room name"
|
||||
msgstr "otağın adını belə dəyişdirmək: %1"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "mövzunu belə təyin etmək: %1"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "otaq %1 versiyasına yeniləndi"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "otağı tərk edin"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] added <name> widget"
|
||||
#| msgid "added %1 widget"
|
||||
msgid "added a widget"
|
||||
msgstr "%1 vidjet əlavə olundu"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] removed <name> widget"
|
||||
#| msgid "removed %1 widget"
|
||||
msgid "removed a widget"
|
||||
msgstr "%1 vidjet silindi"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] configured <name> widget"
|
||||
#| msgid "configured %1 widget"
|
||||
msgid "configured a widget"
|
||||
msgstr "%1 vidjet ayarlandı"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "%1 vəziyyəti yeniləndi"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Password changed successfully"
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Şifrə uğurla dəyişdirildi"
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1210,7 +1215,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "NeoChatı bu otaqla açın"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1248,7 +1253,7 @@ msgid "Attachment:"
|
||||
msgstr "Qoşma fayl:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1305,7 +1310,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "İsmarıcı göndərin..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1434,14 +1439,14 @@ msgstr "Söz əlavə edin"
|
||||
msgid "No emojis"
|
||||
msgstr "Xüsusi Emoji"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Custom Emoji"
|
||||
msgid "Emojis"
|
||||
msgstr "Xüsusi Emoji"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1453,17 +1458,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Dəvət göndərmək"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Bağlamaq"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reaksiya"
|
||||
@@ -1484,14 +1489,14 @@ msgstr "İmtina etmək"
|
||||
msgid "Accept"
|
||||
msgstr "Qəbul etmək"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Bildirişlərdə göstərmək"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1519,7 +1524,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1546,13 +1551,19 @@ msgstr "Matrix İD-zi daxil edin"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Yüklənir..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1607,6 +1618,15 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Giriş"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "Şifrə"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1720,32 +1740,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Yerli faylı seçin"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Mübadilə yaddaşındakı şəkil"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Birinci oxunmammış ismarıca keçin"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Sonuncu ismarıca keçin"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Elementi paylaşmaq üçün buraya atın"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -2069,74 +2089,74 @@ msgstr "inzibatçı"
|
||||
msgid "Confirm"
|
||||
msgstr "Təsdiq etmək"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "İstifadəçi hesabı təfərrüatları"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Bi istifadəçini gözardı etməyi ləğv edin"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Bu istifadəçini gözardı etmək"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Bu istifadəçini vurmaq"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ignore this user"
|
||||
msgid "Invite this user"
|
||||
msgstr "Bu istifadəçini gözardı etmək"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Bu istifadəçini əngəlləmək"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ban this user"
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Bu istifadəçini əngəlləmək"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Bu istifadəçini əngəlləmək"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Delete recent messages by this user"
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Bu istifadəçinin az əvvəlki məktublarını silin"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "İsmarıca düzəliş etmək"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Məxfi çatı açmaq"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Copy"
|
||||
msgid "Copy link"
|
||||
@@ -2810,13 +2830,26 @@ msgstr "Başlamaq üçün bəzi otaqlara qoşulun"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Otaq kataloqunda axtarın"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "%1 üzərindən qadağa götürüldü"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "Səssiz"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Otağı tənzimləmək"
|
||||
@@ -2884,7 +2917,7 @@ msgstr ""
|
||||
msgid "Open Settings"
|
||||
msgstr "Ayarlar"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat qoşulmayıb. Lütfən, şəbəkə bağlantısını yoxlayın."
|
||||
@@ -2964,52 +2997,59 @@ msgstr "Seçimlər:"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search in this room"
|
||||
msgstr "NeoChatı bu otaqla açın"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Otağı seçilmişlərdən silin"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Otağı seçilmiş edin"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "NeoChatı bu otaqla açın"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Üzvlər"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search user in room"
|
||||
msgstr "NeoChatı bu otaqla açın"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "İstifadəçi dəvət etmək"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 invited you to a room"
|
||||
msgid "Invite user to room"
|
||||
msgstr "%1,sizi otağa dəvət etdi"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -3018,7 +3058,7 @@ msgid_plural "%1 members"
|
||||
msgstr[0] "%1 Üzv"
|
||||
msgstr[1] "%1 Üzvlər"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3551,14 +3591,6 @@ msgstr "Ad:"
|
||||
msgid "Label:"
|
||||
msgstr "Yarlıq:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "Şifrə"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3886,8 +3918,9 @@ msgid "General settings"
|
||||
msgstr "Ümumi ayarlar:"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Bağlayaraq sistem treyə yığmaq"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
319
po/ca/neochat.po
319
po/ca/neochat.po
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 10:40+0200\n"
|
||||
"Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
|
||||
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
|
||||
@@ -20,79 +20,79 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 23.04.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
"Ha fallat l'inici de sessió: El testimoni d'accés no és vàlid o està revocat"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Ha fallat l'inici de la sessió: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Error de la xarxa: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "No s'ha trobat el testimoni d'accés"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Potser s'ha suprimit?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "S'ha denegat l'accés al clauer."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Permeteu que el NeoChat llegeixi el testimoni d'accés"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "No hi ha cap clauer disponible."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Instal·leu un clauer, p. ex. el KWallet o l'anell de claus del GNOME al Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "No s'ha pogut llegir el testimoni d'accés"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "El fitxer és massa gran per a baixar."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Contacteu amb l'administrador del servidor Matrix per a suport."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Ha fallat la creació de la sala: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Ha fallat la creació de l'espai: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "L'ID de la sala a la qual esteu intentant unir-vos no és vàlida"
|
||||
@@ -205,16 +205,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (construïda amb %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Client per al protocol de comunicacions Matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Implementa l'esquema d'URL «matrix:»"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "Ignora tots els errors d'SSL, p. ex. certificats sense signar."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -646,34 +651,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Emojis propis"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Aquest missatge s'ha suprimit]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Aquest missatge s'ha suprimit: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[REDACTAT]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REDACTAT: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "%1 usuari: "
|
||||
msgstr[1] "%1 usuaris: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -731,354 +736,354 @@ msgstr "Prioritat baixa"
|
||||
msgid "Spaces"
|
||||
msgstr "Espais"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Avui"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Ahir"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Abans-d'ahir"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "un fitxer"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "s'ha tornat a convidar %1 a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "s'ha unit a la sala (repetit)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "s'ha convidat %1 a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "s'ha unit a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "ha netejat el seu nom a mostrar"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "ha canviat el seu nom a mostrar a %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " i "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "ha netejat el seu avatar"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ha definit un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "ha actualitzat el seu avatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "no ha canviat res"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "retira la invitació de %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "ha rebutjat la invitació"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "s'ha desbandejat %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "ell mateix s'ha desbandejat"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "ha posat %1 fora de la sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "ha/n deixat la sala"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "s'ha bandejat %1 de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "s'ha bandejat %1 de la sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "ell mateix s'ha bandejat de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "ha sol·licitat una invitació"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "ha sol·licitat una invitació amb el motiu: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "ha fet quelcom desconegut"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "ha netejat l'àlies principal de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ha definit l'àlies principal de la sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "ha netejat el nom de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ha definit el nom de la sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "ha netejat el tema"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ha definit el tema a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "ha canviat l'avatar de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "ha activat l'encriptatge d'extrem a extrem"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "la sala s'ha actualitzat a la versió %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "la sala s'ha creat, versió %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "ha canviat els nivells de permís d'aquesta sala"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
"ha canviat les llistes de control d'accés del servidor per a aquesta sala"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "ha afegit el giny %1"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "ha eliminat el giny %1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "ha configurat el giny %1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "ha actualitzat l'estat de %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "ha actualitzat l'estat de %1 per %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Esdeveniment desconegut"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "enviat un missatge…"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "enviat un adhesiu"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "ha tornat a convidar algú a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "ha convidat algú a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ha/n canviat el seu nom a mostrar"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "retira una invitació d'usuari"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ha desbandejat un usuari"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "ha posat un usuari fora de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "ha bandejat un usuari de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "ha definit l'àlies principal de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ha definit el nom de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "ha definit el tema"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "ha actualitzat la versió de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "ha creat la sala"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "ha afegit un giny"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "ha eliminat un giny"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ha configurat un giny"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "ha actualitzat l'estat"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "ha començat una enquesta"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "L'informe s'ha enviat correctament."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1099,7 +1104,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Obre el NeoChat en aquesta sala"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1137,7 +1142,7 @@ msgid "Attachment:"
|
||||
msgstr "Adjunt:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1193,7 +1198,7 @@ msgstr "Establir un títol d'adjunt..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Envia un missatge…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1306,13 +1311,13 @@ msgstr "Sense adhesius"
|
||||
msgid "No emojis"
|
||||
msgstr "Sense emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1323,17 +1328,17 @@ msgstr "Adhesius"
|
||||
msgid "View Location"
|
||||
msgstr "Visualitza l'emplaçament"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Tanca"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "El missatge s'ha enviat des d'un dispositiu verificat"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reacciona"
|
||||
@@ -1354,13 +1359,13 @@ msgstr "Rebutja"
|
||||
msgid "Accept"
|
||||
msgstr "Accepta"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Ubicacions"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "No hi ha ubicacions compartides en aquesta sala."
|
||||
@@ -1387,7 +1392,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1414,13 +1419,18 @@ msgstr "Introduïu la vostra ID de Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "ID de Matrix"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "S'està carregant…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Ja heu iniciat la sessió"
|
||||
@@ -1475,6 +1485,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Inici de sessió"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1588,32 +1605,32 @@ msgstr "Volum"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximitza"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Trieu un fitxer local"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Imatge del porta-retalls"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Ves al primer missatge sense llegir"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Ves al darrer missatge"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Arrossegueu aquí els elements per a compartir"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1958,70 +1975,70 @@ msgstr "Administrador (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Confirma"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Detall del compte"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "No ignoris aquest usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignora aquest usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Expulsa aquest usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Convida aquest usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Bandeja aquest usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Bandeja l'usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Desbandeja aquest usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Estableix el nivell de permisos d'usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Elimina els missatges recents d'aquest usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Eliminació de missatges"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Obre en un xat privat"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Copia l'enllaç"
|
||||
@@ -2672,12 +2689,24 @@ msgstr "Uniu-vos a diverses sales per a començar"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Cerca en el directori de sales"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr "Redueix %1"
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Expandeix %1"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Sala silenciada"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configura la sala"
|
||||
@@ -2738,7 +2767,7 @@ msgstr "Commuta d'usuari"
|
||||
msgid "Open Settings"
|
||||
msgstr "Obre la configuració"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr ""
|
||||
@@ -2816,55 +2845,61 @@ msgstr "Opcions"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Obre les eines de desenvolupament"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Cerca en aquesta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Elimina la sala de les preferides"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Fes preferida la sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Mostra les ubicacions per a aquesta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Cerca un usuari en aquesta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Convida un usuari"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Convida un usuari a la sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 membre"
|
||||
msgstr[1] "%1 membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "No hi ha comptador de membres"
|
||||
@@ -3374,12 +3409,6 @@ msgstr "Nom:"
|
||||
msgid "Label:"
|
||||
msgstr "Etiqueta:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3678,8 +3707,8 @@ msgstr "Configuració general"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Tanca a la safata del sistema"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Mostra a la safata del sistema"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 10:40+0200\n"
|
||||
"Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
|
||||
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
|
||||
@@ -20,80 +20,80 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 23.04.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
"No s'ha pogut fer l'inici de la sessió: El testimoni d'accés no és vàlid o "
|
||||
"està revocat"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "No s'ha pogut fer l'inici de la sessió: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "S'ha produït un error de la xarxa: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "No s'ha trobat el testimoni d'accés"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Potser s'ha suprimit?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "S'ha denegat l'accés al clauer."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Permeteu que NeoChat llija el testimoni d'accés"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "No hi ha cap clauer disponible."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Instal·leu un clauer, p. ex. KWallet o l'anell de claus de GNOME a Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "No s'ha pogut llegir el testimoni d'accés"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "El fitxer és massa gran per a baixar."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Per a suport, contacteu amb l'administrador del servidor de Matrix."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "No s'ha pogut crear la sala: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "No s'ha pogut crear l'espai: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "L'ID de la sala a la qual esteu intentant unir-vos no és vàlida"
|
||||
@@ -205,16 +205,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (construïda amb %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Client per al protocol de comunicacions Matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Implementa l'esquema d'URL «matrix:»"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "Ignora tots els errors d'SSL, p. ex. certificats sense signar."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -646,34 +651,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Emojis propis"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Este missatge s'ha suprimit]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Este missatge s'ha suprimit: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[REDACTAT]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REDACTAT: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "%1 usuari: "
|
||||
msgstr[1] "%1 usuaris: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -731,353 +736,353 @@ msgstr "Prioritat baixa"
|
||||
msgid "Spaces"
|
||||
msgstr "Espais"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Hui"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Ahir"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Abans-d'ahir"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "un fitxer"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "s'ha tornat a convidar %1 a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "s'ha unit a la sala (repetit)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "s'ha convidat %1 a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "s'ha unit a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "ha netejat el seu nom que s'ha de mostrar"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "ha canviat el seu nom que s'ha de mostrar a %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " i "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "ha netejat el seu avatar"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ha establit un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "ha actualitzat el seu avatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "no ha canviat res"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "retira la invitació de %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "ha rebutjat la invitació"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "s'ha desbandejat %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "ell mateix s'ha desbandejat"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "ha posat %1 fora de la sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "ha/n deixat la sala"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "s'ha bandejat %1 de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "s'ha bandejat %1 de la sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "ell mateix s'ha bandejat de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "ha sol·licitat una invitació"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "ha sol·licitat una invitació amb el motiu: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "ha fet alguna cosa desconegut"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "ha netejat l'àlies principal de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ha establit l'àlies principal de la sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "ha netejat el nom de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ha establit el nom de la sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "ha netejat el tema"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ha establit el tema a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "ha canviat l'avatar de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "ha activat l'encriptació d'extrem a extrem"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "la sala s'ha actualitzat a la versió %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "la sala s'ha creat, versió %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "ha canviat els nivells de permís d'esta sala"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "ha canviat les llistes de control d'accés del servidor per a esta sala"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "ha afegit el giny %1"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "ha eliminat el giny %1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "ha configurat el giny %1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "ha actualitzat l'estat de %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "ha actualitzat l'estat de %1 per %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Esdeveniment desconegut"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "enviat un missatge…"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "enviat un adhesiu"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "ha tornat a convidar algú a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "ha convidat algú a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ha/n canviat el seu nom que s'ha de mostrar"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "retira una invitació d'usuari"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ha desbandejat un usuari"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "ha posat un usuari fora de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "ha bandejat un usuari de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "ha establit l'àlies principal de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ha establit el nom de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "ha establit el tema"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "ha actualitzat la versió de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "ha creat la sala"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "ha afegit un giny"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "ha eliminat un giny"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ha configurat un giny"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "ha actualitzat l'estat"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "ha començat una enquesta"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "L'informe s'ha enviat correctament."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1098,7 +1103,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Obri NeoChat en esta sala"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1136,7 +1141,7 @@ msgid "Attachment:"
|
||||
msgstr "Adjunt:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1192,7 +1197,7 @@ msgstr "Establir un títol d'adjunt..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Envia un missatge…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1305,13 +1310,13 @@ msgstr "Sense adhesius"
|
||||
msgid "No emojis"
|
||||
msgstr "Sense emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1322,17 +1327,17 @@ msgstr "Adhesius"
|
||||
msgid "View Location"
|
||||
msgstr "Visualitza l'emplaçament"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Tanca"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "El missatge s'ha enviat des d'un dispositiu verificat"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reacciona"
|
||||
@@ -1353,13 +1358,13 @@ msgstr "Rebutja"
|
||||
msgid "Accept"
|
||||
msgstr "Accepta"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Ubicacions"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "No hi ha ubicacions compartides en esta sala."
|
||||
@@ -1386,7 +1391,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1413,13 +1418,18 @@ msgstr "Introduïu la vostra ID de Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "ID de Matrix"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "S'està carregant…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Ja heu iniciat la sessió"
|
||||
@@ -1474,6 +1484,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Inici de sessió"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1587,32 +1604,32 @@ msgstr "Volum"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximitza"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Seleccioneu un fitxer local"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Imatge del porta-retalls"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Ves al primer missatge sense llegir"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Ves al últim missatge"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Arrossegueu ací els elements per a compartir"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1957,70 +1974,70 @@ msgstr "Administrador (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Confirma"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Detall del compte"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "No ignores este usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignora este usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Expulsa este usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Convida a este usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Bandeja este usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Bandeja l'usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Desbandeja este usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Establix el nivell de permisos d'usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Elimina els missatges recents d'este usuari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Eliminació de missatges"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Obri en un xat privat"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Copia l'enllaç"
|
||||
@@ -2671,12 +2688,24 @@ msgstr "Uniu-vos a diverses sales per a començar"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Busca en el directori de sales"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr "Reduïx %1"
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Expandix %1"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Sala silenciada"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configura la sala"
|
||||
@@ -2737,7 +2766,7 @@ msgstr "Canvia d'usuari"
|
||||
msgid "Open Settings"
|
||||
msgstr "Obri la configuració"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr ""
|
||||
@@ -2815,55 +2844,61 @@ msgstr "Opcions"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Obri les eines de desenvolupament"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Busca en esta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Busca"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Elimina la sala de les preferides"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Fes preferida la sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Mostra les ubicacions per a esta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Busca un usuari en esta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Convida un usuari"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Convida un usuari a la sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 membre"
|
||||
msgstr[1] "%1 membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "No hi ha comptador de membres"
|
||||
@@ -3372,12 +3407,6 @@ msgstr "Nom:"
|
||||
msgid "Label:"
|
||||
msgstr "Etiqueta:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3676,8 +3705,8 @@ msgstr "Configuració general"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Tanca a la safata del sistema"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Mostra en la safata del sistema"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
322
po/cs/neochat.po
322
po/cs/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-06-28 15:49+0200\n"
|
||||
"Last-Translator: Vit Pelcak <vit@pelcak.org>\n"
|
||||
"Language-Team: Czech <kde-i18n-doc@kde.org>\n"
|
||||
@@ -17,77 +17,77 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Lokalize 23.04.2\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Přihlášení selhalo: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Chyba sítě: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Soubor je pro stažení příliš velký."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Pomoc hledejte u správce serveru matrix."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Vytvoření místnosti selhalo: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Vytvoření místnosti selhalo: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr ""
|
||||
@@ -199,16 +199,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (sestaveno oproti %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -641,27 +646,27 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Vlastní emotikony"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -669,7 +674,7 @@ msgstr[0] "%1 uživatel:"
|
||||
msgstr[1] "%1 uživatelé:"
|
||||
msgstr[2] "%1 uživatelů:"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -729,353 +734,353 @@ msgstr "Nízká priorita"
|
||||
msgid "Spaces"
|
||||
msgstr "Mezery"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Dnes"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Včera"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " a "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "poslal(a) správu"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "poslal(a) nálepku"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "vytvořil(a) místnost"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Hlášení bylo úspěšně odesláno."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1096,7 +1101,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1134,7 +1139,7 @@ msgid "Attachment:"
|
||||
msgstr "Příloha:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1188,7 +1193,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Poslat správu…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1301,13 +1306,13 @@ msgstr "Žádné nálepky"
|
||||
msgid "No emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emotikony"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1318,17 +1323,17 @@ msgstr "Nálepky"
|
||||
msgid "View Location"
|
||||
msgstr "Zobrazit umístění"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Zavřít"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Zareagovat"
|
||||
@@ -1349,13 +1354,13 @@ msgstr "Odmítnout"
|
||||
msgid "Accept"
|
||||
msgstr "Přijmout"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Umístění"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1382,7 +1387,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1409,13 +1414,18 @@ msgstr ""
|
||||
msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Probíhá načítání…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1470,6 +1480,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Přihlášení"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1582,32 +1599,32 @@ msgstr "Hlasitost"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximalizovat"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Přejít na první nepřečtenou zprávu"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1921,70 +1938,70 @@ msgstr "Administrátor (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Potvrdit"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Podrobnosti účtu"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Od blokovat tohoto uživatele"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Nastavit úroveň pravomocí uživatele"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Kopírovat odkaz"
|
||||
@@ -2631,12 +2648,25 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Roztáhnout náhled"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr ""
|
||||
@@ -2697,7 +2727,7 @@ msgstr "Přepnout uživatele"
|
||||
msgid "Open Settings"
|
||||
msgstr "Otevřít nastavení"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat je offline. Prosím, zkontrolujte internetové připojení."
|
||||
@@ -2773,48 +2803,55 @@ msgstr "Možnosti"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Hledat"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Členové"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite users"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Pozvat uživatele"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2822,7 +2859,7 @@ msgstr[0] "%1 člen"
|
||||
msgstr[1] "%1 členové"
|
||||
msgstr[2] "%1 členů"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Žádný počet členů"
|
||||
@@ -3310,12 +3347,6 @@ msgstr "Název:"
|
||||
msgid "Label:"
|
||||
msgstr "Popisek:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3614,8 +3645,9 @@ msgid "General settings"
|
||||
msgstr "Obecná nastavení"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Zavřít do systémového panelu"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
320
po/da/neochat.po
320
po/da/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2020-12-13 17:28+0100\n"
|
||||
"Last-Translator: Martin Schlander <mschlander@opensuse.org>\n"
|
||||
"Language-Team: Danish <kde-i18n-doc@kde.org>\n"
|
||||
@@ -17,81 +17,81 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 20.04.2\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Login Failed"
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Login mislykkedes"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Network Error"
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Netværksfejl"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Login Failed"
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Login mislykkedes"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Login Failed"
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Login mislykkedes"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr ""
|
||||
@@ -206,16 +206,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -650,34 +655,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -736,356 +741,356 @@ msgstr "Lav prioritet"
|
||||
msgid "Spaces"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "I dag"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "I går"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " og "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send message"
|
||||
msgid "sent a message"
|
||||
msgstr "Send besked"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "created the room"
|
||||
msgstr "Lydløs"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send message"
|
||||
msgid "removed a widget"
|
||||
msgstr "Send besked"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1107,7 +1112,7 @@ msgstr ""
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1148,7 +1153,7 @@ msgid "Attachment:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1205,7 +1210,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Send besked"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1324,13 +1329,13 @@ msgstr ""
|
||||
msgid "No emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1342,17 +1347,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Indstillinger"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Luk"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr ""
|
||||
@@ -1373,14 +1378,14 @@ msgstr "Afvis"
|
||||
msgid "Accept"
|
||||
msgstr "Acceptér"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Settings"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Indstillinger"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1407,7 +1412,7 @@ msgid "Url:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1435,14 +1440,19 @@ msgstr ""
|
||||
msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading"
|
||||
msgid "Loading…"
|
||||
msgstr "Indlæser"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1500,6 +1510,14 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Login"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "Adgangskode"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1613,32 +1631,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Gå til første ulæste besked"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1956,73 +1974,73 @@ msgstr "Admin"
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Accounts"
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Konti"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite"
|
||||
msgid "Invite this user"
|
||||
msgstr "Invitér"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send message"
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Send besked"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Copy"
|
||||
msgid "Copy link"
|
||||
@@ -2691,13 +2709,25 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "Lydløs"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr ""
|
||||
@@ -2765,7 +2795,7 @@ msgstr ""
|
||||
msgid "Open Settings"
|
||||
msgstr "Indstillinger"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr ""
|
||||
@@ -2842,55 +2872,62 @@ msgstr ""
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Medlemmer"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Invitér"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "Medlem"
|
||||
msgstr[1] "Medlemmer"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr ""
|
||||
@@ -3389,13 +3426,6 @@ msgstr "Navn:"
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "Adgangskode"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3701,7 +3731,7 @@ msgstr "Indstillinger"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
323
po/de/neochat.po
323
po/de/neochat.po
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-06-05 13:08+0200\n"
|
||||
"Last-Translator: Frederik Schwarzer <schwarzer@kde.org>\n"
|
||||
"Language-Team: German <kde-i18n-de@kde.org>\n"
|
||||
@@ -20,80 +20,80 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Lokalize 23.07.70\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Anmeldung fehlgeschlagen: Zugangs-Token ist ungültig oder widerrufen"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Anmeldung fehlgeschlagen: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Netzwerkfehler: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Zugangs-Token kann nicht gefunden werden"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Vielleicht ist es gelöscht worden?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Der Zugriff auf das Schlüsselbund ist verweigert worden."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Bitte erlauben Sie NeoChat, das Zugangs-Token zu lesen"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Kein Schlüsselbund verfügbar."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Bitte installieren Sie ein Schlüsselbund, z. B. KWallet oder GNOME-"
|
||||
"Schlüsselbund unter Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Das Zugangs-Token kann nicht gelesen werden"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Datei zu groß für einen Download."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Erstellen des Raums ist fehlgeschlagen: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: %1"
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Erstellen des Raums ist fehlgeschlagen: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Die Kennung des Raums, den Sie betreten möchten, ist nicht gültig"
|
||||
@@ -207,16 +207,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (für %2 kompiliert)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Programm für das Matrix-Protokoll"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Unterstützt das Adressschema matrix:"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -656,34 +661,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Emojis"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Diese Nachricht wurde gelöscht]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Diese Nachricht wurde gelöscht: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[GELÖSCHT]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[GELÖSCHT: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 Benutzer: "
|
||||
msgstr[1] "%1 Benutzer: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -741,354 +746,354 @@ msgstr "Niedrige Priorität"
|
||||
msgid "Spaces"
|
||||
msgstr "Spaces"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Heute"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Gestern"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Vorgestern"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "eine Datei"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "hat %1 wieder in den Raum eingeladen"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "hat den Raum wiederholt betreten"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "hat %1 in den Raum eingeladen"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "hat den Raum betreten"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "hat den eigenen Anzeigenamen gelöscht"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "hat den eigenen Anzeigenamen zu %1 geändert"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " und "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "hat den eigenen Avatar gelöscht"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "hat einen Avatar festgelegt"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "hat den eigenen Avatar aktualisiert"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "hat nichts geändert"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "hat die Einladung an %1 zurückgezogen"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "hat die Einladung abgelehnt"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "hat Verbannung von %1 aufgehoben"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "hat die eigene Verbannung aufgehoben"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "hat %1 aus den Raum entfernt: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "hat den Raum verlassen"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "hat %1 aus dem Raum verbannt"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "hat %1 aus dem Raum verbannt: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "hat sich selbst aus dem Raum verbannt"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "hat eine Einladung angefragt"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "requested an invite"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "hat eine Einladung angefragt"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "hat etwas Unbekanntes getan"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "hat den Hauptalias des Raums gelöscht"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "hat den Hauptalias des Raums geändert zu: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "hat den Raumnamen gelöscht"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "hat den Raumnamen geändert zu: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "hat das Thema gelöscht"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "hat das Thema geändert zu: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "hat das Raumbild geändert"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "hat die Ende-zu-Ende-Verschlüsselung aktiviert"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "hat den Raum auf Version %1 aktualisiert"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "hat den Raum in Version %1 erstellt"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "Die Berechtigungsstufen des Raumes wurden geändert"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "hat die Server-Zugangskontrollliste für diesen Raum geändert"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "hat %1-Element hinzugefügt"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "hat %1-Element entfernt"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "hat %1-Element eingerichtet"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "aktualisierte %1-Zustand"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "aktualisierte %1-Zustand für %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Unbekanntes Ereignis"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "hat eine Nachricht gesendet"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "hat einen Sticker gesendet"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "hat jemanden wieder in den Raum eingeladen"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "hat jemanden in den Raum eingeladen"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "hat den eigenen Anzeigenamen geändert"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "hat die Einladung eines Benutzers zurückgezogen"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "hat Verbannung eines Benutzers aufgehoben"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "hat einen Benutzer aus den Raum entfernt"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "hat einen Benutzer aus dem Raum verbannt"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "hat den Hauptalias des Raums geändert"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "hat den Raumnamen geändert"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "hat das Thema geändert"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "hat die Raum-Version aktualisiert"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "hat den Raum erstellt"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "hat ein Element hinzugefügt"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "hat ein Element entfernt"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "hat ein Element eingerichtet"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "hat den Zustand aktualisiert"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "hat eine Abstimmung gestartet"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Meldung erfolgreich übertragen."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1109,7 +1114,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "NeoChat in diesem Raum öffnen"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1147,7 +1152,7 @@ msgid "Attachment:"
|
||||
msgstr "Anhang:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1201,7 +1206,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Eine Nachricht senden ..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1317,13 +1322,13 @@ msgstr "Sticker"
|
||||
msgid "No emojis"
|
||||
msgstr "Keine Emoji"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1335,17 +1340,17 @@ msgstr "Sticker"
|
||||
msgid "View Location"
|
||||
msgstr "Einen Standort senden"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Diese Nachricht wurde von einem verifizierten Gerät gesendet"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reagieren"
|
||||
@@ -1366,14 +1371,14 @@ msgstr "Ablehnen"
|
||||
msgid "Accept"
|
||||
msgstr "Annehmen"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Benachrichtigungen"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1401,7 +1406,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1428,13 +1433,19 @@ msgstr "Geben Sie Ihre Matrix-ID ein"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix-ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix-ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Wird geladen ..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Bereits angemeldet"
|
||||
@@ -1489,6 +1500,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Anmelden"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1602,32 +1620,32 @@ msgstr "Lautstärke"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximieren"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Lokale Datei auswählen"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Bild aus Zwischenablage"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Zur ersten ungelesenen Nachricht springen"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Zur neuesten Nachricht springen"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Einträge hier einfügen um sie zu teilen"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1987,70 +2005,70 @@ msgstr "Admin (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Bestätigen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Kontodetail"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Diesen Benutzer nicht mehr ignorieren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Diesen Benutzer ignorieren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Diesen Benutzer rauswerfen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Diesen Benutzer einladen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Diesen Benutzer verbannen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Benutzer verbannen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Verbannung dieses Benutzers aufheben"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Kürzliche Nachrichten dieses Benutzers löschen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Nachrichten löschen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Privaten Chat öffnen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Verknüpfung kopieren"
|
||||
@@ -2704,12 +2722,25 @@ msgstr "Einen Raum betreten, um zu beginnen"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Raumverzeichnis durchsuchen"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Vorschau vergrößern"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Stummgeschaltet"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Raum konfigurieren"
|
||||
@@ -2770,7 +2801,7 @@ msgstr "Benutzer wechseln"
|
||||
msgid "Open Settings"
|
||||
msgstr "Einstellungen öffnen"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat ist offline. Bitte überprüfen Sie Ihre Netzwerkverbindung."
|
||||
@@ -2848,56 +2879,63 @@ msgstr "Einstellungen"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Entwicklungswerkzeuge öffnen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "In diesem Raum suchen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Suchen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Raum aus Favoriten entfernen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Raum zu Favoriten hinzufügen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "In diesem Raum suchen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Mitglieder"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Benutzer in Raum suchen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Einen Benutzer einladen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Einen Benutzer in den Raum einladen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 Mitglied"
|
||||
msgstr[1] "%1 Mitglieder"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Keine Mitgliederanzahl"
|
||||
@@ -3412,12 +3450,6 @@ msgstr "Name:"
|
||||
msgid "Label:"
|
||||
msgstr "Beschriftung:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3718,8 +3750,9 @@ msgid "General settings"
|
||||
msgstr "Allgemeine Einstellungen"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Beim Schließen in den Systemabschnitt der Kontrollleiste minimieren"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
323
po/el/neochat.po
323
po/el/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-01-06 16:47+0200\n"
|
||||
"Last-Translator: Stelios <sstavra@gmail.com>\n"
|
||||
"Language-Team: Greek <kde-i18n-el@kde.org>\n"
|
||||
@@ -17,81 +17,81 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 21.12.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Αποτυχία σύνδεσης: μη έγκυρο ενδεικτικό πρόσβασης ή έχει ανακληθεί"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Αποτυχία σύνδεσης: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Σφάλμα δικτύου: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Το ενδεικτικό πρόσβασης δεν βρέθηκε"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Ίσως να έχει διαγραφεί;"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Άρνηση πρόσβασης στα κλειδιά."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Επίτρεψε στο NeoChat να διαβάσει το ενδεικτικό πρόσβασης"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Καμία διαθέσιμη αλυσίδα κλειδιών."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Εγκατέστησε μια αλυσίδα κλειδιών. π.χ. το KWallet ή το GNOME keyring στο "
|
||||
"Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Αδυναμία ανάγνωσης του ενδεικτικού πρόσβασης"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Αποτυχία δημιουργίας αίθουσας: «%1»"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Αποτυχία δημιουργίας αίθουσας: «%1»"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Προσπάθεια εισόδου με μη έγκυρο αναγνωριστικό αίθουσας"
|
||||
@@ -206,16 +206,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (κατασκευάστηκε με τη %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Πελάτης για το πρωτόκολλο επικοινωνίας Matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Υποστηρίζει το matrix: url σχήμα"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -660,34 +665,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Χωρίς εμότζι"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Αυτό το μήνυμα διαγράφηκε]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Αυτό το μήνυμα διαγράφηκε: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[ΔΙΑΓΡΑΜΜΕΝΟ]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ΔΙΑΓΡΑΜΜΕΝΟ: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -747,276 +752,276 @@ msgstr "Χαμηλή προτεραιότητα"
|
||||
msgid "Spaces"
|
||||
msgstr "Χώροι"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Σήμερα"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Χθες"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Προχθές"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "ένα αρχείο"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "επαναπροσκλήθηκε %1 στην αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "εισήλθε στην αίθουσα (επαναληπτικά)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "προσκλήθηκε %1 στην αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "εισήλθε στην αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "καθάρισε το όνομά του όπως εμφανίζεται"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "άλλαξε το όνομά του όπως εμφανίζεται σε %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " και "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "καθάρισε το δικό του avatar"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ρύθμιση avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "ενημέρωσε το δικό του avatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "δεν άλλαξε τίποτε"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "απόσυρε την πρόσκληση για %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "απόρριψε την πρόσκληση"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "αναιρέθηκε ο αποκλεισμός για %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "αυτοαναίρεση αποκλεισμού"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "έχει θέσει %1 εκτός αιθούσης: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "έφυγε από την αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "αποκλείστηκε %1 από την αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "αποκλείστηκε %1 από την αίθουσα: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "αυτο-αποκλείστηκε από την αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "αιτήθηκε μια πρόσκληση"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "αιτήθηκε μια πρόσκληση με αιτιολόγηση: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "έκανε κάτι άγνωστο"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "καθάρισε το κύριο συνώνυμο της αίθουσας"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ρύθμιση του κύριου συνώνυμου της αίθουσας σε: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "καθάρισε το όνομα της αίθουσας"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ρύθμιση του ονόματος της αίθουσας σε: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "καθάρισε το θέμα"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ρύθμιση του θέματος σε: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "άλλαξε το avatar της αίθουσας"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "ενεργοποιήθηκε κρυπτογράφηση στα άκρα"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "αναβαθμίστηκε η αίθουσα σε έκδοση %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "δημιουργήθηκε η αίθουσα, έκδοση %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "άλλαξαν τα επίπεδα δικαιωμάτων για αυτήν την αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
"άλλαξαν οι λίστες ελέγχου πρόσβασης στον εξυπηρετητή για αυτήν την αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "προστέθηκε %1 γραφικό συστατικό"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "αφαιρέθηκε %1 γραφικό συστατικό"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "διαμορφώθηκε %1 γραφικό συστατικό"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "ενημερώθηκε %1 κατάσταση"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "ενημερώθηκε %1 κατάσταση για το %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Άγνωστο γεγονός"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send a message…"
|
||||
msgid "sent a message"
|
||||
msgstr "Αποστολή μηνύματος…"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "επαναπροσκλήθηκε %1 στην αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "προσκλήθηκε %1 στην αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
@@ -1024,98 +1029,98 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "άλλαξε το όνομά του όπως εμφανίζεται σε %1"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "απόσυρε την πρόσκληση για %1"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "αναιρέθηκε ο αποκλεισμός για %1"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "έχει θέσει %1 εκτός αιθούσης: %2"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "αποκλείστηκε %1 από την αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
msgid "set the room main alias"
|
||||
msgstr "ρύθμιση του κύριου συνώνυμου της αίθουσας σε: %1"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
msgid "set the room name"
|
||||
msgstr "ρύθμιση του ονόματος της αίθουσας σε: %1"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "ρύθμιση του θέματος σε: %1"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "αναβαθμίστηκε η αίθουσα σε έκδοση %1"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "έφυγε από την αίθουσα"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] added <name> widget"
|
||||
#| msgid "added %1 widget"
|
||||
msgid "added a widget"
|
||||
msgstr "προστέθηκε %1 γραφικό συστατικό"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] removed <name> widget"
|
||||
#| msgid "removed %1 widget"
|
||||
msgid "removed a widget"
|
||||
msgstr "αφαιρέθηκε %1 γραφικό συστατικό"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] configured <name> widget"
|
||||
#| msgid "configured %1 widget"
|
||||
msgid "configured a widget"
|
||||
msgstr "διαμορφώθηκε %1 γραφικό συστατικό"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "ενημερώθηκε %1 κατάσταση"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Η αναφορά εστάλη με επιτυχία."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1136,7 +1141,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Άνοιγμα NeoChat σε αυτήν την αίθουσα"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1174,7 +1179,7 @@ msgid "Attachment:"
|
||||
msgstr "Συνημμένο:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1230,7 +1235,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Αποστολή μηνύματος…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1354,14 +1359,14 @@ msgstr "Προσθήκη λέξης κλειδιού"
|
||||
msgid "No emojis"
|
||||
msgstr "Χωρίς εμότζι"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No emojis"
|
||||
msgid "Emojis"
|
||||
msgstr "Χωρίς εμότζι"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1373,17 +1378,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Αποστολή πρόσκλησης"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Κλείσιμο"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Αυτό το μήνυμα εστάλη από επιβεβαιωμένη συσκευή"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Αντίδραση"
|
||||
@@ -1404,14 +1409,14 @@ msgstr "Απόρριψη"
|
||||
msgid "Accept"
|
||||
msgstr "Αποδοχή"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Ειδοποιήσεις"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1439,7 +1444,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1466,13 +1471,19 @@ msgstr "Δώσε το αναγνωριστικό σου στο Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Φορτώνει…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Ήδη σε σύνδεση"
|
||||
@@ -1527,6 +1538,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Σύνδεση"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Κωδικός πρόσβασης"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1642,32 +1660,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Επιλογή τοπικού αρχείου"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Εικόνα πρόχειρου"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Μετάβαση στο πρώτο μη αναγνωσμένο μήνυμα"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Μετάβαση στο τελευταίο μήνυμα"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Έλκυσε αντικείμενα εδώ για να τα μοιραστείς"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -2015,71 +2033,71 @@ msgstr "Διαχειριστής"
|
||||
msgid "Confirm"
|
||||
msgstr "Επιβεβαίωση"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Λεπτομέρειες λογαριασμού"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Αναίρεση αγνόησης αυτού του χρήστη"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Αγνόηση αυτού του χρήστη"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Διώξε αυτόν το χρήστη"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Προσκάλεσε αυτόν τον χρήστη"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Απόκλεισε αυτόν τον χρήστη"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Αποκλεισμός χρήστη"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Αναίρεση αποκλεισμού αυτού του χρήστη"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit user power level"
|
||||
msgid "Set user power level"
|
||||
msgstr "Επεξεργασία επιπέδου δικαιωμάτων του χρήστη"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Αφαίρεση πρόσφατων μηνυμάτων αυτού του χρήστη"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Αφαίρεση μηνυμάτων"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Άνοιγμα ιδιωτικής συνομιλίας"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Αντιγραφή συνδέσμου"
|
||||
@@ -2735,12 +2753,25 @@ msgstr "Μπορείς να εισέλθεις σε κάποιες αίθουσ
|
||||
msgid "Search in room directory"
|
||||
msgstr "Αναζήτηση στον κατάλογο με τις αίθουσες"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "αναιρέθηκε ο αποκλεισμός για %1"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Αίθουσα σε σίγαση"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Διαμόρφωση αίθουσας"
|
||||
@@ -2803,7 +2834,7 @@ msgstr "Εναλλαγή χρήστη"
|
||||
msgid "Open Settings"
|
||||
msgstr "Άνοιγμα ρυθμίσεων"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "Το NeoChat είναι εκτός σύνδεσης. Έλεγξε τη σύνδεση του δικτύου σου."
|
||||
@@ -2881,49 +2912,56 @@ msgstr "Επιλογές"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Άνοιγμα εργαλείων προγραμματιστή"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Αναζήτηση σε αυτήν την αίθουσα"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Αναζήτηση"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Αφαίρεση αίθουσας από τις προτιμώμενες"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Να γίνει η αίθουσα προτιμώμενη"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Αναζήτηση σε αυτήν την αίθουσα"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Μέλη"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Αναζήτηση χρήστη στην αίθουσα"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Πρόσκληση σε χρήστη"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Πρόσκληση χρήστη στην αίθουσα"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -2932,7 +2970,7 @@ msgid_plural "%1 members"
|
||||
msgstr[0] "%1 μέλος"
|
||||
msgstr[1] "%1 μέλη"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3445,12 +3483,6 @@ msgstr "Όνομα:"
|
||||
msgid "Label:"
|
||||
msgstr "Ετικέτα:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Κωδικός πρόσβασης"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3760,8 +3792,9 @@ msgid "General settings"
|
||||
msgstr "Γενικές ρυθμίσεις"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Κοντά στο πλαίσιο συστήματος"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-06-17 12:19+0100\n"
|
||||
"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
|
||||
"Language-Team: British English\n"
|
||||
@@ -17,77 +17,77 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 23.03.70\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Login Failed: Access Token invalid or revoked"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Login Failed: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Network Error: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Access token wasn't found"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Maybe it was deleted?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Access to keychain was denied."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Please allow NeoChat to read the access token"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "No keychain available."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Unable to read access token"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "File too large to download."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Contact your matrix server administrator for support."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Room creation failed: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Space creation failed: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "The room ID you are trying to join is not valid"
|
||||
@@ -199,16 +199,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (built against %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Client for the matrix communication protocol"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Supports matrix: URL scheme"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -639,34 +644,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Own Emojis"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[This message was deleted]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[This message was deleted: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[REDACTED]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REDACTED: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 user: "
|
||||
msgstr[1] "%1 users: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -724,353 +729,353 @@ msgstr "Low priority"
|
||||
msgid "Spaces"
|
||||
msgstr "Spaces"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Today"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Yesterday"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "The day before yesterday"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "a file"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "re invited %1 to the room"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "joined the room (repeated)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "invited %1 to the room"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "joined the room"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "cleared their display name"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "changed their display name to %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " and "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "cleared their avatar"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "set an avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "updated their avatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "changed nothing"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "withdrew %1's invitation"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "rejected the invitation"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "unbanned %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "self-unbanned"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "has put %1 out of the room: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "left the room"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "banned %1 from the room"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "banned %1 from the room: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "self-banned from the room"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "requested an invite"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "requested an invite with reason: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "made something unknown"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "cleared the room main alias"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "set the room main alias to: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "cleared the room name"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "set the room name to: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "cleared the topic"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "set the topic to: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "changed the room avatar"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "activated End-to-End Encryption"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "upgraded the room to version %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "created the room, version %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "changed the power levels for this room"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "changed the server access control lists for this room"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "added %1 widget"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "removed %1 widget"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "configured %1 widget"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "updated %1 state"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "updated %1 state for %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Unknown event"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "sent a message"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "sent a sticker"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "re-invited someone to the room"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "invited someone to the room"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "changed their display name"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "withdrew a user's invitation"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "un-banned a user"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "put a user out of the room"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "banned a user from the room"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "set the room main alias"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "set the room name"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "set the topic"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "upgraded the room version"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "created the room"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "added a widget"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "removed a widget"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "configured a widget"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "updated the state"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "started a poll"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Report sent successfully."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1091,7 +1096,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Open NeoChat in this room"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1129,7 +1134,7 @@ msgid "Attachment:"
|
||||
msgstr "Attachment:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1185,7 +1190,7 @@ msgstr "Set an attachment caption..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Send a message…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1298,13 +1303,13 @@ msgstr "No stickers"
|
||||
msgid "No emojis"
|
||||
msgstr "No emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1316,17 +1321,17 @@ msgstr "Stickers"
|
||||
msgid "View Location"
|
||||
msgstr "Send a Location"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Close"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "This message was sent from a verified device"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "React"
|
||||
@@ -1347,14 +1352,14 @@ msgstr "Reject"
|
||||
msgid "Accept"
|
||||
msgstr "Accept"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Notifications"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1382,7 +1387,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1409,13 +1414,19 @@ msgstr "Enter your Matrix ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Loading…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Already logged in"
|
||||
@@ -1470,6 +1481,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Login"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1583,32 +1601,32 @@ msgstr "Volume"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximise"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Choose local file"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Clipboard image"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Jump to first unread message"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Jump to latest message"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Drag items here to share them"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1949,70 +1967,70 @@ msgstr "Admin (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Confirm"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Account detail"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Do not ignore this user"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignore this user"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Kick this user"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Invite this user"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Ban this user"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Ban User"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Unban this user"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Set user power level"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Remove recent messages by this user"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Remove Messages"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Open a private chat"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Copy link"
|
||||
@@ -2663,12 +2681,25 @@ msgstr "Join some rooms to get started"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Search in room directory"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Expand preview"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Muted room"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configure room"
|
||||
@@ -2729,7 +2760,7 @@ msgstr "Switch User"
|
||||
msgid "Open Settings"
|
||||
msgstr "Open Settings"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat is offline. Please check your network connection."
|
||||
@@ -2807,56 +2838,63 @@ msgstr "Options"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Open developer tools"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Search in this room"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Search"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Remove room from favourites"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Make room favourite"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Search in this room"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Members"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Search user in room"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Invite a User"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Invite user to room"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 member"
|
||||
msgstr[1] "%1 members"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "No member count"
|
||||
@@ -3352,12 +3390,6 @@ msgstr "Name:"
|
||||
msgid "Label:"
|
||||
msgstr "Label:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3656,8 +3688,9 @@ msgid "General settings"
|
||||
msgstr "General settings"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Close to system tray"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
322
po/es/neochat.po
322
po/es/neochat.po
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-07-30 18:32+0200\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-01 14:28+0200\n"
|
||||
"Last-Translator: Eloy Cuadra <ecuadra@eloihr.net>\n"
|
||||
"Language-Team: Spanish <kde-l10n-es@kde.org>\n"
|
||||
"Language: es\n"
|
||||
@@ -19,80 +19,80 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 23.04.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Inicio de sesión fallido: Token de acceso no válido o revocado"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "El inicio de sesión ha fallado: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Error de red: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "El token de acceso no se ha encontrado"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "¿Es posible que se haya borrado?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Se ha denegado el acceso a la cadena de claves."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Por favor, permita que NeoChat pueda leer el token de acceso"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Ninguna cadena de claves disponible."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Instale una cadena de claves, como KWallet o el llavero de GNOME en Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "No se ha podido leer el token de acceso"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Archivo demasiado grande para descargarlo."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
"Póngase en contacto con el administrador del servidor matrix para obtener "
|
||||
"asistencia."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "La creación de la sala ha fallado: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "La creación del espacio ha fallado: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "El ID de la sala a la que está intentando unirse no es válido"
|
||||
@@ -205,16 +205,22 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (compilado con %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Cliente para el protocolo de comunicaciones Matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Permite el esquema de URL «matrix:»"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
"Ignorar todos los errores de SSL (por ejemplo, certificados sin firmar)."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -645,34 +651,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Emojis propios"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Este mensaje ha sido borrado]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Este mensaje ha sido borrado: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[CORREGIDO]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[CORREGIDO: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 usuario: "
|
||||
msgstr[1] "%1 usuarios: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -730,353 +736,353 @@ msgstr "Baja prioridad"
|
||||
msgid "Spaces"
|
||||
msgstr "Espacios"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Hoy"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Ayer"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Anteayer"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "un archivo"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "ha vuelto a invitar a %1 a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "se ha unido a la sala (repetido)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "ha invitado a %1 a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "se ha unido a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "ha borrado su nombre visible"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "ha cambiado su nombre visible a %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " y "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "ha borrado su avatar"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ha definido un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "ha actualizado su avatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "no ha cambiado nada"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "ha retirado la invitación de %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "ha rechazado la invitación"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "ha habilitado a %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "se ha habilitado a sí mismo"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "ha echado a %1 de la sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "ha salido de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "ha inhabilitado a %1 en la sala"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "ha inhabilitado a %1 en la sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "se ha inhabilitado a sí mismo en la sala"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "ha solicitado una invitación"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "ha solicitado una invitación con el motivo: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "ha hecho algo desconocido"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "ha borrado el alias principal de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ha definido el alias principal de la sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "ha borrado el nombre de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ha definido el nombre de la sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "ha borrado el tema"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ha definido el tema a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "ha cambiado el avatar de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "ha activado el cifrado de extremo a extremo"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "ha actualizado la sala a la versión %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "ha creado la sala, versión %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "ha cambiado los niveles de poder de esta sala"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "ha cambiado las listas de control de acceso al servidor para esta sala"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "ha añadido el widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "ha eliminado el widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "ha configurado el widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "ha actualizado el estado de %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "ha actualizado el estado de %1 para %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Evento desconocido"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "ha enviado un mensaje"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "ha enviado una pegatina"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "ha vuelto a invitar a alguien a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "ha invitado a alguien a la sala"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ha cambiado su nombre visible"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "ha retirado la invitación de un usuario"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ha habilitado a un usuario"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "ha echado a un usuario de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "ha inhabilitado a un usuario en la sala"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "ha definido el alias principal de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ha definido el nombre de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "ha definido el tema"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "ha actualizado la versión de la sala"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "ha creado la sala"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "ha añadido un widget"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "ha eliminado un widget"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ha configurado un widget"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "ha actualizado el estado"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "ha iniciado una encuesta"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "La denuncia se ha enviado correctamente."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1097,7 +1103,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Abrir NeoChat en esta sala"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1135,7 +1141,7 @@ msgid "Attachment:"
|
||||
msgstr "Adjunto:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1191,7 +1197,7 @@ msgstr "Definir un subtítulo de adjunto..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Enviar un mensaje..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1304,13 +1310,13 @@ msgstr "No hay pegatinas"
|
||||
msgid "No emojis"
|
||||
msgstr "No hay emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1321,17 +1327,17 @@ msgstr "Pegatinas"
|
||||
msgid "View Location"
|
||||
msgstr "Ver ubicación"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Este mensaje se ha enviado desde un dispositivo verificado"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reaccionar"
|
||||
@@ -1352,13 +1358,13 @@ msgstr "Rechazar"
|
||||
msgid "Accept"
|
||||
msgstr "Aceptar"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Ubicaciones"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "No hay ubicaciones compartidas en esta sala."
|
||||
@@ -1385,7 +1391,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1412,13 +1418,18 @@ msgstr "Introduzca su ID de Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "ID de Matrix"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Cargando..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Ya ha iniciado sesión"
|
||||
@@ -1473,6 +1484,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Inicio de sesión"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1586,32 +1604,32 @@ msgstr "Volumen"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximizar"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Escoger archivo local"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Imagen del portapapeles"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Saltar al primer mensaje sin leer"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Saltar al último mensaje"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Arrastre elementos aquí para compartirlos"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1958,70 +1976,70 @@ msgstr "Administrador (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Detalles de la cuenta"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Dejar de ignorar a este usuario"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignorar a este usuario"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Expulsar a este usuario"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Invitar a este usuario"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Inhabilitar a este usuario"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Inhabilitar usuario"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Habilitar a este usuario"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Definir el nivel de poder de usuario"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Eliminar los mensajes recientes de este usuario"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Eliminar mensajes"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Abrir un chat privado"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Copiar enlace"
|
||||
@@ -2672,12 +2690,24 @@ msgstr "Únase a algunas salas para empezar"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Buscar en el directorio de la sala"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr "Contraer %1"
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Expandir %1"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Sala silenciada"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configurar la sala"
|
||||
@@ -2738,7 +2768,7 @@ msgstr "Cambiar usuario"
|
||||
msgid "Open Settings"
|
||||
msgstr "Abrir las preferencias"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat no está conectado. Compruebe su conexión de red."
|
||||
@@ -2814,55 +2844,61 @@ msgstr "Opciones"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Abrir las herramientas del desarrollador"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Buscar en esta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Eliminar sala de las favoritas"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Poner sala en favoritas"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Mostrar ubicaciones de esta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Miembros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Buscar usuario en la sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Invitar a un usuario"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Invitar usuario a la sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 miembro"
|
||||
msgstr[1] "%1 miembros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Sin contador de miembros"
|
||||
@@ -3372,12 +3408,6 @@ msgstr "Nombre:"
|
||||
msgid "Label:"
|
||||
msgstr "Etiqueta:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3674,8 +3704,8 @@ msgstr "Preferencias generales"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Minimizar a la bandeja del sistema"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Mostrar en la bandeja del sistema"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
319
po/eu/neochat.po
319
po/eu/neochat.po
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 10:12+0200\n"
|
||||
"Last-Translator: Iñigo Salvador Azurmendi <xalba@ni.eus>\n"
|
||||
"Language-Team: Basque <kde-i18n-eu@kde.org>\n"
|
||||
@@ -20,80 +20,80 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Lokalize 23.04.0\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Saio-hastea huts egin du: Sartzeko token baliogabea edo indargabetua"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Saio-hastea huts egin du: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Sareko errorea: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Sartzeko tokena ez du aurkitu"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Agian ezabatu egin da?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Gako-katerako sarrera ukatu egin da."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Mesedez, utzi NeoChat-i sartzeko tokena irakurtzen"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Ez dago gako-kate erabilgarririk."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Mesedez, instalatu gako-kate bat, adib. KWallet edo «GNOME keyring» Linux-en"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Ez da sartzeko tokena irakurtzeko gai"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Fitxategia zama-jaisteko handiegia da."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
"Jar zaitez zure matrix zerbitzariaren administratzailearekin harremanean "
|
||||
"euskarria lortzeko."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Gela sortzea huts egin du: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Tokia sortzea huts egin du: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Batzen saiatzen ari zaren gelaren IDa ez da baliozkoa"
|
||||
@@ -205,16 +205,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (%2 erabiliz eraikia)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix, deszentralizatutako komunikazio protokolorako bezeroa"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "matrix onartzen du: URL eskema"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "Ez egin kasu SSL erroreei, adib., sinatu gabeko ziurtagiriei."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -646,34 +651,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Emoji propioak"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Mezu hau ezabatu egin da]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Mezu hau ezabatu egin da: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[ERREDAKZIO LANA DU]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ERREDAKZIOAK LANA DU: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "Erabiltzaile 1:"
|
||||
msgstr[1] "%1 erabiltzaile:"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -731,354 +736,354 @@ msgstr "Lehentasun txikia"
|
||||
msgid "Spaces"
|
||||
msgstr "Tokiak"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Gaur"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Atzo"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Herenegun"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "fitxategi bat"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "%1 gelara berriz gonbidatua"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "gelara batu da (errepikatuta)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 gelara gonbidatu du"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "gelara batu da"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "azaldutako bere izena garbitu du"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "azaldutako bere izena «%1»(e)ra aldatu du"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " eta "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "bere abatarra garbitu du"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ezarri abatar bat"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "bere abatarra eguneratu du"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "ez da ezer aldatu"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "%1(r)en gonbita erretiratu du"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "gonbidapena errefusatu du"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "%1(e)ri debekua altxatu zaio"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "bere buruari debekua altxatuta"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "%1 gelatik kanporatu du: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "gela utzi du"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "%1(e)ri gelarako debekua ipini zaio"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "%1(e)ri gelarako debekua ipini zaio: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "bere buruari gela honetarako debekua ipinita"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "gonbidapen bat eskatu du"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "gonbidapen bat eskatu du, arrazoia: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "zerbait ezezaguna egin du"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "gelaren ezizen nagusia garbitu da"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ezarri gelako ezizen nagusia honetara: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "gelako izena garbitu da"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ezarri gelaren izana honetara: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "gaia garbitu da"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ezarri gai honetara: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "gelako abatarra aldatu da"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "muturren arteko zifratzea aktibatu da"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "gela %1 bertsiora bertsio-berritu da"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "gela sortu da, %1 bertsioa"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "gela honetako ahalmen mailak aldatu dira"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
"gela honetarako zerbitzarirako sarrera-kontroleko zerrendak aldatu zituen"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "trepeta %1 gehitu da"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "trepeta %1 kendu da"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "trepeta %1 konfiguratu da"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "%1 egoera eguneratu da"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "%2(r)en %1 egoera eguneratu da"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Gertaera ezezaguna"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "mezua bat bidali du..."
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "eranskailu bat bidali du"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "norbait gelara berriz gonbidatu du"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "norbait gelara gonbidatu du"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "azaldutako bere izena aldatu du"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "erabiltzaile bati gonbidapena erretiratu dio"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "erabiltzaile bati debekua altxatu dio"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "erabiltzaile bat gelatik kanporatu du"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "erabiltzaile bati gelarako debekua ipini dio"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "gelaren ezizen nagusia ezarri du"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "gelaren izena ezarri du"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "gaia ezarri du"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "gelaren bertsioa bertsio-berritu du"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "gela sortu du"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "trepeta bat gehitu du"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "trepeta bat kendu du"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "trepeta bat konfiguratu du"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "egoera eguneratu du"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "inkesta bat hasi du"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Txosten bidalketa arrakastatsua."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1099,7 +1104,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Ireki NeoChat gela honetan"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1137,7 +1142,7 @@ msgid "Attachment:"
|
||||
msgstr "Eranskina:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1193,7 +1198,7 @@ msgstr "Ezarri eranskin baten epigrafea..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Bidali mezua bat..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1306,13 +1311,13 @@ msgstr "Eranskailurik ez"
|
||||
msgid "No emojis"
|
||||
msgstr "Emojirik gabe"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emojiak"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1323,17 +1328,17 @@ msgstr "Eranskailuak"
|
||||
msgid "View Location"
|
||||
msgstr "Ikusi kokalekua"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Itxi"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Mezu hau egiaztatutako gailu batetik bidali da"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Erreakzioa"
|
||||
@@ -1354,13 +1359,13 @@ msgstr "Errefusatu"
|
||||
msgid "Accept"
|
||||
msgstr "Onartu"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Kokalekuak"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Gela honetan ez dago partekatutako kokalekurik."
|
||||
@@ -1387,7 +1392,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1414,13 +1419,18 @@ msgstr "Sartu zure Matrix-eko ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix ID"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Zamatzen..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Dagoeneko saio-hasita"
|
||||
@@ -1475,6 +1485,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Saio-hasi"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Pasahitza"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1587,32 +1604,32 @@ msgstr "Bolumena"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximizatu"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Hautatu tokiko fitxategia"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Arbelako irudia"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Jauzi irakurri gabeko lehenengo mezura"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Jauzi azken mezura"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Arrastatu elementuak hona haiek partekatzeko"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1950,70 +1967,70 @@ msgstr "Administratzailea (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Berretsi"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Kontuaren xehetasuna"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Erabiltzaile honi ez ikusi egiteari utzi"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ez ikusi erabiltzaile hau"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Kanporatu erabiltzaile hau"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Gonbidatu erabiltzaile hau"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Debekatua erabiltzaile honi"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Debekua erabiltzaileari"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Erabiltzailearen debekua altxatzea"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Ezarri erabiltzailearen ahalmen maila"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Kendu erabiltzaile horren azken aldiko mezuak"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Kendu mezuak"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Ireki berriketa pribatu bat"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Kopiatu esteka"
|
||||
@@ -2665,12 +2682,24 @@ msgstr "Hasteko, batu gela batzuetara"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Bilatu gelen direktorioan"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr "Tolestu %1"
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Zabaldu %1"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Isilarazitako gela"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Konfiguratu gela"
|
||||
@@ -2731,7 +2760,7 @@ msgstr "Aldatu erabiltzailea"
|
||||
msgid "Open Settings"
|
||||
msgstr "Ireki ezarpenak"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat lerroz kanpo dago. Mesedez, berrikusi zure sare-konexioa."
|
||||
@@ -2807,55 +2836,61 @@ msgstr "Aukerak"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Ireki garatzailearen tresnak"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Bilatu gela honetan"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Bilatu"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Kendu gela gogokoetatik"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Egin gela gogoko"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Erakutsi gela honetarako kokalekuak"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Partaideak"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Bilatu erabiltzailea gelan"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Gonbidatu erabiltzaile bat"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Gonbidatu erabiltzaile bat gelara"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "Partaide %1"
|
||||
msgstr[1] "%1 partaide"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Ez dago partaide kopururik"
|
||||
@@ -3351,12 +3386,6 @@ msgstr "Izena:"
|
||||
msgid "Label:"
|
||||
msgstr "Labela:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Pasahitza"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3653,8 +3682,8 @@ msgstr "Ezarpen orokorrak"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Itxi sistemako erretilura"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Erakutsi sistemaren erretiluan"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
323
po/fi/neochat.po
323
po/fi/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-04 21:33+0300\n"
|
||||
"Last-Translator: Tommi Nieminen <translator@legisign.org>\n"
|
||||
"Language-Team: Finnish <kde-i18n-doc@kde.org>\n"
|
||||
@@ -17,77 +17,77 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Kirjautuminen epäonnistui: pääsymerkki on virheellinen tai peruttu"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Kirjautuminen epäonnistui: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Verkkovirhe: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Pääsymerkkiä ei löytynyt"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Se on ehkä poistettu?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Pääsymerkin käyttö estettiin."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Salli NeoChatin lukea pääsymerkki"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Avainrenkaita ei ole saatavilla."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr "Asenna avainrengas, esim. Linuxissa KWallet tai Gnomen avainrengas"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Saantimerkkiä ei voida lukea"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Liian iso tiedosto ladattavaksi."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Tee tukipyyntö Matrix-palvelimesi ylläpitoon."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Huoneen luominen epäonnistui: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Tilan luominen epäonnistui: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Yrität liittyä huoneeseen, jonka tunniste ei ole kelvollinen"
|
||||
@@ -199,16 +199,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (koostettu kirjastolla %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix-viestintäyhteyskäytäntöasiakas"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Tukee matrix:-verkko-osoitemallia"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -639,34 +644,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Omat emojit"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Tämä viesti on poistettu]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Tämä viesti on poistettu: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[MUOKATTU]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[MUOKATTU: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 käyttäjä: "
|
||||
msgstr[1] "%1 käyttäjää: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -724,354 +729,354 @@ msgstr "Vähäinen etusijaisuus"
|
||||
msgid "Spaces"
|
||||
msgstr "Välilyönnit"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Tänään"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Eilen"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Toissapäivänä"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "tiedosto"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "kutsui henkilön %1 uudelleen huoneeseen"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "liittyi huoneeseen (toisto)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "kutsui huoneeseen henkilön %1"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "liittyi huoneeseen"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "tyhjensi näyttönimensä"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "vaihtoi näyttönimekseen %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " ja "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "tyhjensi avatarinsa"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "asetti avatarin"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "päivitti avatarinsa"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "ei muuttanut mitään"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "peruutti henkilön %1 kutsun"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "hylkäsi kutsun"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "perui käyttäjän %1 eston"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "perui itsensä eston"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "poisti henkilön %1 huoneesta %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "poistui huoneesta"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "torjui käyttäjän %1 huoneesta"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "esti henkilön %1 pääsemästä huoneeseen %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "esti itsensä pääsemästä huoneeseen"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "pyysi kutsua"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "pyysi kutsua, koska: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "teki jotakin tuntematonta"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "tyhjensi huoneen pääaliaksen"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "asetti huoneen pääaliakseksi %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "tyhjensi huoneen nimen"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "asetti huoneen nimeksi %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "tyhjensi aiheen"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "asetti aiheeksi %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "vaihtoi huoneen avatarin"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "aktivoi alusta loppuun -salauksen"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "päivitti huoneen versioon %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "loi huoneen, versio %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "muutti tämän huoneen käyttöoikeustasoja"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "muutti tämän huoneen palvelimen ACL-luetteloita"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "lisäsi %1-sovelman"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "poisti %1-sovelman"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "muutti %1-sovelman asetuksia"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "päivitti %1-tilansa"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "päivitti käyttäjän %2 %1-tilan"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Tuntematon tapahtuma"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "lähetti viestin"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "lähetti tarran"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "kutsui jonkun huoneeseen uudestaan"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "kutsui jonkun huoneeseen"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "vaihtoi näyttönimeään"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "perui käyttäjän kutsun"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "perui käyttäjän eston"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "poisti henkilön huoneesta"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "esti käyttäjän huoneesta"
|
||||
|
||||
# Nämä set…-alkuiset oletan imperfekteiksi imperatiivien sijaan, koska ympärillä on muita (banned, upgraded jne.)
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "asetti huoneen pääaliaksen"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "asetti huoneen nimen"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "asetti aiheen"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "päivitti huoneen version"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "loi huoneen"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "lisäsi sovelman"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "poisti sovelman"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "määritti sovelman"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "päivitti tilan"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "aloitti kyselyn"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Ilmoituksen lähettäminen onnistui."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1092,7 +1097,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Avaa NeoChat tähän huoneeseen"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1130,7 +1135,7 @@ msgid "Attachment:"
|
||||
msgstr "Liite:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1186,7 +1191,7 @@ msgstr "Lähetä liitteen selite…"
|
||||
msgid "Send a message…"
|
||||
msgstr "Lähetä viesti…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1299,13 +1304,13 @@ msgstr "Ei tarroja"
|
||||
msgid "No emojis"
|
||||
msgstr "Ei emojeja"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emojit"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1316,17 +1321,17 @@ msgstr "Tarrat"
|
||||
msgid "View Location"
|
||||
msgstr "Näytä sijainti"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Sulje"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Tämä viesti lähetettiin todennetulta laitteelta"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reagoi"
|
||||
@@ -1347,13 +1352,13 @@ msgstr "Hylkää"
|
||||
msgid "Accept"
|
||||
msgstr "Hyväksy"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Sijainnit"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Tässä huoneessa ei ole jaettuja sijainteja."
|
||||
@@ -1380,7 +1385,7 @@ msgid "Url:"
|
||||
msgstr "Verkko-osoite:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1407,13 +1412,19 @@ msgstr "Anna Matrix-tunnisteesi"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix-tunniste:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix-tunniste:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Ladataan…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Jo kirjautuneena"
|
||||
@@ -1468,6 +1479,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Kirjaudu"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Salasana"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1580,32 +1598,32 @@ msgstr "Äänenvoimakkuus"
|
||||
msgid "Maximize"
|
||||
msgstr "Suurenna"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Valitse paikallinen tiedosto"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Leikepöydän kuva"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Hyppää ensimmäiseen lukemattomaan viestiin"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Hyppää viimeisimpään viestiin"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Jaa kohteita vetämällä ne tähän"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1936,70 +1954,70 @@ msgstr "Ylläpitäjä (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Vahvista"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Tilin tiedot"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Peru tämän käyttäjän sivuuttaminen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Sivuuta tämä käyttäjä"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Potkaise tätä käyttäjää"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Kutsu tämä käyttäjä"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Estä tämä käyttäjä"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Torju käyttäjä"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Poista esto tältä käyttäjältä"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Aseta käyttäjän voimataso"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Poista tämän käyttäjän viimeisimmät viestit"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Poista viestejä"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Avaa yksityiskeskustelu"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Kopioi linkki"
|
||||
@@ -2651,12 +2669,25 @@ msgstr "Aloita liittymällä joihinkin huoneisiin"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Etsi huonehakemistosta"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Suurenna esikatselua"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Vaimennettu huone"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Huoneen asetukset"
|
||||
@@ -2717,7 +2748,7 @@ msgstr "Vaihda käyttäjää"
|
||||
msgid "Open Settings"
|
||||
msgstr "Avaa asetukset"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChatillä ei ole yhteyttä. Tarkista verkkoyhteytesi."
|
||||
@@ -2795,55 +2826,62 @@ msgstr "Valinnat"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Avaa kehitystyökalut"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Etsi tästä huoneesta"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Etsi"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Poista huone suosikeista"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Merkitse huone suosikiksi"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Näytä sijainnit tälle huoneelle"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Jäsenet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Etsi huoneesta käyttäjää"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Kutsu käyttäjä"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Kutsu käyttäjä huoneeseen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 jäsen"
|
||||
msgstr[1] "%1 jäsentä"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Ei jäsenmäärää"
|
||||
@@ -3335,12 +3373,6 @@ msgstr "Nimi:"
|
||||
msgid "Label:"
|
||||
msgstr "Nimiö:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Salasana"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3640,8 +3672,9 @@ msgid "General settings"
|
||||
msgstr "Yleisasetukset"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Sulje ilmoitusalueelle"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
323
po/fr/neochat.po
323
po/fr/neochat.po
@@ -4,7 +4,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-06-25 15:44+0200\n"
|
||||
"Last-Translator: Xavier BESNARD <xavier.besnard@neuf.fr>\n"
|
||||
"Language-Team: fr\n"
|
||||
@@ -15,80 +15,80 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Lokalize 23.04.2\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Échec de la connexion : jeton d'accès non valable ou révoqué"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "La connexion a échoué : %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Erreur du réseau : %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Il a été impossible de trouver le jeton d'accès."
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Peut-être a-t-il été supprimé ?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "L'accès au trousseau de clés a été refusé."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Veuillez autoriser NeoChat à lire le jeton d'accès."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Aucun trousseau de clés disponible."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Veuillez installer un trousseau de clés, par exemple, KWallet ou le "
|
||||
"trousseau de clés de GNOME sous Linux."
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Lecture impossible du jeton d'accès"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Fichier trop volumineux pour être téléchargé"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
"Veuillez contact votre administrateur du serveur « Matrix » pour de l'aide."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Impossible de créer le salon : %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Impossible de créer un espace : %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "L'identifiant du salon que vous essayez de rejoindre est non valable."
|
||||
@@ -201,16 +201,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (compilé en regard de %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Un client pour le protocole de communications Matrix »"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Prend en charge le thème d'URL « matrix : »"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -646,34 +651,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Émoticônes personnelles"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Ce message a été supprimé]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Ce message a été supprimé : %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[RÉDIGÉ]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[RÉDIGÉ : %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] " utilisateur %1 :"
|
||||
msgstr[1] " %1 utilisateurs :"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -731,353 +736,353 @@ msgstr "Basse priorité"
|
||||
msgid "Spaces"
|
||||
msgstr "Espaces"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Aujourd'hui"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Hier"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Le jour avant hier"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "un fichier"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "Ré-invité %1 dans le salon"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr " : %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "a rejoint le salon (répété)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 invité dans le salon"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "a rejoint le salon"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr " : %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "a effacé leur nom d'affichage"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "a modifié leur nom d'affichage en %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr "et"
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "a effacé leur avatar"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "Définir un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "a mis à jour leur avatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "ne rien modifier"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "a retiré l'invitation de %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "Invitation rejetée"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "ré-intégré %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "Auto-banni"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "a déclaré %1 en dehors du salon : %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "quitté le salon"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "a banni %1 du salon"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "a banni %1 du salon : %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "auto-banni du salon"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "Nécessite une invitation."
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "A demandé une invitation avec le motif : %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "a fait quelque chose d'inconnu"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "a effacé l'alias principal du salon"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "a défini l'alias principal du salon à : %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "nom du salon effacé"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "Définir le nom du salon à : %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "effacé le sujet"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "définir le sujet à : %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "L'avatar du salon changé"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "a activé le chiffrement de bout en bout"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "a mis à jour le salon vers la version %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "a créé le salon en version %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "Modification des privilèges d'accès pour ce salon."
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "Modification des listes de contrôle d'accès au serveur pour ce salon."
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "composant graphique %1 ajouté"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "composant graphique %1 supprimé"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "composant graphique %1 configuré"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "État mis à jour de %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "État mis à jour de %1 vers %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Évènement inconnu"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "Envoyer un message"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "a envoyé un autocollant"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "a ré-invité une personne dans le salon"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "a invité une personne dans le salon"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "a modifié leur nom d'affichage"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "a retiré l'invitation d'un utilisateur"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ré-intégré un utilisateur"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "a expulsé un utilisateur du salon"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "a banni un utilisateur du salon"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "a défini l'alias principal du salon"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "définir le nom du salon"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "définir le sujet"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "a mis à jour la version du salon"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "a créé le salon"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "composant graphique ajouté"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "composant graphique supprimé"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "composant graphique configuré"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "État mis à jour"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "a démarré un vote"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Rapport envoyé avec succès."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1098,7 +1103,7 @@ msgstr "%1 : %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Ouvrir NeoChat dans cette salon"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1136,7 +1141,7 @@ msgid "Attachment:"
|
||||
msgstr "Pièces jointes :"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1192,7 +1197,7 @@ msgstr "Définir une légende de pièce jointe"
|
||||
msgid "Send a message…"
|
||||
msgstr "Envoyer un message..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1305,13 +1310,13 @@ msgstr "Aucune étiquette auto-collante"
|
||||
msgid "No emojis"
|
||||
msgstr "Aucune émoticône"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Émoticônes"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1322,17 +1327,17 @@ msgstr "Étiquettes auto-collantes"
|
||||
msgid "View Location"
|
||||
msgstr "Afficher un emplacement"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Ce message a été envoyé à partir d'un périphérique vérifié."
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Réaction"
|
||||
@@ -1353,13 +1358,13 @@ msgstr "Rejeter"
|
||||
msgid "Accept"
|
||||
msgstr "Accepter"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Emplacements"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Il n'y a aucun emplacement partagé dans ce salon."
|
||||
@@ -1386,7 +1391,7 @@ msgid "Url:"
|
||||
msgstr "URL :"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1413,13 +1418,19 @@ msgstr "Saisissez ici votre identifiant Matrix."
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Identifiant Matrix :"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "Identifiant Matrix :"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Chargement..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Déjà connecté"
|
||||
@@ -1474,6 +1485,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Connexion"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1587,32 +1605,32 @@ msgstr "Volume"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximiser"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Sélectionner un fichier local"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Image du presse-papier"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Aller au premier message non lu."
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Aller au message le plus ancien."
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Faites glisser les éléments ici pour les partager"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1960,70 +1978,70 @@ msgstr "Administrateur (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmer"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Détail du compte"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Re-considérer cet utilisateur"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignorer cet utilisateur"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Rejeter cet utilisateur"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Inviter cet utilisateur"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Bannir cet utilisateur"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Bannir un utilisateur"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Supprimer le bannissement de cet utilisateur"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Définir le niveau des privilèges de l'utilisateur"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Supprimer les messages récents de cet utilisateur"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Supprimer des messages"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Ouvrir un salon privé"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Copier un lien"
|
||||
@@ -2675,12 +2693,25 @@ msgstr "Rejoindre certains salons pour vous lancer."
|
||||
msgid "Search in room directory"
|
||||
msgstr "Rechercher dans le dossier des salons"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Développer l'aperçu"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Salon en pause"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configurer un salon"
|
||||
@@ -2741,7 +2772,7 @@ msgstr "Changer d'utilisateur"
|
||||
msgid "Open Settings"
|
||||
msgstr "Ouvrir la configuration"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat est non connecté. Veuillez vérifier votre connexion au réseau."
|
||||
@@ -2819,55 +2850,62 @@ msgstr "Options"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Ouvrir les outils de développement"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Rechercher dans ce salon"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Rechercher"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Supprimer le salon des signets"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Ajouter le salon comme signet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Afficher des emplacements dans ce salon"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Rechercher un utilisateur dans un salon"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Inviter un utilisateur"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Inviter des utilisateurs dans un salon"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "Membre %1"
|
||||
msgstr[1] "%1 membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Aucun numéro de membre"
|
||||
@@ -3377,12 +3415,6 @@ msgstr "Nom :"
|
||||
msgid "Label:"
|
||||
msgstr "Libellé :"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3685,8 +3717,9 @@ msgid "General settings"
|
||||
msgstr "Configuration générale"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Fermer dans la boîte à miniatures"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
323
po/hu/neochat.po
323
po/hu/neochat.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-05-09 22:36+0200\n"
|
||||
"Last-Translator: K. Áron <aronkvh@gmail.com>\n"
|
||||
"Language-Team: Hungarian <kde-l10n-hu@kde.org>\n"
|
||||
@@ -18,84 +18,84 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.0.1\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
"Sikertelen bejelentkezés: A hozzáférést biztosító token érvénytelen vagy "
|
||||
"visszavonták"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Sikertelen bejelentkezés: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Hálózati hiba: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "A hozzáférési token nem található"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Lehet, hogy kitörölték?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "A kulcstartóhoz való hozzáférés megtagadva."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Kérjük, adj hozzáférést a NeoChat-nek a tokenhez"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Nincs elérhető kulcstartó."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Kérjük, telepíts egy kulcstartót Linuxon: pl. a KWallet-et vagy a GNOME "
|
||||
"Keyring-et"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "A hozzáférési token olvasása nem sikerült"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "A fájl túl nagy a letöltéshez."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
"Segítségért vedd fel a kapcsolatot a Matrix szervered rendszergazdájával."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "A szoba létrehozása nem sikerült: „%1”"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "A szoba létrehozása nem sikerült: „%1”"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "A szobaazonosító, amelyhez csatlakozni szeretne, érvénytelen"
|
||||
@@ -208,16 +208,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (fordítva ezzel: %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Kliens a matrix kommunikációs protokollhoz"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Támogatja a 'matrix:' url sémát"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -651,34 +656,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Emojik"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Törölt üzenet]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Törölt üzenet: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[KITAKARVA]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[KITAKARVA: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 felhasználó: "
|
||||
msgstr[1] "%1 felhasználó: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -736,353 +741,353 @@ msgstr "Alacsony prioritás"
|
||||
msgid "Spaces"
|
||||
msgstr "Terek"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Ma"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Tegnap"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Tegnapelőtt"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "egy fájl"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "újra meghívta őt a szobába: %1"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "csatlakozott a szobához (ismét)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "meghívta őt a szobába: %1"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "csatlakozott a szobához"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "törölte a megjelenített nevét"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "megváltoztatta a megjelenített nevét erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " és "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "törölte a profilképét"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "beállított egy profilképet"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "frissítette a profilképét"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "nem változtatott meg semmit"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "visszavonta %1 meghívását"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "elutasította a meghívást"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "feloldotta %1 tiltását"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "feloldotta a saját tiltását"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "kirakta a szobából őt: %1. Ok: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "elhagyta a szobát"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "kitiltotta a szobából őt: %1"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "kitiltotta a szobából őt: %1. Ok: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "kitiltotta magát a szobából"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "elutasított egy meghívást"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "meghívást kért, ezzel az indokkal: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "valami ismeretlent csinált"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "törölte a szoba fő álnevét"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "beállította a szoba fő álnevét erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "törölte a szoba nevét"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "beállította a szoba nevét erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "törölte a témát"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "beállította a témát erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "megváltoztatta a szoba profilképét"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "bekapcsolta a végpontok közötti titkosítást"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "frissítette a szoba verzióját erre: %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "létrehozta a szobát, a verzió: %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "megváltoztatta az engedélyeket"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "megváltoztatta a szoba szerverhozzáférési listáit"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "hozzáadta a(z) %1 widgetet"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "etávolította a(z) %1 widgetet"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "beállította a(z) %1 widgetet"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "frissítette a(z) %1 állapotát"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "frissítette a(z) %1 állapotát erre: %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Ismeretlen esemény"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "üzenetet küldött"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "matricát küldött"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "újra meghívott valakit a szobába"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "meghívott valakit a szobába"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "megváltoztatta a megjelenített nevét"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "visszavonta egy felhasználó meghívását"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "feloldotta egy felhasználó tiltását"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "kitett valakit a szobából"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "kitiltotta egy felhasználót a szobából"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "beállította a szoba fő álnevét"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "beállította a szoba nevét"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "beállította a témát"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "frissítette a szoba verzióját"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "létrehozta a szobát"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "hozzáadott egy widgetet"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "eltávolított egy widgetet"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "beállított egy widgetet"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "frissítette az állapotot"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "szavazást indított"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "A jelentést sikeresen elküldte."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1103,7 +1108,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "NeoChat megnyitása ebben a szobában"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1141,7 +1146,7 @@ msgid "Attachment:"
|
||||
msgstr "Csatolmány:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1197,7 +1202,7 @@ msgstr "Csatolmányleírás küldése"
|
||||
msgid "Send a message…"
|
||||
msgstr "Üzenet küldése..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1311,13 +1316,13 @@ msgstr "Matricák"
|
||||
msgid "No emojis"
|
||||
msgstr "Nincsenek emojik"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emojik"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1329,17 +1334,17 @@ msgstr "Matricák"
|
||||
msgid "View Location"
|
||||
msgstr "Meghívás Hely"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Bezárás"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Az üzenetet egy ellenőrzött eszközről küldték"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reagálás"
|
||||
@@ -1360,14 +1365,14 @@ msgstr "Elutasítás"
|
||||
msgid "Accept"
|
||||
msgstr "Elfogadás"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Értesítések"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1395,7 +1400,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1422,13 +1427,19 @@ msgstr "Írja be Matrix azonosítóját"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix azonosító:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix azonosító:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Betöltés..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Már bejelentkezett"
|
||||
@@ -1483,6 +1494,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Bejelentkezés"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Jelszó"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1596,32 +1614,32 @@ msgstr "Hangerő"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximalizálás"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Helyi fájl kiválasztása"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Vágólap kép"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Ugrás az első olvasatlan üzenetre"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Ugrás a legújabb üzenetre"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Húzz ide elemeket a megosztásukhoz"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1967,70 +1985,70 @@ msgstr "Adminisztrátor (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Megerősítés"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Fiók adatai"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Figyelmen kívül hagyás feloldása"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Figyelmen kívül hagyás"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Kirúgás"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "A felhasználó meghívása"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Tiltás"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "A felhasználó letiltása"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Tiltás visszavonása"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "A elhasználó engedélyszintjének beállítása"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "A felhasználó által küldött új üzenetek törlése"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Üzenetek eltávoltása"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Egy privát csevegés megnyitása"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Link másolása"
|
||||
@@ -2681,12 +2699,25 @@ msgstr "Csatlakozz néhány szobához kezdésként"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Keresés a szobakönyvtárban"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Az előnézet nagyítása"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Némított szoba"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Szoba beállítása"
|
||||
@@ -2749,7 +2780,7 @@ msgstr "Felhasználóváltás"
|
||||
msgid "Open Settings"
|
||||
msgstr "Beállítások megnyitása"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr ""
|
||||
@@ -2828,56 +2859,63 @@ msgstr "Beállítások"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Fejlesztői eszközök megnyitása"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Keresés a szobában"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Keresés"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Eltávolítás a kedvencek közül"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Kedvenc"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Keresés a szobában"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Tagok"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Keresés a szobában lévő felhasználók között"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Meghívás"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Meghívás a szobába"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 tag"
|
||||
msgstr[1] "%1 tag"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Nincs tagszám"
|
||||
@@ -3380,12 +3418,6 @@ msgstr "Név:"
|
||||
msgid "Label:"
|
||||
msgstr "Címke:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Jelszó"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3700,8 +3732,9 @@ msgid "General settings"
|
||||
msgstr "Általános beállítások"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Bezárás a tálcára"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
328
po/ia/neochat.po
328
po/ia/neochat.po
@@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-07-27 11:39+0200\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-27 12:42+0200\n"
|
||||
"Last-Translator: giovanni <g.sora@tiscali.it>\n"
|
||||
"Language-Team: Interlingua <kde-i18n-doc@kde.org>\n"
|
||||
"Language: ia\n"
|
||||
@@ -17,78 +17,78 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Accesso falleva: indicio (token) de accesso invalide o revocate"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Accesso falleva: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Error de rete: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Indicio de accesso non esseva trovate"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Forsan il esseva delite?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Accesso a portaclave (keychain) esseva negate"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Pro favor tu permitte que NeoCht pote leger le indicio de accesso"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Nulle portaclaves disponibile"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Pro favor tu installa un portaclave, p.ex. KWallet oGNOMe keyring sur Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Incapace a leger indicio"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "File troppo grande a discargar."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Continge tu administrator de servitor de matrix per supporto."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Creation de sala falleva: \"%1\""
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Creation de spatio falleva: \"%1\""
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Iste id de sala que tu es essayante a unir non es valid"
|
||||
@@ -202,16 +202,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (construite contra %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Cliente per le protocollo de cmmmunication de matrice"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Supporta matrix: url schema"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -642,34 +647,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Proprie Emojis"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Iste message ha essite delite]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Iste message esseva delite: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[REAGITE]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REAGITE: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 Usator: "
|
||||
msgstr[1] "%1 Usatores:"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -727,353 +732,353 @@ msgstr "Basse prioritate"
|
||||
msgid "Spaces"
|
||||
msgstr "Spatios"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Hodie"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Heri"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Le die ante heri"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "un file"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "reinvitate %1 al sala"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "unite al sala (repetite)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 invitate al sala"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "unite al sala"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "clarate lor nomine de monstrar"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "cambiate lor nomine de monstrar a %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr "e"
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "clarate lor avatar"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "fixa un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "actualisate lor avatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "nihil modificate"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "retirate invitation de %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "refusate le invitation"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "cessate de excluder (ban) %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "cessa auto exclusion (self-banned)"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "ha ponite %1 foras de sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "lassa le sala"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "excludite (banned) %1 ex le sala"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "excludite (banned) %1 ex le sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "auto excludite (self-banned) ab le sala"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "requerite un invitation"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "requerite un invitation con motivation: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "facite alcun cosas incognite"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "clarate le alias principal de sala"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "fixa le alias principal de sala a : %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "clarate le nomine de sala"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "fixa le nomine de sala a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "clarate le topico"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "fix le topico a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "cambiate le avatar de sala"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "activate cryptation End-to-End"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "actualisate le sala a version %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "create le sala, version %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "Cambiate le nvello de potentia per iste salc"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "cambiate le listas de controlo de accesso de servitor per iste sala"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "addite %1 widget"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "removite %1 widget"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "configurate %1 widget"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "actualisate stato %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "actualisate stato %1 per %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Evento incognite"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "Invia un message"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "invia un etiquetta gummate"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "reinvitate alcun al sala"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr " invitate alcun al sala"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "cambiate lor nomine de monstrar "
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "retirate un invitation de usator"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "cessate de excluder (ban) un usator"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "ha ponite un usator foras del sala"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "excludite (banned) un usator ex le sala"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "fixa le alias principal de sala "
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "fixa le nomine de sala"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "fix le topico "
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "actualisate le version de sala "
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "create le sala"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "addite un widget"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "removite un widget"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "configurate un widget"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "actualisate le stato"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "initia un inquesta"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Reporto inviate con successo."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1094,7 +1099,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Aperi NeoChat in iste sala"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1132,7 +1137,7 @@ msgid "Attachment:"
|
||||
msgstr "Attachamento:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1186,7 +1191,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Invia un message…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1299,13 +1304,13 @@ msgstr "Nulle Etiquettas Gummate (Stickers)"
|
||||
msgid "No emojis"
|
||||
msgstr "Nulle Emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1316,17 +1321,17 @@ msgstr "Etiquettas Gummate (Stickers)"
|
||||
msgid "View Location"
|
||||
msgstr "Vide location"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Claude"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reage"
|
||||
@@ -1347,13 +1352,13 @@ msgstr "Rejecta"
|
||||
msgid "Accept"
|
||||
msgstr "Accepta"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Locationes"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Il non ha locationes compartite in iste sala."
|
||||
@@ -1380,7 +1385,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1407,13 +1412,18 @@ msgstr "Inserta tu ID de Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Cargante..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Ja accedite"
|
||||
@@ -1468,6 +1478,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Accesso de identification"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Contrasigno"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1581,32 +1598,32 @@ msgstr "Volumine"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximiza"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Selige file local"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Image de Area de transferentia"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Salta al prime message non legite"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Salta al ultime message"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Trahe elementos hic per compartir los"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1919,70 +1936,70 @@ msgstr "Admin (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Confirma"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Detalio de conto"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Cessa a ignorar iste usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignora iste usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Calca iste usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Invita iste usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Prohibi iste usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Prohibi usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Leva prohibition (unban) ab iste usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Remove messages recente per iste usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Remove messages"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Aperi in conversation private"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Copia Ligamine"
|
||||
@@ -2634,12 +2651,25 @@ msgstr "Uni alcun salas per initiar"
|
||||
msgid "Search in room directory"
|
||||
msgstr "cerca in directorio de sala"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Expande Vista Preliminar"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Sala Silentiate"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configura sala"
|
||||
@@ -2700,7 +2730,7 @@ msgstr "Commuta Usator"
|
||||
msgid "Open Settings"
|
||||
msgstr "Aperi Preferentias"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat es foras de linea. Per vafor tu verifica tu connexion de rete."
|
||||
@@ -2776,55 +2806,62 @@ msgstr "Optiones"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Cerca in iste sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Remove sala ex favoritos"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Face sala favorite"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Monstra locationes per iste sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Cerca usator in sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Invita un usator"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Invita usator a sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 Member"
|
||||
msgstr[1] "%1 Membros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Necun computo de membro"
|
||||
@@ -3312,12 +3349,6 @@ msgstr "Nomine:"
|
||||
msgid "Label:"
|
||||
msgstr "Etiquetta:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Contrasigno"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3494,12 +3525,12 @@ msgstr "Dispositivo de clausura de session"
|
||||
#: src/qml/Settings/DevicesPage.qml:28
|
||||
#, kde-format
|
||||
msgid "This Device"
|
||||
msgstr "Iste Dispositivo"
|
||||
msgstr "Iste Dispositivos"
|
||||
|
||||
#: src/qml/Settings/DevicesPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Verified Devices"
|
||||
msgstr "Dispositivos Verificate"
|
||||
msgstr "Dispositivos verificate"
|
||||
|
||||
#: src/qml/Settings/DevicesPage.qml:38
|
||||
#, kde-format
|
||||
@@ -3613,8 +3644,9 @@ msgid "General settings"
|
||||
msgstr "Preferentias General"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Vicin a tabuliero de systema"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
323
po/id/neochat.po
323
po/id/neochat.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-06-16 19:31+0700\n"
|
||||
"Last-Translator: Linerly <linerly@protonmail.com>\n"
|
||||
"Language-Team: Indonesian <kde-i18n-doc@kde.org>\n"
|
||||
@@ -18,78 +18,78 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.3.1\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Pemasukan Gagal: Token Pengaksesan tidak absah atau dicabut"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Pemasukan Gagal: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Kesalahan Jaringan: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Token pengaksesan tidak ditemukan"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Mungkin terhapus?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Akses ke rantai kunci ditolak."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Mohon izinkan NeoChat untuk membaca token pengaksesan"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Tidak ada keychain yang tersedia."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Mohon instal sebuah rantai kunci, seperti KWallet atau GNOME Keyring di Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Tidak dapat membaca token pengaksesan"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Berkas terlalu besar untuk diunduh."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Hubungi administrator server Matrix Anda untuk dukungan."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Pembuatan ruangan gagal: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Pembuatan space gagal: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "ID ruangan yang Anda coba bergabung tidak absah"
|
||||
@@ -201,16 +201,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (dibangun pada %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Klien untuk protokol komunikasi Matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Mendukung skema URL matrix:"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -644,34 +649,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Emoji Sendiri"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Pesan ini telah dihapus]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Pesan ini telah dihapus: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[DIHAPUS]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[DIHAPUS: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "%1 pengguna: "
|
||||
msgstr[1] "%1 pengguna"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -729,353 +734,353 @@ msgstr "Prioritas rendah"
|
||||
msgid "Spaces"
|
||||
msgstr "Space"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Hari ini"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Kemarin"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Kemarin lusa"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "sebuah berkas"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "mengundang ulang %1 ke ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "bergabung ke ruangan ini (lagi)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "mengundang %1 ke ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "bergabung ke ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "menghapus nama tampilannya"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "mengubah nama tampilan ke %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " dan "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "menghapus avatarnya"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "menetapkan sebuah avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "memperbarui avatarnya"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "tidak mengubah apa pun"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "membatalkan undangannya %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "menolak undangannya"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "menghilangkan cekalannya %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "menghilangkan cekalannya sendiri"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "mengeluarkan %1 dari ruangan: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "keluar dari ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "mencekal %1 dari ruangan"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "mencekal %1 dari ruangan ini: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "mencekal dirinya dari ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "meminta sebuah undangan"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "meminta sebuah undangan dengan alasan: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "membuat sebuah hal yang tidak diketahui"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "menghapus alias utama ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "menetapkan alias utama ruangan ini ke: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "menghapus nama ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "menetapkan nama ruangan ini ke: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "menghapus topiknya"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "menetapkan topiknya ke: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "mengubah avatar ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "diaktifkan Enkripsi Ujung ke Ujung"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "meningkatkan ruangan ini ke versi %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "membuat ruangan ini, versi %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "mengubah tingkat daya untuk ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "mengubah daftar kontrol pengaksesan server untuk ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "menambahkan widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "menghapus widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "mengatur widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "memperbarui status %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "memperbarui status %1 untuk %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Peristiwa tidak diketahui"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "mengirim pesan"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "mengirim stiker"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "mengundang ulang seseorang ke ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "mengundang seseorang ke ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "mengubah nama tampilannya"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "membatalkan undangan pengguna"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "menghilangkan cekalan pengguna"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "mengeluarkan pengguna dari ruangan"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "mencekal pengguna dari ruangan"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "menetapkan alias utama ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "menetapkan nama ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "menetapkan topiknya"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "meningkatkan versi ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "membuat ruangan ini"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "menambahkan widget"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "menghapus widget"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "mengatur widget"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "memperbarui keadaan"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "memulai pemungutan suara"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Laporan berhasil dikirim."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1096,7 +1101,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Buka NeoChat di ruangan ini"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1134,7 +1139,7 @@ msgid "Attachment:"
|
||||
msgstr "Lampiran:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1190,7 +1195,7 @@ msgstr "Atur takarir lampiran..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Kirim pesan…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1303,13 +1308,13 @@ msgstr "Tidak ada stiker"
|
||||
msgid "No emojis"
|
||||
msgstr "Tidak ada emoji"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emoji"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1321,17 +1326,17 @@ msgstr "Stiker"
|
||||
msgid "View Location"
|
||||
msgstr "Kirim Lokasi"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Tutup"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Pesan ini terkirim dari peranti yang telah diverifikasi"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reaksi"
|
||||
@@ -1352,14 +1357,14 @@ msgstr "Tolak"
|
||||
msgid "Accept"
|
||||
msgstr "Terima"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Notifikasi"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1387,7 +1392,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1414,13 +1419,19 @@ msgstr "Masukkan ID Matrix Anda"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "ID Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Memuat..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Sudah masuk"
|
||||
@@ -1475,6 +1486,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Masuk"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Kata sandi"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1587,32 +1605,32 @@ msgstr "Volume"
|
||||
msgid "Maximize"
|
||||
msgstr "Maksimalkan"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Pilih berkas lokal"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Gambar papan klip"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Pergi ke pesan pertama yang belum dibaca"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Pergi ke pesan terkini"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Seret item ke sini untuk membagikannya"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1946,70 +1964,70 @@ msgstr "Admin (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Konfirmasi"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Detail akun"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Hilangkan pengabaian pengguna ini"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Abaikan pengguna ini"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Keluarkan pengguna ini"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Undang pengguna ini"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Cekal pengguna ini"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Cekal Pengguna"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Batalkan pencekalan pengguna ini"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Tetapkan tingkat daya pengguna"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Hapus pesan terkini dari pengguna ini"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Hapus Pesan"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Buka sebuah obrolan privat"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Salin tautan"
|
||||
@@ -2660,12 +2678,25 @@ msgstr "Bergabung ke beberapa ruangan untuk memulai"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Cari di direktori ruangan"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Luaskan pratinjau"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Ruangan dibusukan"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Konfigurasi ruangan"
|
||||
@@ -2726,7 +2757,7 @@ msgstr "Ganti Pengguna"
|
||||
msgid "Open Settings"
|
||||
msgstr "Buka Pengaturan"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat sedang luring. Mohon periksa koneksi jaringan Anda."
|
||||
@@ -2804,56 +2835,63 @@ msgstr "Opsi"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Buka alat pengembang"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Cari di ruangan ini"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Cari"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Hilangkan ruangan dari favorit"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Buat ruangan sebagai favorit"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Cari di ruangan ini"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Anggota"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Cari pengguna di ruangan"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Undang sebuah Pengguna"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Undang pengguna ke ruangan"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 anggota"
|
||||
msgstr[1] "%1 Anggota"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Tidak ada hitungan anggota"
|
||||
@@ -3357,12 +3395,6 @@ msgstr "Nama:"
|
||||
msgid "Label:"
|
||||
msgstr "Label:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Kata sandi"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3662,8 +3694,9 @@ msgid "General settings"
|
||||
msgstr "Pengaturan umum"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Tutup ke baki sistem"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
324
po/ie/neochat.po
324
po/ie/neochat.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2022-10-28 19:18+0700\n"
|
||||
"Last-Translator: OIS <mistresssilvara@hotmail.com>\n"
|
||||
"Language-Team: kde-i18n-doc@kde.org\n"
|
||||
@@ -18,77 +18,77 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 1.8.12\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, fuzzy, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Ne successat inregistrar: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Errore de rete: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, fuzzy, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Li plugin necessi por accesse al files MP3 ne esset trovat"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Forsan it esset removet?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, fuzzy, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Accesse a %1 es refusat."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Null porta-clave disponibil."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, fuzzy, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Ne posset acessar «%s»"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, fuzzy, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Ne successat crear un contextu OpenGL"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, fuzzy, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Ne successat crear un contextu OpenGL"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Li ID de chambre a quel vu vole adherer vos es ínvalid"
|
||||
@@ -208,16 +208,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Un cliente del protocol de communication Matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, fuzzy, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Ínsupportat schema de URL"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -691,34 +696,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Converter smileys a emojis"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Ti missage esset removet]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Ti missage esset removet: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[CENSURAT]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[CENSURAT: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -778,360 +783,360 @@ msgstr "Bass prioritá"
|
||||
msgid "Spaces"
|
||||
msgstr "Spacies"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Hodie"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Yer"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Anteyer"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "un file"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, fuzzy, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "Forlassar li chambre"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr "'%1'"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, fuzzy, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "Adheret"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "invitat %1 al chambre"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "adheret al chamber"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "Visibil nómine"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "Li nómine de computator ha changeat se"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " e "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "Avatar:"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "assignat un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "Actualisat"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "revocat li invitation de %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "refusat li invitation"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "debannit %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "self-debannit"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "forlassat li chambre"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, fuzzy, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "Obtenente %1 de %2…"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, fuzzy, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "Obtenente %1 de %2…"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "demandat un invitation"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "requested an invite"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "demandat un invitation"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, fuzzy, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "ínconosset"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, fuzzy, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "[<chambre-pseudonim-o-ID>]"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, fuzzy, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "Nómine del chambre"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, fuzzy, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "Nómine del chambre"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "vacuat li tema"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, fuzzy, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "Sin tema"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, fuzzy, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "Avatar:"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, fuzzy, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "Fine de vive"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, fuzzy, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "Nov version: %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, fuzzy, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "Version %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "Widget 1"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "Widget 1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "Widget 1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "actualisat %1 statu"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, fuzzy, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "actualisat %1 statu"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Ínconosset eveniment"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, fuzzy, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "Ne successat inviar un missage D-Bus"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, fuzzy, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "Forlassar li chambre"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "invitat %1 al chambre"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, fuzzy, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "Li nómine de computator ha changeat se"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "revocat li invitation de %1"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "debannit %1"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invites the user to this room"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "Invitar li usator al ti chambre"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, fuzzy, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "Obtenente %1 de %2…"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, fuzzy, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "[<chambre-pseudonim-o-ID>]"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, fuzzy, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "Nómine del chambre"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, fuzzy, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "Sin tema"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "Nov version: %1"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "forlassat li chambre"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, fuzzy, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "Widget 1"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, fuzzy, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "Widget 1"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, fuzzy, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "Widget 1"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "actualisat %1 statu"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Raport sta inviat successosimen."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1152,7 +1157,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Aperter NeoChat in ti chambre"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1190,7 +1195,7 @@ msgid "Attachment:"
|
||||
msgstr "Atachament:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1246,7 +1251,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Ne successat inviar un missage D-Bus"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1368,13 +1373,13 @@ msgstr "Adjunter un parol"
|
||||
msgid "No emojis"
|
||||
msgstr "Converter smileys a emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, fuzzy, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Converter smileys a emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1386,17 +1391,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Inviar un invitation"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Cluder"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reacter"
|
||||
@@ -1417,14 +1422,14 @@ msgstr "Rejecter"
|
||||
msgid "Accept"
|
||||
msgstr "Acceptar"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Notificationes"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1452,7 +1457,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1479,13 +1484,19 @@ msgstr "Provide vor ID de Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Cargante..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1542,6 +1553,15 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Inregistrar se"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "Contrasigne"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1655,32 +1675,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Selecter un local file"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Image in li Paperiere"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Ear al prim ínleet missage"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Ear al ultim missage"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -2001,62 +2021,62 @@ msgstr "Administrator"
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Detallies del conto"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, fuzzy, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Usator: "
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignorar ti usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, fuzzy, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Remover"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ignore this user"
|
||||
msgid "Invite this user"
|
||||
msgstr "Ignorar ti usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Bannir ti usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ban this user"
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Bannir ti usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Debannir ti usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Delete recent messages by this user"
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Remover recent missages de ti usator"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Report Message"
|
||||
@@ -2064,12 +2084,12 @@ msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Raportar li missage"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Aperte un privat conversation"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Copy"
|
||||
msgid "Copy link"
|
||||
@@ -2728,13 +2748,26 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr "DIRECTORIA"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "debannit %1"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "Assurdat"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, fuzzy, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configurar"
|
||||
@@ -2799,7 +2832,7 @@ msgstr ""
|
||||
msgid "Open Settings"
|
||||
msgstr "Parametres del chambre"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr ""
|
||||
@@ -2878,48 +2911,55 @@ msgstr "Optiones:"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, fuzzy, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Saliente Cinnamon"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, fuzzy, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Remover ex li preferat"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, fuzzy, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "chambre"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Saliente Cinnamon"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, fuzzy, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Saliente Cinnamon"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Invitar un usator"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, fuzzy, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Invitar un usator"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -2928,7 +2968,7 @@ msgid_plural "%1 members"
|
||||
msgstr[0] "%1 membre"
|
||||
msgstr[1] "%1 membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3442,14 +3482,6 @@ msgstr "Nómine:"
|
||||
msgid "Label:"
|
||||
msgstr "Etiquette:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "Contrasigne"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3765,7 +3797,7 @@ msgstr "General parametres:"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Area de notificationes"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
326
po/it/neochat.po
326
po/it/neochat.po
@@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-08 18:01+0200\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-28 09:11+0200\n"
|
||||
"Last-Translator: Vincenzo Reale <smart2128vr@gmail.com>\n"
|
||||
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
|
||||
"Language: it\n"
|
||||
@@ -17,78 +17,78 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Lokalize 23.04.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Accesso non riuscito: token di accesso non valido o revocato"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Accesso non riuscito: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Errore di rete: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Il token di accesso non è stato trovato"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Forse è stato eliminato?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "L'accesso al portachiavi è stato negato."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Consenti a Neochat di leggere il token di accesso"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Nessun portachiavi trovato."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Installa un portachiavi, ad es. KWallet o il portachiavi di GNOME su Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Impossibile leggere il token di accesso"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "File troppo grande per essere scaricato."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Contatta l'amministratore del server Matrix per assistenza."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Creazione della stanza non riuscita: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Creazione dello spazio non riuscita: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "L'ID della stanza che stai tentando di entrare non è valida"
|
||||
@@ -200,16 +200,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (compilato con %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Client per il protocollo di comunicazione matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Supporta schema URL matrix:"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "Ignora tutti gli errori SSL, ad es. certificati non firmati."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -643,34 +648,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "I propri emoji"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Questo messaggio è stato eliminato]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Questo messaggio è stato eliminato: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[REDATTO]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REDATTO: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 utente: "
|
||||
msgstr[1] "%1 utenti: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -728,353 +733,353 @@ msgstr "Bassa priorità"
|
||||
msgid "Spaces"
|
||||
msgstr "Spazi"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Oggi"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Ieri"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "L'altro ieri"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "un file"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "ha invitato nuovamente %1 alla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "è entrato nella stanza (ripetuto)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "ha invitato %1 alla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "è entrato nella stanza"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "ha cancellato il suo nome visualizzato"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "ha cambiato il suo nome visualizzato in %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " e "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "ha cancellato il suo avatar"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ha impostato un avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "ha aggiornato il suo avatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "nessuna modifica"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "ha ritirato l'invito di %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "ha rifiutato l'invito"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "ha rimosso il bando per %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "ha rimosso il bando da se stesso"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "ha espulso %1 dalla stanza: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "ha abbandonato la stanza"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "ha bandito %1 dalla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "ha bandito %1 dalla stanza: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "auto-bandito dalla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "ha richiesto un invito"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "ha richiesto un invito con motivo: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "ha fatto qualcosa di sconosciuto"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "ha cancellato l'alias principale della stanza"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ha impostato l'alias principale della stanza a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "ha cancellato il nome della stanza"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ha impostato il nome della stanza a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "ha cancellato l'argomento"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ha impostato l'argomento a: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "ha cambiato l'avatar della stanza"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "ha attivato la cifratura End-to-End"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "ha aggiornato la stanza alla versione %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "ha creato la stanza, versione %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "ha modificato i livelli di potenza per questa stanza"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "ha modificato la lista di controllo degli accessi per questa stanza"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "aggiunto %1 oggetto"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "rimosso %1 oggetto"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "configurato %1 oggetto"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "ha aggiornato lo stato di %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "ha aggiornato lo stato di %1 per %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Evento sconosciuto"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "ha inviato un messaggio"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "ha inviato un adesivo"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "ha invitato nuovamente qualcuno alla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "ha invitato qualcuno alla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ha cambiato il suo nome visualizzato"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "ha ritirato l'invito di utente"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ha rimosso il bando per un utente"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "ha espulso un utente dalla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "ha bandito un utente dalla stanza"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "ha impostato l'alias principale della stanza"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ha impostato il nome della stanza"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "ha impostato l'argomento"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "ha aggiornato la versione della stanza"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "ha creato la stanza"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "ha aggiunto un oggetto"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "ha rimosso un oggetto"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ha configurato un oggetto"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "ha aggiornato lo stato"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "ha avviato un sondaggio"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Segnalazione inviata correttamente."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1095,7 +1100,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Apri NeoChat in questa stanza"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1133,7 +1138,7 @@ msgid "Attachment:"
|
||||
msgstr "Allegato:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1189,7 +1194,7 @@ msgstr "Imposta una didascalia per l'allegato..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Invia un messaggio…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1302,13 +1307,13 @@ msgstr "Nessun adesivo"
|
||||
msgid "No emojis"
|
||||
msgstr "Nessun emoji"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emoji"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1319,17 +1324,17 @@ msgstr "Adesivi"
|
||||
msgid "View Location"
|
||||
msgstr "Visualizza posizione"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Chiudi"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Questo messaggio è stato inviato da un dispositivo verificato"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reagisci"
|
||||
@@ -1350,13 +1355,13 @@ msgstr "Rifiuta"
|
||||
msgid "Accept"
|
||||
msgstr "Accetta"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Posizioni"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Non ci sono posizioni condivise in questa stanza."
|
||||
@@ -1383,7 +1388,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1410,13 +1415,18 @@ msgstr "Digita il tuo ID Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "ID Matrix"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Caricamento…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Accesso già eseguito"
|
||||
@@ -1471,6 +1481,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Accesso"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1584,32 +1601,32 @@ msgstr "Volume"
|
||||
msgid "Maximize"
|
||||
msgstr "Massimizza"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Scegli file locale"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Immagine dagli appunti"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Passa al primo messaggio non letto"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Salta all'ultimo messaggio"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Trascina qui gli elementi per condividerli"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1959,70 +1976,70 @@ msgstr "Amministratore (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Conferma"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Dettagli dell'account"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Non ignorare questo utente"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignora questo utente"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Espelli questo utente"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Invita questo utente"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Bandisci questo utente"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Bandisci utente"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Rimuovi il bando questo utente"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Imposta il livello di potere dell'utente"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Rimuovi i messaggi recenti di questo utente"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Rimuovi i messaggi"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Apri una chat privata"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Copia collegamento"
|
||||
@@ -2673,12 +2690,25 @@ msgstr "Entra in qualche stanza per iniziare"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Cerca nella cartella delle stanze"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Espandi l'anteprima"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Stanza silenziata"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configura la stanza"
|
||||
@@ -2739,7 +2769,7 @@ msgstr "Cambia utente"
|
||||
msgid "Open Settings"
|
||||
msgstr "Apri le impostazioni"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat non è in linea. Controlla la tua connessione alla rete."
|
||||
@@ -2815,55 +2845,62 @@ msgstr "Opzioni"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Apri gli strumenti per sviluppatori"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Cerca in questa stanza"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Rimuovi la stanza dai preferiti"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Rendi preferita la stanza"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Mostra le posizioni per questa stanza"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membri"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Cerca l'utente nella stanza"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Invita un utente"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Invita utente alla stanza"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 membro"
|
||||
msgstr[1] "%1 membri"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Nessun conteggio dei membri"
|
||||
@@ -3375,12 +3412,6 @@ msgstr "Nome:"
|
||||
msgid "Label:"
|
||||
msgstr "Etichetta:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3522,7 +3553,7 @@ msgstr "Tema di colori"
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, ultima attività: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
@@ -3678,8 +3709,9 @@ msgid "General settings"
|
||||
msgstr "Impostazioni generali"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Chiudi nel vassoio di sistema"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
317
po/ja/neochat.po
317
po/ja/neochat.po
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2020-11-05 23:50-0800\n"
|
||||
"Last-Translator: Japanese KDE translation team <kde-jp@kde.org>\n"
|
||||
"Language-Team: Japanese <kde-jp@kde.org>\n"
|
||||
@@ -14,77 +14,77 @@ msgstr ""
|
||||
"X-Accelerator-Marker: &\n"
|
||||
"X-Text-Markup: kde4\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr ""
|
||||
@@ -196,16 +196,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -634,33 +639,33 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -716,353 +721,353 @@ msgstr ""
|
||||
msgid "Spaces"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1083,7 +1088,7 @@ msgstr ""
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1121,7 +1126,7 @@ msgid "Attachment:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1175,7 +1180,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1288,13 +1293,13 @@ msgstr ""
|
||||
msgid "No emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1305,17 +1310,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr ""
|
||||
@@ -1336,13 +1341,13 @@ msgstr ""
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1369,7 +1374,7 @@ msgid "Url:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1396,13 +1401,18 @@ msgstr ""
|
||||
msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1457,6 +1467,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1567,32 +1584,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1904,70 +1921,70 @@ msgstr ""
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr ""
|
||||
@@ -2614,12 +2631,24 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr ""
|
||||
@@ -2680,7 +2709,7 @@ msgstr ""
|
||||
msgid "Open Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr ""
|
||||
@@ -2756,54 +2785,60 @@ msgstr ""
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr ""
|
||||
@@ -3291,12 +3326,6 @@ msgstr ""
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3593,7 +3622,7 @@ msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
323
po/ka/neochat.po
323
po/ka/neochat.po
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-08 06:30+0200\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-02 06:48+0200\n"
|
||||
"Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>\n"
|
||||
"Language-Team: Georgian <kde-i18n-doc@kde.org>\n"
|
||||
"Language: ka\n"
|
||||
@@ -18,77 +18,77 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "შესვლის შეცდომა: წვდომის კოდი არასწორი ან გაუქმებულია"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "შესვლის შეცდომა: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "ქსელის შეცდომა: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "წვდომის კოდი ვერ ვიპოვე"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "შეიძლება წაშლილია?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "ბრელოკთან წვდომა აკრძალულია."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "მიეცით უფლება NeoChat-ს, წვდომის კოდი წაიკითხოს"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "ბრელოკი მიუწვდომელია."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr "დააყენეთ ბრელოკი, მაგალითად, ლინუქსზე KWallet ან GNOME Keyring"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "წვდომის კოდის წაკითხვის შეცდომა"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "ფაილი გადმოსაწერად ძალიან დიდია."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "მხარდაჭერისთვის დაუკავშირდით თქვენი მატრიქსის სერვერის ადმინისტრატორს."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "ოთახის შექმნის შეცდომა: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "სივრცის შექმნის შეცდომა: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "ოთახის ID, რომელშიც შესვლასაც ცდილობთ, არასწორია"
|
||||
@@ -201,16 +201,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (აგებულია %2-ით)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "კლიენტი Matrix-ის კომუნიკაციის პროტოკოლისთვის"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Matrix-ის მხარდჭერა: ბმული სქემა"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "ყველა SSL შეცდომის იგნორი. მაგ: ხელმოუწერელი სერტიფიკატები."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -641,34 +646,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "საკუთარი ემოჯიები"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[ეს შეტყობინება წაშლილია]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[ეს შეტყობინება წაშლილია: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[ჩასწორებული]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ჩასწორებულია: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 მომხმარებელი: "
|
||||
msgstr[1] "%1 მომხმარებელი: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -726,353 +731,353 @@ msgstr "დაბალი პრიორიტეტი"
|
||||
msgid "Spaces"
|
||||
msgstr "სივრცეები"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "დღეს"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "გუშინ"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "გუშინწინ"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "ფაილი"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "%1 ოთახში კიდევ მოიწვიეთ"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "შეუერთდა ოთახს (გამეორებით)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 მოწვეულია ოთახში"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "შეუერთდა ოთახს"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "გაასუფთავა მისი საჩვენებელი სახელი"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "შეცვალა საჩვენებელი სახელი %1-ზე"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " და "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "გაასუფთავა თავისი ავატარი"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ავატარის დაყენება"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "განაახლა თავისი ავატარი"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "არაფერი შეცვლილა"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "%1'-ის მოსაწვევი გაუქმდა"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "უარი მოსაწვევზე"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "ბანი მოხსნილია %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "თვით-განბლოკილი"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "გადადო %1 ოთახის გარეთ გადადო: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "გავდა ოთახიდან"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "%1 დაიბანა ამ ოთახიდან"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "დაბანა %1 ოთახიდან: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "ოთახიდან თავი დაიბანეთ"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "მოითხოვა მოწვევა"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "მოწვევა მოთხოვნილია მიზეზით: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "რაღაც უცნობი ქნა"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "ოთახის მთავარი მეტსახელი გასუფთავებულია"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "დააყენა ოთახის მთავარი მეტსახელი: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "გაასუფთავა ოთახის სახელი"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ოთახის მეტსახელი დაყენებულია: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "გაასუფთავა სათაური"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "თემა დააყენა: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "შეცვალა ოთახის ავატარი"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "გაააქტიურა გამჭოლი დაშიფვრა"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "ოთახის ვერსია განაახლა %1-მდე"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "შექნა ოთახი, ვერსია %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "ამ ოთახზე წვდომის უფლებები შეიცვლა"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "ამ ოთახისთვის სერვერის წვდომის კონტროლის სიები შეიცვალა"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "დაამატა ვიჯეტი %1"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "წაშალა ვიჯეტი %1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "მოირგო ვიჯეტი %1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "განაახლა %1-ის მდგომარეობა"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "განაახლა %1-ის მდგომარეობა %2-სთვის"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "უცნობი მოვლენა"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "გააგზავნა შეტყობინება"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "სტიკერი გაგზავნილია"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "ვიღაც ოთახში თავიდან მოიწვია"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "მოიწვია ოთახში"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "შეცვალა საჩვენებელი სახელი"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "გააუქმა მომხმარებლის მოსაწვევი"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "მომხმარებელს ბანი მოხსნა"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "მომხმარებელი ოთახიდან გასვა"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "დაბანა მომხმარებელი ოთახიდან"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "დააყენა ოთახის მთავარი მეტსახელი"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ოთახის მეტსახელი დაყენებულია"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "თემა დააყენა"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "ოთახის ვერსია განაახლა"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "შექმნა ოთახი"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "დაამატა ვიჯეტი"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "წაშალა ვიჯეტი"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "მოირგო ვიჯეტი"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "განაახლა მდგომარეობა"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "დაიწყო გამოკითხვა"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "ანგარიში წარმატებით გაიგზავნა."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1093,7 +1098,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "ამ ოთახში NeoChat-ის გახსნა"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1131,7 +1136,7 @@ msgid "Attachment:"
|
||||
msgstr "მიმაგრება:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1187,7 +1192,7 @@ msgstr "მიმაგრებული ფაილების წარწ
|
||||
msgid "Send a message…"
|
||||
msgstr "შეტყობინების გაგზავნა…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1300,13 +1305,13 @@ msgstr "სტიკერების გარეშე"
|
||||
msgid "No emojis"
|
||||
msgstr "ემოჯიების გარეშე"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "ემოჯიები"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1317,17 +1322,17 @@ msgstr "სტიკერები"
|
||||
msgid "View Location"
|
||||
msgstr "მდებარეობის ნახვა"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "დახურვა"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "ეს შეტყობინება შემოწმებული მოწყობილობიდანაა გამოგზავნილი"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "რეაქცია"
|
||||
@@ -1348,13 +1353,13 @@ msgstr "უარყოფა"
|
||||
msgid "Accept"
|
||||
msgstr "დასტური"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "მდებარეობები"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "ამ ოთახში მდებარეობები გაზიარებული არაა."
|
||||
@@ -1381,7 +1386,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1408,13 +1413,18 @@ msgstr "შეიყვანეთ თქვენი Matrix ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix ID"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "ჩატვირთვა…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "უკვე შესულია"
|
||||
@@ -1469,6 +1479,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "შესვლა"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "პაროლი"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1582,32 +1599,32 @@ msgstr "ხმის სიმაღლე"
|
||||
msgid "Maximize"
|
||||
msgstr "გადიდება"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "აირჩიეთ ლოკალური ფაილი"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "ბუფერის გამოსახულება"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "პირველ წაუკითხავ შეტყობინებაზე გადასვლა"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "უახლეს შეტყობინებებზე გადასვლა"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "გადმოათრიეთ საგნები აქ, მათ გასაზიარებლად"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1932,70 +1949,70 @@ msgstr "ადმინისტრატორი (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "დადასტურება"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "ანგარიშის დეტალები"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "ამ მომხმარებლის იგნორის გაუქმება"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "ამ მომხმარებლის იგნორირება"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "ამ მომხმარებლის გაგდება"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "ამ მომხმარებლის მოწვევა"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "ამ მომხმარებლის დაბანვა"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "მომხმარებლის ბანი"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "ამ მომხმარებლის ბანის მოხსნა"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "მომხმარებლის წვდომის დონის დაყენება"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "ამ მომხმარებლის უახლესი შეტყობინებების წაშლა"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "შეტყობინებების წაშლა"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "პირადი საუბრის გახსნა"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "ბმულის კოპირება"
|
||||
@@ -2646,12 +2663,24 @@ msgstr "დასაწყისისთვის შეუერთდით
|
||||
msgid "Search in room directory"
|
||||
msgstr "ოთახების დირექტორიაში ძებნა"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr "%1-ის ჩაკეცვა"
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "%1-ის ამოკეცვა"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "დადუმებული ოთახი"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "ოთახის მორგება"
|
||||
@@ -2712,7 +2741,7 @@ msgstr "მომხმარებლის გადართვა"
|
||||
msgid "Open Settings"
|
||||
msgstr "პარამეტრების გახსნა"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat გათიშულია. შეამოწმეთ ინტერნეტკავშირი."
|
||||
@@ -2788,55 +2817,61 @@ msgstr "პარამეტრები"
|
||||
msgid "Open developer tools"
|
||||
msgstr "პროგრამისტის ხელსაწყოების გახსნა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "ამ ოთახში ძებნა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "ძებნა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "ოთახის რჩეულებიდან წაშლა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "ოთახის რჩეულად მონიშვნა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "ამ ოთახისთვის მდებარეობების ჩვენება"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "წევრები"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "ოთახში მომხმარებლის ძებნა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "მომხმარებლის მოწვევა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "მომხმარებლის ოთახში მოწვევა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 წევრი"
|
||||
msgstr[1] "%1 წევრი"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "წევრების რაოდენობის გარეშე"
|
||||
@@ -3335,12 +3370,6 @@ msgstr "სახელი:"
|
||||
msgid "Label:"
|
||||
msgstr "ჭდე:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "პაროლი"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3482,7 +3511,7 @@ msgstr "ფერის თემა"
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, ბოლო აქტივობა: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
@@ -3638,8 +3667,8 @@ msgstr "ზოგადი პარამეტრები"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "სისტემური პანელის ხატულაში ჩახურვა"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "სისტემის კუთხეში ჩვენება"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
322
po/ko/neochat.po
322
po/ko/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-25 23:22+0200\n"
|
||||
"Last-Translator: Shinjo Park <kde@peremen.name>\n"
|
||||
"Language-Team: Korean <kde-kr@kde.org>\n"
|
||||
@@ -17,77 +17,77 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "로그인 실패: 접근 토큰이 잘못되었거나 취소됨"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "로그인 실패: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "네트워크 오류: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "접근 토큰을 찾을 수 없음"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "삭제되었을 수도 있습니다."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "키 체인 접근이 거부되었습니다."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "NeoChat에서 접근 토큰 사용을 허용하십시오"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "키 체인을 사용할 수 없습니다."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr "키 체인을 설치하십시오. 리눅스라면 KWallet, 그놈 키 모음 등이 있습니다"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "접근 토큰을 읽을 수 없음"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "파일이 다운로드하기에 너무 큽니다."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Matrix 서버 관리자에게 연락하십시오."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "대화방 생성 실패: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "스페이스 생성 실패: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "입장하려는 대화방의 ID가 잘못됨"
|
||||
@@ -199,16 +199,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1(%2(으)로 빌드됨)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix 대화 프로토콜 클라이언트"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "matrix: URL 형식 지원"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "모든 SSL 오류(예: 서명되지 않은 인증서)를 무시합니다."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -679,33 +684,33 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "사용자 정의 이모지"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[이 메시지가 삭제됨]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[이 메시지가 삭제됨: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[검열됨]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[검열됨: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -763,279 +768,279 @@ msgstr "낮은 우선 순위"
|
||||
msgid "Spaces"
|
||||
msgstr "스페이스"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "오늘"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "어제"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "그저께"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "파일"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "%1 님을 대화방에 다시 초대함"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
# 여기서부터 등장하는 소문자로 시작하는 메시지는 대화명 바로 뒤에 나오므로 메시지 앞에 대화명이 있다고 가정하고 번역해야 함.
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "님이 대화방에 입장함(반복됨)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "님이 %1 님을 대화방에 초대함"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "님이 대화방에 입장함"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "님이 표시 이름을 지움"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "님이 표시 이름을 %1(으)로 변경함|/|표시 이름을 %1$[으 %1]로 변경함"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " 및 "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "님이 아바타를 지움"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "님이 아바타를 설정함"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "님이 아바타를 업데이트함"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "님이 %1 님의 초대를 거절함"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "님이 초대를 거절함"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "님이 %1 님의 차단을 해제함"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "님이 자기 자신의 차단을 해제함"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "님이 %1 님을 대화방에서 추방함: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "님이 대화방을 떠남"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "님이 %1 님을 대화방에서 차단함: %2"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "님이 %1 님을 대화방에서 차단함: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "님이 대화방에서 자기 자신을 차단함"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "님이 초대를 요청함"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "requested an invite"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "님이 초대를 요청함"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "님이 알 수 없는 무언가를 함"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "님이 대화방 주 별명을 지움"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "님이 대화방 주 별명을 다음으로 설정함: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "님이 대화방 이름을 지움"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "님이 대화방 이름을 다음으로 설정함: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "님이 대화방 주제를 삭제함"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "님이 대화방 주제를 설정함: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "님이 대화방 아바타를 변경함"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "님이 종단간 암호화를 활성화함"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "님이 대화방을 버전 %1(으)로 업그레이드함"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "님이 대화방을 만듦, 버전 %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "님이 이 대화방의 권한 수준을 변경함"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "님이 이 대화방의 서버 측 접근 권한 목록을 변경함"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "님이 %1 위젯을 추가함"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "님이 %1 위젯을 삭제함"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "님이 %1 위젯을 설정함"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "님이 %1 상태를 업데이트함"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
"님이 %1 상태를 %2(으)로 업데이트함|/|님이 %1 상태를 %2$[으 %2]로 업데이트함"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "알 수 없는 이벤트"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send a message…"
|
||||
msgid "sent a message"
|
||||
msgstr "메시지 보내기…"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "%1 님을 대화방에 다시 초대함"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "님이 %1 님을 대화방에 초대함"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
@@ -1043,98 +1048,98 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "님이 표시 이름을 %1(으)로 변경함|/|표시 이름을 %1$[으 %1]로 변경함"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "님이 %1 님의 초대를 거절함"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "님이 %1 님의 차단을 해제함"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "님이 %1 님을 대화방에서 추방함: %2"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "님이 %1 님을 대화방에서 차단함: %2"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
msgid "set the room main alias"
|
||||
msgstr "님이 대화방 주 별명을 다음으로 설정함: %1"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
msgid "set the room name"
|
||||
msgstr "님이 대화방 이름을 다음으로 설정함: %1"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "님이 대화방 주제를 설정함: %1"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "님이 대화방을 버전 %1(으)로 업그레이드함"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "님이 대화방을 떠남"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] added <name> widget"
|
||||
#| msgid "added %1 widget"
|
||||
msgid "added a widget"
|
||||
msgstr "님이 %1 위젯을 추가함"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] removed <name> widget"
|
||||
#| msgid "removed %1 widget"
|
||||
msgid "removed a widget"
|
||||
msgstr "님이 %1 위젯을 삭제함"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] configured <name> widget"
|
||||
#| msgid "configured %1 widget"
|
||||
msgid "configured a widget"
|
||||
msgstr "님이 %1 위젯을 설정함"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "님이 %1 상태를 업데이트함"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "신고했습니다."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1156,7 +1161,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "이 대화방에서 NeoChat 열기"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1194,7 +1199,7 @@ msgid "Attachment:"
|
||||
msgstr "첨부:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1251,7 +1256,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "메시지 보내기…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1380,14 +1385,14 @@ msgstr "단어 추가"
|
||||
msgid "No emojis"
|
||||
msgstr "사용자 정의 이모지"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Custom Emoji"
|
||||
msgid "Emojis"
|
||||
msgstr "사용자 정의 이모지"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1399,17 +1404,17 @@ msgstr "스티커"
|
||||
msgid "View Location"
|
||||
msgstr "초대 보내기"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "닫기"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "반응"
|
||||
@@ -1430,13 +1435,13 @@ msgstr "거부"
|
||||
msgid "Accept"
|
||||
msgstr "수락"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "위치"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1464,7 +1469,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1491,13 +1496,18 @@ msgstr "Matrix ID 입력"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix ID"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "불러오는 중…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1552,6 +1562,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "로그인"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "암호"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1666,32 +1683,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr "최대화"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "로컬 파일 선택"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "클립보드의 그림"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "첫 읽지 않은 메시지로 이동"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "최신 메시지로 이동"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "공유할 항목을 여기에 드래그"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -2014,74 +2031,74 @@ msgstr "관리자"
|
||||
msgid "Confirm"
|
||||
msgstr "확인"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "계정 정보"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "이 사용자 무시 해제"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "이 사용자 무시"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "이 사용자 추방"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ignore this user"
|
||||
msgid "Invite this user"
|
||||
msgstr "이 사용자 무시"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "이 사용자 차단"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ban this user"
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "이 사용자 차단"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "이 사용자 차단 해제"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Delete recent messages by this user"
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "이 사용자의 최근 메시지 삭제"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "메시지 편집"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "개인 대화 열기"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "링크 복사"
|
||||
@@ -2752,13 +2769,26 @@ msgstr "시작하려면 대화방에 입장하십시오"
|
||||
msgid "Search in room directory"
|
||||
msgstr "대화방 디렉터리에서 검색"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "님이 %1 님의 차단을 해제함"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "음소거됨"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "대화방 설정"
|
||||
@@ -2824,7 +2854,7 @@ msgstr "사용자 전환"
|
||||
msgid "Open Settings"
|
||||
msgstr "설정"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat이 오프라인입니다. 네트워크 연결 상태를 확인하십시오."
|
||||
@@ -2904,52 +2934,59 @@ msgstr "옵션:"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search in this room"
|
||||
msgstr "이 대화방에서 NeoChat 열기"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "책갈피에서 대화방 삭제"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "책갈피에 대화방 추가"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "이 대화방에서 NeoChat 열기"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "구성원"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search user in room"
|
||||
msgstr "이 대화방에서 NeoChat 열기"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "사용자 초대"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 invited you to a room"
|
||||
msgid "Invite user to room"
|
||||
msgstr "%1 님이 대화방에 초대함"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -2957,7 +2994,7 @@ msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "구성원 %1명"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3483,12 +3520,6 @@ msgstr "이름:"
|
||||
msgid "Label:"
|
||||
msgstr "이름표:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "암호"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3810,8 +3841,9 @@ msgid "General settings"
|
||||
msgstr "일반 설정"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "시스템 트레이로 닫기"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
317
po/lt/neochat.po
317
po/lt/neochat.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-02-25 01:00+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -18,77 +18,77 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n"
|
||||
"%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr ""
|
||||
@@ -200,16 +200,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -642,27 +647,27 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -671,7 +676,7 @@ msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -731,353 +736,353 @@ msgstr ""
|
||||
msgid "Spaces"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1098,7 +1103,7 @@ msgstr ""
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1136,7 +1141,7 @@ msgid "Attachment:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1190,7 +1195,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1303,13 +1308,13 @@ msgstr ""
|
||||
msgid "No emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1320,17 +1325,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr ""
|
||||
@@ -1351,13 +1356,13 @@ msgstr ""
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1384,7 +1389,7 @@ msgid "Url:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1411,13 +1416,18 @@ msgstr ""
|
||||
msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1472,6 +1482,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1584,32 +1601,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1923,70 +1940,70 @@ msgstr ""
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr ""
|
||||
@@ -2633,12 +2650,24 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr ""
|
||||
@@ -2699,7 +2728,7 @@ msgstr ""
|
||||
msgid "Open Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr ""
|
||||
@@ -2775,48 +2804,54 @@ msgstr ""
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2825,7 +2860,7 @@ msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr ""
|
||||
@@ -3313,12 +3348,6 @@ msgstr ""
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3615,7 +3644,7 @@ msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
323
po/nl/neochat.po
323
po/nl/neochat.po
@@ -6,10 +6,10 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 07:57+0200\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 08:11+0200\n"
|
||||
"Last-Translator: Freek de Kruijf <freekdekruijf@kde.nl>\n"
|
||||
"Language-Team: Dutch <kde-i18n-nl@kde.org>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -17,78 +17,78 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 23.04.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Aanmelden is mislukt: toegangstoken ongeldig of ingetrokken"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Aanmelden mislukt: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Netwerkfout: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Toegangstoken is niet gevonden"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Misschien is het verwijderd?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Toegang tot sleutelring is geweigerd."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "laat NeoChat het toegangstoken lezen"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Geen sleutelring beschikbaar"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Installeer een sleutelring, bijv. KWallet of GNOME sleutelring op Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Lezen van toegangstoken lukt niet"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Bestand is te groot om te downloaden."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Neem contact op met uw matrix-serverbeheerder voor ondersteuning."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Aanmaken van room is mislukt: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Ruimte aanmaken is mislukt: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Het room-id waaraan u mee wilt doen is niet geldig"
|
||||
@@ -200,16 +200,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (gebouwd tegen %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Client voor het matrix communicatieprotocol"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Ondersteunt matrix: url schema"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "Negeer alle SSL fouten, bijv. niet ondertekende certificaten."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -640,34 +645,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Eigen emoji's"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Dit bericht is verwijderd]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Dit bericht is verwijderd: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[GEREDIGEERD]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[GEREDIGEERD: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 gebruiker: "
|
||||
msgstr[1] "%1 gebruikers "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -725,353 +730,353 @@ msgstr "Lage prioriteit"
|
||||
msgid "Spaces"
|
||||
msgstr "Spaties"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Vandaag"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Gisteren"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Eergisteren"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "een bestand"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "%1 opnieuw uitgenodigd naar de room"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "doet mee met de room (herhaald)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 uitgenodigd naar de room"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "doet mee met de room"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "heeft zijn/haar schermnaam gewist"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "heeft zijn/haar schermnaam gewijzigd naar %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " en "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "heeft zijn/haar avatar gewist"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "hebben een avatar ingesteld"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "heeft zijn/haar avatar bijgewerkt"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "niet gewijzigd"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "uitnodiging van %1 ingetrokken"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "de uitnodiging afgewezen"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "verbanning van %1 ongedaan gemaakt"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "zelf verbanning ongedaan gemaakt"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "heeft %1 uit de room gezet: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "heeft de room verlaten"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "%1 verbannen uit de room"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "%1 verbannen uit de room: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "zelf verbannen uit de room"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "om een uitnodiging verzocht"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "heeft om een uitnodiging verzocht met reden: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "iets onbekend gemaakt"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "hoofdalias van de room gewist"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "hoofdalias van de room ingesteld op: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "naam van de room gewist"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "naam van de room ingesteld op: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "het onderwerp gewist"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "het onderwerp instellen op: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "room-avatar tonen is gewijzigd"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "Eind-tot-eind versleuteling geactiveerd"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "de room bijgewerkt tot versie %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "de room aangemaakt, versie %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "de energieniveaus voor deze room zijn gewijzigd"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "de toegangscontrolelijst voor deze room is gewijzigd"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "%1 widget toegevoegd"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "%1 widget verwijderd"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "%1 widget geconfigureerd"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "%1 status bijgewerkt"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "%1 status bijgewerkt voor %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Onbekende gebeurtenis"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "verzend een bericht"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "verzend een sticker"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "heeft iemand opnieuw uitgenodigd in de room"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "heeft iemand uitgenodigd in de room"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "heeft hun schermnaam gewijzigd"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "heeft uitnodiging van een gebruiker ingetrokken"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "heeft verbanning van een gebruiker ongedaan gemaakt"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "heeft een gebruiker uit de room gezet"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "heeft een gebruiker verbannen uit de room"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "hoofdalias van de room ingesteld"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "naam van de room ingesteld"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "het onderwerp ingesteld"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "heeft de versie van de room opgewaardeerd"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "heeft de room aangemaakt"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "heeft een widget toegevoegd"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "heeft een widget verwijderd"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "heeft een widget geconfigureerd"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "heeft de status bijgewerkt"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "heeft een raadpleging (poll) gestart"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Rapport met succes verzonden."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1092,7 +1097,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "NeoChat in deze room openen"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1130,7 +1135,7 @@ msgid "Attachment:"
|
||||
msgstr "Bijlage:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1186,7 +1191,7 @@ msgstr "Stel een opschrift voor de bijlage in..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Een bericht verzenden…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1299,13 +1304,13 @@ msgstr "Geen stickers"
|
||||
msgid "No emojis"
|
||||
msgstr "Geen emoji's"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emoji's"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1316,17 +1321,17 @@ msgstr "Stickers"
|
||||
msgid "View Location"
|
||||
msgstr "Locatie bekijken"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Sluiten"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Dit bericht is verzonden van een geverifieerd apparaat"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reageer"
|
||||
@@ -1347,13 +1352,13 @@ msgstr "Afwijzen"
|
||||
msgid "Accept"
|
||||
msgstr "Accepteren"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Locaties"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Er worden geen locaties in deze room gedeeld."
|
||||
@@ -1380,7 +1385,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1407,13 +1412,18 @@ msgstr "Uw Matrix-id invoeren"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix-ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix-ID"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Laden…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Al aangemeld"
|
||||
@@ -1468,6 +1478,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Aanmelden"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Wachtwoord"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1581,32 +1598,32 @@ msgstr "Volume"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximaliseren"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Lokaal bestand kiezen"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Afbeelding in klembord"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Naar het eerste ongelezen bericht gaan"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Naar het laatste bericht gaan"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Items hierheen verslepen om ze te delen"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1954,70 +1971,70 @@ msgstr "Admin (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Bevestigen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Accountdetail"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Negeren van deze gebruiker ongedaan maken"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Deze gebruiker negeren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Deze gebruiker een schop geven"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Deze gebruiker uitnodigen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Deze gebruiker verbannen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Gebruiker verbannen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Verbanning van gebruiker verwijderen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Niveau van macht van gebruiker instellen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Recente berichten van deze gebruiker verwijderen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Berichten verwijderen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Een privé chat openen"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Koppeling kopiëren"
|
||||
@@ -2668,12 +2685,24 @@ msgstr "Doe mee met sommige rooms om te beginnen"
|
||||
msgid "Search in room directory"
|
||||
msgstr "In map van room zoeken"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr "%1 invouwen"
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "%1 uitvouwen"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Gedempte room"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Room configureren"
|
||||
@@ -2734,7 +2763,7 @@ msgstr "Gebruiker wisselen"
|
||||
msgid "Open Settings"
|
||||
msgstr "Instellingen openen"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat is offline. Controleer uw netwerkverbinding."
|
||||
@@ -2810,55 +2839,61 @@ msgstr "Opties"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Hulpmiddelen voor ontwikkelaars openen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "In deze room zoeken"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Room uit favorieten verwijderen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Room als favoriet instellen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Locaties in deze room tonen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Leden"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Gebruiker in room zoeken"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Een gebruiker uitnodigen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Gebruiker uitnodigen in room"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 lid"
|
||||
msgstr[1] "%1 leden"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Geen aantal leden"
|
||||
@@ -3362,12 +3397,6 @@ msgstr "Naam:"
|
||||
msgid "Label:"
|
||||
msgstr "Label:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Wachtwoord"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3664,8 +3693,8 @@ msgstr "Algemene instellingen"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Naar systeemvak sluiten"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "In systeemvak tonen"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
315
po/nn/neochat.po
315
po/nn/neochat.po
@@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-06 02:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-28 20:45+0200\n"
|
||||
"POT-Creation-Date: 2023-08-04 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-03 19:40+0200\n"
|
||||
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
|
||||
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
|
||||
"Language: nn\n"
|
||||
@@ -20,77 +20,77 @@ msgstr ""
|
||||
"X-Accelerator-Marker: &\n"
|
||||
"X-Text-Markup: kde4\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Feil ved innlogging: Ugyldig eller tilbaketrekt tilgangspollett"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Feil ved innlogging: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Nettverksfeil: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Fann ikkje tilgangspollett"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Kanskje han er sletta?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Vart nekta tilgang til nøkkelring."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Gje NeoChat løyve til å lesa tilgangspolletten"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Ingen nøkkelring er tilgjengeleg."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr "Installer ein nøkkelring, for eksempel KWallet eller GNOME Keyring"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Klarte ikkje lesa tilgangspollett"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Fila er for stor til å kunna lastast ned."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Ta kontakt med administratoren av Matrix-tenaren for brukarstøtte."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Feil ved romregistrering: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Feil ved registrering av område: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Rom-ID-en du prøver å bruka, er ikkje gyldig"
|
||||
@@ -202,16 +202,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (bygd mot %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Lynmeldingsklient for Matrix-protokollen"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Støttar «matrix:»-adresser"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "Ignorer alle SSL-feil, for eksempel usignerte sertifikat."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -643,35 +648,35 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Eigne emojiar"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Denne meldinga er sletta]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Denne meldinga er sletta: %1]</i>"
|
||||
|
||||
# Eller «SENSURERT»?
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[TREKT TILBAKE]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[TREKT TILBAKE: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 brukar: "
|
||||
msgstr[1] "%1 brukarar: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -732,354 +737,354 @@ msgstr "Lågt prioriterte"
|
||||
msgid "Spaces"
|
||||
msgstr "Område"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "I dag"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "I går"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "I forgårs"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "ei fil"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "inviterte %1 på nytt til rommet"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "kom inn i rommet (på nytt)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "inviterte %1 til rommet"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "kom inn i rommet"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "fjerna visingsnamnet"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "endra visingsnamnet sitt til %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " og "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "fjerna avataren sin"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "valde ein avatar"
|
||||
|
||||
# Kan gjelda meir enn éin person, så «oppdaterte avataren sin» vert feil.
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "valde ein ny avatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "endra ingenting"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "trekte tilbake invitasjonen til %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "avviste invitasjonen"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "oppheva utestenging av %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "utestengde seg sjølv"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "fjerna %1 frå rommet: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "forlét rommet"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "utestengde %1 frå rommet"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "utestengde %1 frå rommet: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "utestengde seg sjølv frå rommet"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "ba om ein invitasjon"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "ba om ein invitasjon med denne grunngjevinga: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "gjorde noko ukjent"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "fjerna hovudaliaset til rommet"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "bytte hovudalias for rommet til: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "fjerna romnamnet"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "bytte romnamnet til: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "fjerna emnet"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "bytte emnet til: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "bytte ut romavataren"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "slo på ende-til-ende-kryptering"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "oppgraderte rommet til versjon %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "oppretta rommet, versjon %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "endra maktnivået for rommet"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "endra tenartilgangskontroll-lista for rommet"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "la til eit %1-element"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "fjerna eit %1-element"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "endra innstillingar for eit %1-element"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "oppdaterte %1-tilstand"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "oppdaterte %1-tilstand for %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Ukjend hending"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "sende ei melding"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "sende eit klistremerke"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "inviterte nokon på nytt til rommet"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "inviterte nokon til rommet"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "endra visingsnamnet sitt"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "trekte tilbake ein invitasjonen"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "oppheva utestenging av ein brukar"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "fjerna ein brukar frå rommet"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "utestengde ein brukar frå rommet"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "bytte hovudalias for rommet"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "bytte romnamnet"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "bytte emnet"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "oppgraderte rommet til ny versjon"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "oppretta rommet"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "la til eit element"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "fjerna eit element"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "endra innstillingar for eit element"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "oppdaterte tilstanden"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "starta ei avstemming"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Rapporten er no send."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1090,7 +1095,7 @@ msgstr "Breiddegr.: %1 – lengdegr.: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Kryptert melding"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1195,7 +1200,7 @@ msgstr "Vel vedleggstekst …"
|
||||
msgid "Send a message…"
|
||||
msgstr "Send ei melding …"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1325,7 +1330,7 @@ msgstr "Klistremerke"
|
||||
msgid "View Location"
|
||||
msgstr "Vis posisjon"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Lukk"
|
||||
@@ -1356,13 +1361,13 @@ msgstr "Avvis"
|
||||
msgid "Accept"
|
||||
msgstr "Godta"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Posisjonar"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Ingen posisjonar er delte i rommet."
|
||||
@@ -1389,7 +1394,7 @@ msgid "Url:"
|
||||
msgstr "Adresse:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1416,13 +1421,18 @@ msgstr "Skriv inn Matrix-ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix-ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix-ID"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Lastar …"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Allereie innlogga"
|
||||
@@ -1477,6 +1487,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Logg inn"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Passord"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1944,86 +1961,86 @@ msgstr "Administrator (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Stadfest"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Kontodetaljar"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Avignorer brukaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignorer brukaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Kast ut brukaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Inviter brukaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Utesteng brukaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Utesteng brukar"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Opphev utestenging av brukaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Vel maktnivå for brukar"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Fjern nylege meldingar frå brukaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Fjern meldingar"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Start privat prat"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Kopier lenkje"
|
||||
|
||||
#: src/qml/main.qml:299
|
||||
#: src/qml/main.qml:300
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Øktstadfesting"
|
||||
|
||||
#: src/qml/main.qml:311
|
||||
#: src/qml/main.qml:312
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Brukarsamtykke"
|
||||
|
||||
#: src/qml/main.qml:316
|
||||
#: src/qml/main.qml:317
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2032,17 +2049,17 @@ msgstr ""
|
||||
"Heimetenaren krev at du godtek brukarvilkåra før du kan ta han i bruk. Trykk "
|
||||
"på knappen nedanfor for å lesa vilkåra."
|
||||
|
||||
#: src/qml/main.qml:321
|
||||
#: src/qml/main.qml:322
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Opna"
|
||||
|
||||
#: src/qml/main.qml:356
|
||||
#: src/qml/main.qml:357
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Start prat"
|
||||
|
||||
#: src/qml/main.qml:358
|
||||
#: src/qml/main.qml:359
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Vil du starta ein prat med %1?"
|
||||
@@ -2659,12 +2676,24 @@ msgstr "Start ved å verta med i nokre rom"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Søk i romkatalogen"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:94
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr "Fald saman %1"
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Utvid %1"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Dempa rom"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:126
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Set opp rommet"
|
||||
@@ -2802,55 +2831,61 @@ msgstr "Handlingar"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Opna utviklarverktøy"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Søk i rommet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Søk"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Fjern rommet frå favorittar"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Gjer rommet til favoritt"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Vis posisjonar i rommet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Medlemmar"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Søk etter brukarar i rommet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Inviter ein brukar"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Inviter brukar til rommet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 medlem"
|
||||
msgstr[1] "%1 medlemmar"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Manglar medlemstal"
|
||||
@@ -3356,12 +3391,6 @@ msgstr "Namn:"
|
||||
msgid "Label:"
|
||||
msgstr "Merkelapp:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Passord"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3499,12 +3528,6 @@ msgstr "I sidestolpen"
|
||||
msgid "Color theme"
|
||||
msgstr "Fargetema"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3658,8 +3681,8 @@ msgstr "Generelle innstillingar"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Minimer til systemtrauet"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Vis i systemtrauet"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
327
po/pa/neochat.po
327
po/pa/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2021-12-31 11:06-0800\n"
|
||||
"Last-Translator: A S Alam <aalam@satluj.org>\n"
|
||||
"Language-Team: Punjabi <punjabi-users@lists.sf.net>\n"
|
||||
@@ -17,81 +17,81 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 21.04.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "ਲਾਗਇਨ ਫ਼ੇਲ੍ਹ ਹੈ: ਪਹੁੰਚ ਟੋਕਨ ਗੈਰ-ਵਾਜਬ ਜਾਂ ਮਨਸੂਖ ਕੀਤਾ ਹੈ"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "ਲਾਗਇਨ ਫੇਲ੍ਹ ਹੈ: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "ਨੈੱਟਵਰਕ ਗ਼ਲਤੀ: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Access Token (Optional)"
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "ਪਹੁੰਚ ਟੋਕਨ (ਚੋਣਵਾਂ)"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No users available"
|
||||
msgid "No keychain available."
|
||||
msgstr "ਕੋਈ ਵਰਤੋਂਕਾਰ ਮੌਜੂਦ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "ਰੂਮ ਬਣਾਉਣ ਲਈ ਫੇਲ੍ਹ: \"%1\""
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "ਰੂਮ ਬਣਾਉਣ ਲਈ ਫੇਲ੍ਹ: \"%1\""
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr ""
|
||||
@@ -210,16 +210,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -711,34 +716,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "ਕਸਟਮ"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[ਇਹ ਸੁਨੇਹਾ ਹਟਾਇਆ ਗਿਆ ਸੀ]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[ਇਹ ਸੁਨੇਹਾ ਹਟਾਇਆ ਗਿਆ ਸੀ: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -796,277 +801,277 @@ msgstr "ਘੱਟ ਤਰਜੀਹ"
|
||||
msgid "Spaces"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "ਅੱਜ"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "ਕਲ੍ਹ"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "ਪਰਸੋਂ"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "ਫਾਇਲ"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "ਰੂਮ ਜੁਆਇੰਨ ਕੀਤਾ (ਦੁਹਰਾਇਆ)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 ਨੂੰ ਰੂਮ ਲਈ ਸੱਦਾ ਦਿੱਤਾ"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "ਰੂਮ 'ਚ ਦਾਖਲ ਹੋਏ"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "ਆਪਣੇ ਵੇਖਾਉਣ ਵਾਲੇ ਨਾਂ ਮਿਟਾਏ"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " ਅਤੇ "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "ਉਹਨਾਂ ਦੇ ਅਵਤਾਰ ਮਿਟਾਏ"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ਅਵਤਾਰ ਨਿਯਤ ਕਰੋ"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "ਆਪਣੇ ਅਵਤਾਰ ਅੱਪਡੇਟ ਕੀਤੇ"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "%1 ਲਈ ਸੱਦਾ ਵਾਪਸ ਲਵੋ"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "ਸੱਦੇ ਲਈ ਨਾਂਹ ਕੀਤੀ"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "%1 ਪਾਬੰਦੀ ਹਟਾਈ"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "ਰੂਮ ਛੱਡਿਆ"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "%1 ਨੂੰ ਰੂਮ ਤੋਂ ਪਾਬੰਦੀ ਲਾਈ: %2"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "%1 ਨੂੰ ਰੂਮ ਤੋਂ ਪਾਬੰਦੀ ਲਾਈ: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "ਸੱਦੇ ਲਈ ਬੇਨਤੀ ਕਰੋ"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "requested an invite"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "ਸੱਦੇ ਲਈ ਬੇਨਤੀ ਕਰੋ"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "ਰੂਮ ਦਾ ਨਾਂ ਮਿਟਾਇਆ"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "ਵਿਸ਼ੇ ਨੂੰ ਮਿਟਾਇਆ"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ਵਿਸ਼ਾ ਨਿਯਤ ਕੀਤਾ: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "ਰੂਮ ਅਵਤਾਰ ਬਦਲਿਆ"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "ਸਿਰੇ ਤੋਂ ਸਿਰੇ ਤੱਕ ਇੰਕ੍ਰਿਪਸ਼ਨ ਸਰਗਰਮ ਕੀਤੀ"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "ਰੂਮ ਨੂੰ %1 ਵਰਜ਼ਨ ਲਈ ਅੱਪਗਰੇਡ ਕੀਤਾ"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "ਰੂਮ ਬਣਾਇਆ, ਵਰਜ਼ਨ %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "%1 ਹਾਲਤ ਅੱਪਡੇਟ ਕੀਤੀ"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "%2 ਲਈ %1 ਹਾਲਤ ਅੱਪਡੇਟ ਕੀਤੀ"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "ਅਣਪਛਾਤਾ ਈਵੈਂਟ"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send message"
|
||||
msgid "sent a message"
|
||||
msgstr "ਸੁਨੇਹਾ ਭੇਜੋ"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "%1 ਨੂੰ ਰੂਮ ਲਈ ਸੱਦਾ ਦਿੱਤਾ"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "%1 ਨੂੰ ਰੂਮ ਲਈ ਸੱਦਾ ਦਿੱਤਾ"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "cleared their display name"
|
||||
@@ -1074,94 +1079,94 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ਆਪਣੇ ਵੇਖਾਉਣ ਵਾਲੇ ਨਾਂ ਮਿਟਾਏ"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "%1 ਲਈ ਸੱਦਾ ਵਾਪਸ ਲਵੋ"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "%1 ਪਾਬੰਦੀ ਹਟਾਈ"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 invited you to a room"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "%1 ਨੇ ਤੁਹਾਨੂੰ ਰੂਮ ਲਈ ਸੱਦਾ ਦਿੱਤਾ"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "%1 ਨੂੰ ਰੂਮ ਤੋਂ ਪਾਬੰਦੀ ਲਾਈ: %2"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "changed the room avatar"
|
||||
msgid "set the room main alias"
|
||||
msgstr "ਰੂਮ ਅਵਤਾਰ ਬਦਲਿਆ"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "cleared the room name"
|
||||
msgid "set the room name"
|
||||
msgstr "ਰੂਮ ਦਾ ਨਾਂ ਮਿਟਾਇਆ"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "ਵਿਸ਼ਾ ਨਿਯਤ ਕੀਤਾ: %1"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "ਰੂਮ ਨੂੰ %1 ਵਰਜ਼ਨ ਲਈ ਅੱਪਗਰੇਡ ਕੀਤਾ"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "ਰੂਮ ਛੱਡਿਆ"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgid "removed a widget"
|
||||
msgstr "ਸੁਨੇਹੇ ਨੂੰ ਸੋਧੋ"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "%1 ਹਾਲਤ ਅੱਪਡੇਟ ਕੀਤੀ"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Password changed successfully"
|
||||
msgid "Report sent successfully."
|
||||
msgstr "ਪਾਸਵਰਡ ਕਾਮਯਾਬੀ ਨਾਲ ਬਦਲਿਆ ਹੈ"
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1183,7 +1188,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "ਇਸ ਰੂਮ ਵਿੱਚ ਨਿਓ-ਚੈਟ ਖੋਲ੍ਹੋ"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1221,7 +1226,7 @@ msgid "Attachment:"
|
||||
msgstr "ਨੱਥੀ:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1280,7 +1285,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "ਸੁਨੇਹਾ ਭੇਜੋ"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1408,14 +1413,14 @@ msgstr "ਡਿਵਾਈਸ ਨੂੰ ਸੋਧੋ"
|
||||
msgid "No emojis"
|
||||
msgstr "ਕਸਟਮ"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Custom"
|
||||
msgid "Emojis"
|
||||
msgstr "ਕਸਟਮ"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1427,17 +1432,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "ਸੱਦਾ ਭੇਜੋ"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "ਬੰਦ ਕਰੋ"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "ਅਸਰ"
|
||||
@@ -1458,14 +1463,14 @@ msgstr "ਰੱਦ ਕਰੋ"
|
||||
msgid "Accept"
|
||||
msgstr "ਮਨਜ਼ੂਰ ਕਰੋ"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "ਨੋਟੀਫਿਕੇਸ਼ਨ ਵੇਖਾਓ"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1493,7 +1498,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1520,14 +1525,20 @@ msgstr "ਆਪਣਾ ਮੈਟਰਿਕਸ ID ਦਿਓ"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ਮੈਟਰਿਕਸ ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "ਮੈਟਰਿਕਸ ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Loading"
|
||||
msgid "Loading…"
|
||||
msgstr "ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1582,6 +1593,15 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "ਲਾਗਇਨ"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "ਪਾਸਵਰਡ"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1695,32 +1715,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "ਲੋਕਲ ਫਾਇਲ ਚੁਣੋ"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "ਕਲਿੱਪਬੋਰਡ ਚਿੱਤਰ"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "ਪਹਿਲੇ ਨਾ-ਪੜ੍ਹੇ ਸੁਨੇਹੇ ਉੱਤੇ ਜਾਓ"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "ਸਭ ਤੋਂ ਨਵੇ ਸੁਨੇਹੇ ਉੱਤੇ ਜਾਓ"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -2044,73 +2064,73 @@ msgstr "ਐਡਮਿਨ"
|
||||
msgid "Confirm"
|
||||
msgstr "ਤਸਦੀਕ ਕਰੋ"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "ਖਾਤੇ ਦਾ ਵੇਰਵਾ"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "ਇਸ ਵਰਤੋਂਕਾਰ ਨੂੰ ਅਣਡਿੱਠਾ ਕਰੋ"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "ਇਸ ਵਰਤੋਂਕਾਰ ਨੂੰ ਅਣਡਿੱਠਾ ਨਾ ਕਰੋ"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "ਇਸ ਵਰਤੋਂਕਾਰ ਨੂੰ ਕਿੱਕ ਕਰੋ"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ignore this user"
|
||||
msgid "Invite this user"
|
||||
msgstr "ਇਸ ਵਰਤੋਂਕਾਰ ਨੂੰ ਅਣਡਿੱਠਾ ਨਾ ਕਰੋ"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "ਇਹ ਵਰਤੋਂਕਾਰ ਉੱਤੇ ਪਾਬੰਦੀ ਲਾਓ"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ban this user"
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "ਇਹ ਵਰਤੋਂਕਾਰ ਉੱਤੇ ਪਾਬੰਦੀ ਲਾਓ"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "ਇਹ ਵਰਤੋਂਕਾਰ ਤੋਂ ਪਾਬੰਦੀ ਹਟਾਓ"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "ਸੁਨੇਹੇ ਨੂੰ ਸੋਧੋ"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "ਪ੍ਰਾਈਵੇਟ ਚੈਟ ਵਿੱਚ ਖੋਲ੍ਹੋ"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Copy"
|
||||
msgid "Copy link"
|
||||
@@ -2783,13 +2803,26 @@ msgstr "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਕੁਝ ਰੂਮ ਜੁਆਇੰਨ ਕ
|
||||
msgid "Search in room directory"
|
||||
msgstr "ਰੂਮ ਦੀ ਡਾਇਰੈਕਟਰੀ ਵਿੱਚ ਖੋਜੋ"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "%1 ਪਾਬੰਦੀ ਹਟਾਈ"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "ਮੌਨ ਕੀਤਾ"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "ਰੂਮ ਦੀ ਸੰਰਚਨਾ"
|
||||
@@ -2857,7 +2890,7 @@ msgstr ""
|
||||
msgid "Open Settings"
|
||||
msgstr "ਸੈਟਿੰਗਾਂ"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "ਨਿਓਚੈਟ ਆਫ਼ਲਾਈਨ ਹੈ। ਆਪਣੇ ਨੈੱਟਵਰਕ ਕਨੈਕਸ਼ਨ ਦੀ ਜਾਂਚ ਕਰੋ।"
|
||||
@@ -2937,52 +2970,59 @@ msgstr "ਚੋਣਾਂ:"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search in this room"
|
||||
msgstr "ਇਸ ਰੂਮ ਵਿੱਚ ਨਿਓ-ਚੈਟ ਖੋਲ੍ਹੋ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "ਪਸੰਦ ਵਿੱਚੋਂ ਰੂਮ ਹਟਾਓ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "ਰੂਮ ਪਸੰਦੀਦਾ ਬਣਾਓ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "ਇਸ ਰੂਮ ਵਿੱਚ ਨਿਓ-ਚੈਟ ਖੋਲ੍ਹੋ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "ਮੈਂਬਰ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search user in room"
|
||||
msgstr "ਇਸ ਰੂਮ ਵਿੱਚ ਨਿਓ-ਚੈਟ ਖੋਲ੍ਹੋ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "ਵਰਤੋਂਕਾਰ ਨੂੰ ਸੱਦਾ ਦਿਓ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 invited you to a room"
|
||||
msgid "Invite user to room"
|
||||
msgstr "%1 ਨੇ ਤੁਹਾਨੂੰ ਰੂਮ ਲਈ ਸੱਦਾ ਦਿੱਤਾ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -2991,7 +3031,7 @@ msgid_plural "%1 members"
|
||||
msgstr[0] "%1 ਮੈਂਬਰ"
|
||||
msgstr[1] "%1 ਮੈਂਬਰ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3516,14 +3556,6 @@ msgstr "ਨਾਂ:"
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "ਪਾਸਵਰਡ"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3847,8 +3879,9 @@ msgid "General settings"
|
||||
msgstr "ਆਮ ਸੈਟਿੰਗਾਂ:"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "ਸਿਸਟਮ ਟਰੇ ਵਿੱਚ ਭੇਜੋ"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
323
po/pl/neochat.po
323
po/pl/neochat.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-04-29 11:30+0200\n"
|
||||
"Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>\n"
|
||||
"Language-Team: Polish <kde-i18n-doc@kde.org>\n"
|
||||
@@ -19,79 +19,79 @@ msgstr ""
|
||||
"|| n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Nie udało się wejść: token dostępowy nieprawidłowy lub unieważniony"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Nie udało się wejść: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Błąd sieciowy: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Nie znaleziono żadnego tokena dostępu"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Może został usunięty?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Odmówiono dostępu do pęku kluczy."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Zezwól NeoChatowi odczytać tokena dostępowego"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Brak pęku kluczy."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr "Wgraj pęk kluczy, np. KWallet lub pęk kluczy GNOME dla Linuksa"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Nie można odczytać tokena dostępu"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Plik jest zbyt duży do pobrania."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Napisz do obsługi twojego serwera Matriksa z prośbą o pomoc."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Nie udało się utworzyć pokoju: \"%1\""
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Nie udało się utworzyć pokoju: \"%1\""
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Id pokoju, do którego próbujesz dołączyć, jest nieprawidłowy"
|
||||
@@ -204,16 +204,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (zbudowane na %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Program do obsługi protokołu matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Obsługuje matriksa: schemat url"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -648,27 +653,27 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Bez emoji"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Wiadomość została usunięta]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Wiadomość została usunięta: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[ZREDAGOWANO]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ZREDAGOWANO: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -676,7 +681,7 @@ msgstr[0] "1 użytkownik: "
|
||||
msgstr[1] "%1 użytkowników: "
|
||||
msgstr[2] "%1 użytkowników: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -736,353 +741,353 @@ msgstr "Niski priorytet"
|
||||
msgid "Spaces"
|
||||
msgstr "Odstępy"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Dzisiaj"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Wczoraj"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Przedwczoraj"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "plik"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "zaprosił(a) ponownie %1 do pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "dołączył(a) do pokoju (powtórzono)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "zaprosił(a) %1 do pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "dołączył(a) do pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "wyczyścił(a) swoją wyświetlaną nazwę"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "zmienił(a) swoją wyświetlaną nazwę na %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " i "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "wyczyścił(a) swój awatar"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ustawił(a) awatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "zmienił(a) swój awatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "nie zmienił niczego"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "wycofał(a) zaproszenie %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "odrzucił(a) zaproszenie"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "odbanował(a) %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "samo-odbanowany"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "umieścił %1 poza pokojem: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "opuścił(a) pokój"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "zbanował %1 w tym pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "zbanował(a) %1 z pokoju: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "samozbanowany(a) z pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "zażądaj zaproszenia"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "zażądano zaproszenia z powodem: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "zrobił(a) coś nieznanego"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "wyczyścił(a) główny alias pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ustawił(a) główny alias pokoju na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "wyczyścił(a) nazwę pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ustawił(a) nazwę pokoju na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "wyczyścił(a) temat"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ustawił(a) temat na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "zmienił(a) awatar pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "aktywował(a) szyfrowanie End-to-End"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "zaktualizował(a) pokój do wersji %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "utworzył(a) pokój, wersja %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "zmieniono poziomy mocy dla tego pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "zmieniono serwerową listę sterującą dostępem dla tego pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "dodał %1 element interfejsu"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "usunął %1 element interfejsu"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "ustawił %1 element interfejsu"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "zaktualizował(a) stan %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "zaktualizował(a) stan %1 dla %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Nieznane wydarzenie"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "wysłał(a) wiadomość"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "wysłał(a) naklejkę"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "zaprosił(a) ponownie kogoś do pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "zaprosił(a) kogoś do pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "zmienił(a) swoją nazwę wyświetlaną"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "wycofał(a) zaproszenie użytkownika"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "odbanował(a) użytkownika"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "umieścił(a) użytkownika poza pokojem"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "zbanował(a) użytkownika w tym pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "ustawił(a) główny alias pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ustawił(a) nazwę pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "ustawił(a) temat"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "uaktualnił(a) wersję pokoju"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "utworzył(a) pokój"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "dodał(a) element interfejsu"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "usunął(ęła) element interfejsu"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ustawił(a) element interfejsu"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "uaktualnił(a) stan"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "rozpoczął(ęła) głosowanie"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Pomyślnie wysłano zgłoszenie."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1103,7 +1108,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Otwórz NeoChat w tym pokoju"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1141,7 +1146,7 @@ msgid "Attachment:"
|
||||
msgstr "Załącznik:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1197,7 +1202,7 @@ msgstr "Nadaj podpis załącznikowi..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Wyślij wiadomość…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1318,14 +1323,14 @@ msgstr "wysłał(a) naklejkę"
|
||||
msgid "No emojis"
|
||||
msgstr "Bez emoji"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No emojis"
|
||||
msgid "Emojis"
|
||||
msgstr "Bez emoji"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1337,17 +1342,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Wyślij położenie"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Zamknij"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Wiadomość tę wysłano ze sprawdzonego urządzenia"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Dodaj reakcję"
|
||||
@@ -1368,14 +1373,14 @@ msgstr "Odrzuć"
|
||||
msgid "Accept"
|
||||
msgstr "Zaakceptuj"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Powiadomienia"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1403,7 +1408,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1430,13 +1435,19 @@ msgstr "Wpisz swoje ID Matriksa"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID Matriksa:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "ID Matriksa:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Wczytywanie…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Już zalogowany"
|
||||
@@ -1491,6 +1502,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Wejdź"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Hasło"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1605,32 +1623,32 @@ msgstr "Głośność"
|
||||
msgid "Maximize"
|
||||
msgstr "Zmaksymalizuj"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Wybierz plik lokalny"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Obraz ze schowka"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Przeskocz do pierwszej nieprzeczytanej wiadomości"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Przeskocz do ostatniej wiadomości"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Przeciągnij tutaj elementy, aby je udostępnić"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1976,70 +1994,70 @@ msgstr "Administrator (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Potwierdź"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Szczegóły konta"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Usuń wyciszenie tego użytkownika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Wycisz tego użytkownika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Wyrzuć tego użytkownika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Zaproś tego użytkownika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Zbanuj tego użytkownika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Zbanuj użytkownika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Odbanuj tego użytkownika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Ustaw poziom uprawnień użytkownika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Usuń ostatnie wiadomości tego użytkownika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Usuń wiadomości"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Rozpocznij prywatną rozmowę"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Skopiuj odnośnik"
|
||||
@@ -2690,12 +2708,25 @@ msgstr "Aby rozpocząć, dołącz do dowolnego pokoju"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Szukaj w katalogu pokojów"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Rozpręż podgląd"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Wyciszony pokój"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Ustawienia pokoju"
|
||||
@@ -2758,7 +2789,7 @@ msgstr "Przełącz użytkownika"
|
||||
msgid "Open Settings"
|
||||
msgstr "Otwórz ustawienia"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat jest odłączony od sieci. Sprawdź swoje połączenie sieciowe."
|
||||
@@ -2836,49 +2867,56 @@ msgstr "Ustawienia"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Otwórz narzędzia programistów"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Poszukaj w tym pokoju"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Poszukaj"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Usuń pokój z ulubionych"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Dodaj pokój do ulubionych"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Poszukaj w tym pokoju"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Członkowie"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Poszukaj użytkownika w pokoju"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Zaproś użytkownika"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Zaproś użytkownika do pokoju"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2886,7 +2924,7 @@ msgstr[0] "%1 członek"
|
||||
msgstr[1] "%1 członków"
|
||||
msgstr[2] "%1 członków"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Brak liczby członków"
|
||||
@@ -3388,12 +3426,6 @@ msgstr "Nazwa:"
|
||||
msgid "Label:"
|
||||
msgstr "Etykieta:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Hasło"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3706,8 +3738,9 @@ msgid "General settings"
|
||||
msgstr "Ustawienia ogólne"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Zamknij na tackę systemową"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
323
po/pt/neochat.po
323
po/pt/neochat.po
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-06-24 10:17+0100\n"
|
||||
"Last-Translator: José Nuno Coelho Pires <zepires@gmail.com>\n"
|
||||
"Language-Team: Portuguese <kde-i18n-pt@kde.org>\n"
|
||||
@@ -19,80 +19,80 @@ msgstr ""
|
||||
"X-POFile-SpellExtra: Rusakov Quotient gif webp novaalcunha libQuotient\n"
|
||||
"X-POFile-SpellExtra: push Lat Lon\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Autenticação sem Sucesso: Código de Acesso inválido ou revogado"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Autenticação sem Sucesso: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Erro de Rede: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "O código de acesso não foi encontrado"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Talvez tenha sido removido?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Foi negado o sucesso ao porta-chaves."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Por favor permita ao NeoChat ler o código de acesso"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Sem sistemas de armazenamento de códigos disponíveis."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Instale por favor um sistema de chaves, p.ex. o KWallet ou o Gnome Keyring "
|
||||
"no Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Não é possível ler o código de acesso"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "O ficheiro é demasiado grande para ser transferido."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
"Contacte o administrador do seu servidor de Matrix para obter algum suporte."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Não foi possível criar a sala: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Não foi possível criar o espaço: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "O ID da sala a se que está a tentar ligar não é válido"
|
||||
@@ -205,16 +205,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (compilado com a %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Cliente para o protocolo de comunicações Matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Suporta o esquema de URL's 'matrix:'"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -647,34 +652,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Próprios Emojis"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Esta mensagem foi removida]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Esta mensagem foi removida: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[REDIGIDO]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REDIGIDO: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 utilizador: "
|
||||
msgstr[1] "%1 utilizadores: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -732,353 +737,353 @@ msgstr "Prioridade baixa"
|
||||
msgid "Spaces"
|
||||
msgstr "Espaços"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Hoje"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Ontem"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "O dia antes de ontem"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "um ficheiro"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "voltou a convidar o %1 para a sala"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "juntou-se à sala (repetido)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "convidou o %1 para a sala"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "juntou-se à sala"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "limpou o seu nome visível"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "mudou o seu nome visível para %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " e"
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "limpou o seu avatar"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "definiu um avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "actualizou o seu avatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "não mudou nada"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "retirou o convite de %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "rejeitou o convite"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "readmitiu o %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "readmitiu-se a si próprio"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "expulsou o %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "saiu da sala"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "expulsou o %1 da sala"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "expulsou o %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "expulsou-se a si próprio da sala"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "solicitou um convite"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "solicitou um convite pela razão: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "tornou alguém desconhecido"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "limpou o nome principal da sala"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "mudou o nome principal da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "limpou o nome da sala"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "mudou o nome da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "limpou o tópico"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "mudou o tópico para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "mudou o avatar da sala"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "activou a Codificação Ponto-a-Ponto"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "actualizou a sala para a versão %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "criou a sala na versão %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "mudou os níveis de permissões desta sala"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "mudou as listas de controlo de acesso do servidor para esta sala"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "adicionou o elemento %1"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "removeu o elemento %1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "configurou o elemento %1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "actualizou o estado de %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "actualizou o estado de %1 para %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Evento desconhecido"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "enviou uma mensagem"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "enviou um autocolante"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "voltou a convidar alguém para a sala"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "convidou alguém para a sala"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "mudou o seu nome visível"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "retirou o convite de um utilizador"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "readmitiu um utilizador"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "expulsou um utilizador da sala"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "expulsou um utilizador da sala"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "mudou o nome principal da sala"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "mudou o nome da sala"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "mudou o tópico"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "actualizou a versão da sala"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "criou a sala"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "adicionou um elemento"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "removeu um elemento"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "configurou um elemento"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "actualizou o estado"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "iniciou uma sondagem"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "O relatório foi enviado com sucesso."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1099,7 +1104,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Abrir o NeoChat nesta sala"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1137,7 +1142,7 @@ msgid "Attachment:"
|
||||
msgstr "Anexo:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1193,7 +1198,7 @@ msgstr "Definir uma legenda do anexo..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Enviar uma mensagem…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1306,13 +1311,13 @@ msgstr "Sem autocolantes"
|
||||
msgid "No emojis"
|
||||
msgstr "Sem emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emojis"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1323,17 +1328,17 @@ msgstr "Autocolantes"
|
||||
msgid "View Location"
|
||||
msgstr "Ver a Localização"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Esta mensagem foi enviada a partir de um dispositivo verificado"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reagir"
|
||||
@@ -1354,13 +1359,13 @@ msgstr "Rejeitar"
|
||||
msgid "Accept"
|
||||
msgstr "Aceitar"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Localizações"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Não se encontram localizações partilhadas nesta sala."
|
||||
@@ -1387,7 +1392,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1414,13 +1419,19 @@ msgstr "Indique o seu ID do Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID do Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "ID do Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "A carregar…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Já autenticado"
|
||||
@@ -1475,6 +1486,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Entrar"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1588,32 +1606,32 @@ msgstr "Volume"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximizar"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Escolher um ficheiro local"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Imagem da área de transferência"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Ir para a primeira mensagem não-lida"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Ir para a última mensagem"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Arraste os itens para aqui para os partilhar"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1957,70 +1975,70 @@ msgstr "Administrador (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmação"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Detalhe da conta"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Reactivar este utilizador"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignorar este utilizador"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Expulsar este utilizador"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Convidar este utilizador"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Banir este utilizador"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Banir o Utilizador"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Aceitar este utilizador"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Editar o nível de permissões do utilizador"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Remover as mensagens recentes deste utilizador"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Remover as Mensagens"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Abrir uma conversa privada"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Copiar a ligação"
|
||||
@@ -2671,12 +2689,25 @@ msgstr "Junte-se a algumas salas para começar"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Procurar na lista de salas"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Expandir a antevisão"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Sala em silêncio"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configurar a sala"
|
||||
@@ -2737,7 +2768,7 @@ msgstr "Mudar de Utilizador"
|
||||
msgid "Open Settings"
|
||||
msgstr "Abrir a Configuração"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "O NeoChat está desligado. Verifique por favor a sua ligação à rede."
|
||||
@@ -2815,55 +2846,62 @@ msgstr "Opções"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Abrir as ferramentas de desenvolvimento"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Procurar nesta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Procurar"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Remover a sala dos favoritos"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Adicionar a sala aos favoritos"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Mostrar as localizações desta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Procurar um utilizador nesta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Convidar um Utilizador"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Convidar o utilizador para a sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 membro"
|
||||
msgstr[1] "%1 membros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Sem número de membros"
|
||||
@@ -3364,12 +3402,6 @@ msgstr "Nome:"
|
||||
msgid "Label:"
|
||||
msgstr "Nome:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3670,8 +3702,9 @@ msgid "General settings"
|
||||
msgstr "Configuração geral"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Fechar para a bandeja"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-05 18:06-0300\n"
|
||||
"Last-Translator: Luiz Fernando Ranghetti <elchevive@opensuse.org>\n"
|
||||
"Language-Team: Brazilian Portuguese <kde-i18n-pt_BR@kde.org>\n"
|
||||
@@ -18,79 +18,79 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "O login falhou: Chave de acesso inválida ou revogada"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Falha ao entrar: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Erro de rede: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "O token de acesso não foi encontrado"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Talvez ele foi excluído?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "O acesso ao chaveiro foi negado."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Permita que o NeoChat leia o token de acesso"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Nenhum chaveiro disponível."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr "Instale um chaveiro, como o KWallet ou GNOME Keyring no Linux."
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Não foi possível ler o token de acesso"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Criação de sala falhou: \"%1\""
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Criação de sala falhou: \"%1\""
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "O id da sala em que você está tentando entrar não é válido"
|
||||
@@ -203,17 +203,22 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (compilado com %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Cliente para o protocolo de comunicação Matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Supports appstream: url scheme"
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Suporte ao esquema appstream: url"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -707,34 +712,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Emoji personalizado"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Esta mensagem foi excluída]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Esta mensagem foi excluída: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[CENSURADO]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[CENSURADO: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -794,277 +799,277 @@ msgstr "Prioridade baixa"
|
||||
msgid "Spaces"
|
||||
msgstr "Espaços"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Hoje"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Ontem"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Anteontem"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "um arquivo"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "%1 foi convidado para a sala novamente"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "entrou na sala (novamente)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 foi convidado para a sala"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "entrou na sala"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "limpou seu nome de exibição"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "alterou seu nome de exibição para %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " e "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "limpou seu ícone de usuário"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "definir um ícone de usuário"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "atualizou seu ícone de usuário"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "cancelou o convite de %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "rejeitou o convite"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "%1 teve seu ban removido"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "removeu seu próprio ban"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "removeu %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "saiu da sala"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "baniu %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "baniu %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "baniu a si mesmo da sala"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "solicitou um convite"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "requested an invite"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "solicitou um convite"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "fez algo desconhecido"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "limpou o apelido principal da sala"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "definiu o apelido principal da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "limpou o nome da sala"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "definiu o nome da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "limpou o assunto da sala"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "definiu o assunto da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "alterou o ícone da sala"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "ativou criptografia ponta-a-ponta"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "atualizou a sala para a versão %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "criou a sala, versão %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "alterou os níveis de poderes desta sala"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "alterou as listas de controle de acesso do servidor para esta sala"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "adicionou widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "removeu widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "configurou widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "atualizou o estado %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "atualizou o estado %1 for %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Evento desconhecido"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send a message…"
|
||||
msgid "sent a message"
|
||||
msgstr "Enviar uma mensagem…"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "%1 foi convidado para a sala novamente"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "%1 foi convidado para a sala"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
@@ -1072,99 +1077,99 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "alterou seu nome de exibição para %1"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "cancelou o convite de %1"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "%1 teve seu ban removido"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "removeu %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "baniu %1 da sala: %2"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
msgid "set the room main alias"
|
||||
msgstr "definiu o apelido principal da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
msgid "set the room name"
|
||||
msgstr "definiu o nome da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "definiu o assunto da sala para: %1"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "atualizou a sala para a versão %1"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "saiu da sala"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] added <name> widget"
|
||||
#| msgid "added %1 widget"
|
||||
msgid "added a widget"
|
||||
msgstr "adicionou widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] removed <name> widget"
|
||||
#| msgid "removed %1 widget"
|
||||
msgid "removed a widget"
|
||||
msgstr "removeu widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[User] configured <name> widget"
|
||||
#| msgid "configured %1 widget"
|
||||
msgid "configured a widget"
|
||||
msgstr "configurou widget %1"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "atualizou o estado %1"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Password changed successfully"
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Senha alterada com sucesso"
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1185,7 +1190,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Abrir o NeoChat nesta sala"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1223,7 +1228,7 @@ msgid "Attachment:"
|
||||
msgstr "Anexo:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1280,7 +1285,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Enviar uma mensagem…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1409,14 +1414,14 @@ msgstr "Adiciona palavra"
|
||||
msgid "No emojis"
|
||||
msgstr "Emoji personalizado"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Custom Emoji"
|
||||
msgid "Emojis"
|
||||
msgstr "Emoji personalizado"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1428,17 +1433,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Enviar convite"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reagir"
|
||||
@@ -1459,14 +1464,14 @@ msgstr "Rejeitar"
|
||||
msgid "Accept"
|
||||
msgstr "Aceitar"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Mostrar notificações"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1494,7 +1499,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1521,13 +1526,19 @@ msgstr "Digite seu ID do Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID do Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "ID do Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Carregando..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1582,6 +1593,15 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Entrar"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1697,32 +1717,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Escolher arquivo local"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Imagem da área de transferência"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Ir para primeira mensagem não lida"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Ir para a mensagem mais antiga"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Arraste itens aqui para compartilhar"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -2046,74 +2066,74 @@ msgstr "Administrador"
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Detalhes da conta"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Não ignorar mais este usuário"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignorar este ignorar"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Remover este usuário"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ignore this user"
|
||||
msgid "Invite this user"
|
||||
msgstr "Ignorar este ignorar"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Banir este usuário"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ban this user"
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Banir este usuário"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Desbanir este usuário"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Delete recent messages by this user"
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Excluir mensagens recentes deste usuário"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Editar mensagem"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Abrir um bate-papo privado:"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Copy"
|
||||
msgid "Copy link"
|
||||
@@ -2787,13 +2807,26 @@ msgstr "Entre em algumas salas para começar"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Pesquisar na lista de salas"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "%1 teve seu ban removido"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "Mudo"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configurar sala"
|
||||
@@ -2861,7 +2894,7 @@ msgstr ""
|
||||
msgid "Open Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "O NeoChat está offline. Verifique sua conexão de rede."
|
||||
@@ -2941,52 +2974,59 @@ msgstr "Opções:"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search in this room"
|
||||
msgstr "Abrir o NeoChat nesta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Remover sala dos favoritos"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Marcar sala como favorito"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Abrir o NeoChat nesta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search user in room"
|
||||
msgstr "Abrir o NeoChat nesta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Convidar um usuário"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 invited you to a room"
|
||||
msgid "Invite user to room"
|
||||
msgstr "%1 convidou você para uma sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -2995,7 +3035,7 @@ msgid_plural "%1 members"
|
||||
msgstr[0] "%1 membro"
|
||||
msgstr[1] "%1 membros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3529,14 +3569,6 @@ msgstr "Nome:"
|
||||
msgid "Label:"
|
||||
msgstr "Legenda:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3865,8 +3897,9 @@ msgid "General settings"
|
||||
msgstr "Configurações gerais:"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Fechar para a área de notificação"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
323
po/ru/neochat.po
323
po/ru/neochat.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-04-27 15:01+0300\n"
|
||||
"Last-Translator: Olesya Gerasimenko <translation-team@basealt.ru>\n"
|
||||
"Language-Team: Basealt Translation Team\n"
|
||||
@@ -19,81 +19,81 @@ msgstr ""
|
||||
"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Ошибка входа в систему: токен доступа недействителен или отозван"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Ошибка входа в систему: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Ошибка сети: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Не найден токен доступа"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Возможно, он был удалён."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Не удалось получить доступ к связке ключей."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Разрешите приложению NeoChat прочитать токен доступа"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Нет ни одной доступной связки ключей."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Установите приложение, предоставляющее службу связки ключей, например "
|
||||
"KWallet или Gnome Keyring."
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Не удалось прочитать токен доступа"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Слишком большой файл для загрузки."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Обратитесь за помощью к администратору сервера Matrix."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Не удалось создать комнату: «%1»"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Не удалось создать комнату: «%1»"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Недействительный идентификатор комнаты, в которую вы хотите войти"
|
||||
@@ -208,16 +208,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (собрано с версией %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Клиент для протокола связи Matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Адрес, соответствующий схеме Matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -656,27 +661,27 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Не найдено ни одного эмодзи"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Это сообщение было удалено]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Cообщение было удалено: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[ОТРЕДАКТИРОВАНО]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ОТРЕДАКТИРОВАНО: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -685,7 +690,7 @@ msgstr[1] "%1 пользователя: "
|
||||
msgstr[2] "%1 пользователей: "
|
||||
msgstr[3] "1 пользователь: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -747,353 +752,353 @@ msgstr "С низким приоритетом"
|
||||
msgid "Spaces"
|
||||
msgstr "Пространства"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Сегодня"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Вчера"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Позавчера"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "файл"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "%1 повторно приглашен(а) в комнату"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "вошёл в комнату (повторно)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "пригласил(а) %1 в комнату"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "вошёл в комнату"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "удалил(а) отображаемое имя"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "изменил(а) отображаемое имя на %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " и "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "убрал(а) своё изображение пользователя"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "выбрал(а) изображение пользователя"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "изменил(а) своё изображение пользователя"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "ничего не поменял(а)"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "отозвал(а) приглашение %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "отклонил(а) приглашение"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "разблокировал(а) %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "разблокировал(а) себя"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "выгнал(а) %1 из комнаты: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "покинул(а) комнату"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "заблокировал(а) %1 в этой комнате"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "заблокировал(а) %1 в комнате: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "заблокировал(а) себя в этой комнате"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "запросил(а) приглашение"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "запросил(а) приглашение с пояснением причины: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "сделал(а) что-то неизвестное"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "убрал(а) основной псевдоним комнаты"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "сменил(а) основной псевдоним комнаты на «%1»"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "убрал(а) имя комнаты"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "сменил(а) имя комнаты на «%1»"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "убрал(а) тему"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "сменил(а) тему на «%1»"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "изменил(а) изображение комнаты"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "включил(а) сквозное шифрование"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "обновил(а) комнату до версии %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "создал(а) комнату версии %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "изменил(а) уровни доступа этой комнаты"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "изменил(а) списки контроля доступа для этой комнаты на сервере"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "добавил(а) виджет «%1»"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "удалил(а) виджет %1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "настроил(а) виджет %1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "изменил(а) свойство %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "изменил(а) свойство %1 для %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Неизвестное событие"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "отправил(а) сообщение"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "отправил(а) наклейку"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "повторно пригласил(а) кого-то в комнату"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "пригласил(а) кого-то в комнату"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "изменил(а) отображаемое имя"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "отозвал(а) приглашение пользователя"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "разблокировал(а) пользователя"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "выгнал(а) пользователя из комнаты"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "заблокировал(а) пользователя в этой комнате"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "выбрал(а) основной псевдоним комнаты"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "выбрал(а) имя комнаты"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "выбрал(а) тему"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "обновил(а) версию комнаты"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "создал(а) комнату"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "добавил(а) виджет"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "удалил(а) виджет"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "настроил(а) виджет"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "обновил(а) состояние"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "запустил(а) голосование"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Жалоба отправлена."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1114,7 +1119,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Открыть эту комнату в NeoChat"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1152,7 +1157,7 @@ msgid "Attachment:"
|
||||
msgstr "Вложение:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1208,7 +1213,7 @@ msgstr "Задать подпись для вложения…"
|
||||
msgid "Send a message…"
|
||||
msgstr "Введите текст сообщения…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1329,14 +1334,14 @@ msgstr "отправил(а) наклейку"
|
||||
msgid "No emojis"
|
||||
msgstr "Не найдено ни одного эмодзи"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No emojis"
|
||||
msgid "Emojis"
|
||||
msgstr "Не найдено ни одного эмодзи"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1347,17 +1352,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Отправить приглашение"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Закрыть"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Это сообщение было отправлено с проверенного устройства"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Реакция"
|
||||
@@ -1378,14 +1383,14 @@ msgstr "Отклонить"
|
||||
msgid "Accept"
|
||||
msgstr "Принять"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Уведомления"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1413,7 +1418,7 @@ msgid "Url:"
|
||||
msgstr "Адрес:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1440,13 +1445,19 @@ msgstr "Введите свой идентификатор Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Идентификатор Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "Идентификатор Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Загрузка..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Вход уже выполнен"
|
||||
@@ -1501,6 +1512,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Войти"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1616,32 +1634,32 @@ msgstr "Громкость"
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Выберите файл на компьютере"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Изображение из буфера обмена"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Перейти к первому непрочитанному сообщению"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Перейти к последнему сообщению"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Чтобы опубликовать файла, перетащите их сюда"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1971,70 +1989,70 @@ msgstr "Администратор (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Подтвердить"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Информация о учётной записи"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Перестать игнорировать этого пользователя"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Игнорировать этого пользователя"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Выгнать этого пользователя"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Пригласить этого пользователя"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Заблокировать этого пользователя"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Блокирование пользователя"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Разблокировать этого пользователя"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Установить уровень возможностей пользователя"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Удалить последние сообщения этого пользователя"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Удаление сообщений"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Открыть личный чат"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Копировать ссылку"
|
||||
@@ -2688,12 +2706,25 @@ msgstr "Чтобы начать, войдите в комнату"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Искать в каталоге комнат"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Expand preview"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Увеличить область предварительного просмотра"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Уведомления отключены"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Настроить комнату"
|
||||
@@ -2756,7 +2787,7 @@ msgstr "Сменить учётную запись"
|
||||
msgid "Open Settings"
|
||||
msgstr "Настроить"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr ""
|
||||
@@ -2835,49 +2866,56 @@ msgstr "Параметры"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Открыть инструменты разработчика"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Искать в этой комнате"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Поиск"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Убрать комнату из избранного"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Добавить комнату в избранное"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Искать в этой комнате"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Участники"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Искать пользователя в комнате"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Пригласить пользователя"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Пригласить пользователя в комнату"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2886,7 +2924,7 @@ msgstr[1] "%1 участника"
|
||||
msgstr[2] "%1 участников"
|
||||
msgstr[3] "%1 участник"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Количество участников не подсчитывается"
|
||||
@@ -3398,12 +3436,6 @@ msgstr "Имя:"
|
||||
msgid "Label:"
|
||||
msgstr "Метка:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3717,8 +3749,9 @@ msgid "General settings"
|
||||
msgstr "Основные параметры"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Сворачивать в системный лоток"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
327
po/sk/neochat.po
327
po/sk/neochat.po
@@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2022-04-18 17:58+0200\n"
|
||||
"Last-Translator: Roman Paholik <wizzardsk@gmail.com>\n"
|
||||
"Language-Team: Slovak <kde-sk@linux.sk>\n"
|
||||
@@ -16,81 +16,81 @@ msgstr ""
|
||||
"X-Generator: Lokalize 21.12.3\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Prihlásenie zlyhalo: Prístupový token je neplatný alebo odvolaný"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Prihlásenie zlyhalo: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Chyba siete: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Access Token (Optional)"
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Prístupový token (voliteľný)"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No users available"
|
||||
msgid "No keychain available."
|
||||
msgstr "Nie sú k dispozícii žiadni používatelia"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Vytvorenie miestnosti zlyhalo: \"%1\""
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Room creation failed: \"%1\""
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Vytvorenie miestnosti zlyhalo: \"%1\""
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Miestnosť, do ktorej sa pokúšate pripojiť, je neplatná"
|
||||
@@ -209,17 +209,22 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Klient pre komunikačný protokol matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Supports appstream: url scheme"
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Podporuje appstream: url schému"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -733,27 +738,27 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Vlastné"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Táto správa bola odstránená]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Táto správa bola odstránená: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[REVIDOVANÉ]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[REVIDOVANÉ: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -761,7 +766,7 @@ msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "[action 1], [action 2 and action 3]"
|
||||
#| msgid ", "
|
||||
@@ -823,278 +828,278 @@ msgstr "Nízka priorita"
|
||||
msgid "Spaces"
|
||||
msgstr "Medzery"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Dnes"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Včera"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Predvčerom"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "súbor"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "znovu pozval %1 do miestnosti"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "pripojil sa k miestnosti (opakovane)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "pozval %1 do miestnosti"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "sa pripojil k miestnosti"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "vymazali svoje zobrazované meno"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "zmenili svoje zobrazované meno na %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " a "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "vymazali svojho avatara"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "nastavil avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "aktualizovali avatara"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "stiahol pozvanie %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "odmietol pozvanie"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "zrušený zákaz prístupu %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "dal %1 z miestnosti: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "opustil miestnosť"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "zakázal %1 z miestnosti: %2"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "zakázal %1 z miestnosti: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "rejected the invitation"
|
||||
msgid "requested an invite"
|
||||
msgstr "odmietol pozvanie"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "rejected the invitation"
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "odmietol pozvanie"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "urobil niečo neznáme"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "vyčistil hlavný alias miestnosti"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "nastaviť hlavný alias miestnosti na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "vyčistil názov miestnosti"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "nastavil názov miestnosti na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "vyčistil tému"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "nastavil tému na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "zmenil avatara miestnosti"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "aktivoval End-to-End šifrovanie"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "Aktualizoval miestnosť na verziu %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "vytvoril miestnosť, verzia %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "aktualizoval %1 stav"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "aktualizoval %1 stav pre %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Neznáma udalosť"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send message"
|
||||
msgid "sent a message"
|
||||
msgstr "Odoslať správu"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "reinvited %1 to the room"
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "znovu pozval %1 do miestnosti"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "invited someone to the room"
|
||||
msgstr "pozval %1 do miestnosti"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "their refers to a singular user"
|
||||
#| msgid "changed their display name to %1"
|
||||
@@ -1102,94 +1107,94 @@ msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "zmenili svoje zobrazované meno na %1"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "withdrew %1's invitation"
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "stiahol pozvanie %1"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgid "unbanned a user"
|
||||
msgstr "zrušený zákaz prístupu %1"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "has put %1 out of the room: %2"
|
||||
msgid "put a user out of the room"
|
||||
msgstr "dal %1 z miestnosti: %2"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "banned %1 from the room: %2"
|
||||
msgid "banned a user from the room"
|
||||
msgstr "zakázal %1 z miestnosti: %2"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room main alias to: %1"
|
||||
msgid "set the room main alias"
|
||||
msgstr "nastaviť hlavný alias miestnosti na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the room name to: %1"
|
||||
msgid "set the room name"
|
||||
msgstr "nastavil názov miestnosti na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "set the topic to: %1"
|
||||
msgid "set the topic"
|
||||
msgstr "nastavil tému na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "upgraded the room to version %1"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "Aktualizoval miestnosť na verziu %1"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "left the room"
|
||||
msgid "created the room"
|
||||
msgstr "opustil miestnosť"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgid "removed a widget"
|
||||
msgstr "Upraviť správu"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "updated %1 state"
|
||||
msgid "updated the state"
|
||||
msgstr "aktualizoval %1 stav"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Password changed successfully"
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Heslo úspešne zmenené"
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1211,7 +1216,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Otvoriť NeoChat v tejto miestnosti"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1252,7 +1257,7 @@ msgid "Attachment:"
|
||||
msgstr "Príloha:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1311,7 +1316,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Odoslať správu"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1439,14 +1444,14 @@ msgstr "Upraviť zariadenie"
|
||||
msgid "No emojis"
|
||||
msgstr "Vlastné"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Custom"
|
||||
msgid "Emojis"
|
||||
msgstr "Vlastné"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1458,17 +1463,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Odoslať pozvanie"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Zatvoriť"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reagovať"
|
||||
@@ -1489,14 +1494,14 @@ msgstr "Odmietnuť"
|
||||
msgid "Accept"
|
||||
msgstr "Prijať"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Zobraziť upozornenia"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1524,7 +1529,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1551,13 +1556,19 @@ msgstr "Zadajte svoje Matrix ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Načítava sa…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1612,6 +1623,15 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Prihlásenie"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1726,32 +1746,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Vybrať miestny súbor"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Obrázok schránky"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Skočiť na prvú neprečítanú správu"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Prejsť na najnovšiu správu"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Presuňte položky sem na zdieľanie"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -2075,73 +2095,73 @@ msgstr "Správca"
|
||||
msgid "Confirm"
|
||||
msgstr "Potvrdiť"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Podrobnosti konta"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Prestať ignorovať tohto požívateľa"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignorovať tohto používateľa"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Vyhodiť tohto používateľa"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ignore this user"
|
||||
msgid "Invite this user"
|
||||
msgstr "Ignorovať tohto používateľa"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Zakázať tomuto používateľovi prístup"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ban this user"
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Zakázať tomuto používateľovi prístup"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Povoliť tomuto používateľovi prístup"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Upraviť správu"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Otvoriť súkromný chat"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Copy"
|
||||
msgid "Copy link"
|
||||
@@ -2817,13 +2837,26 @@ msgstr "Pripojte sa k niektorým miestnostiam a začnite"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Vyhľadajte v adresári miestnosti"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "unbanned %1"
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "zrušený zákaz prístupu %1"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "Stlmený"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Nastaviť miestnosť"
|
||||
@@ -2891,7 +2924,7 @@ msgstr ""
|
||||
msgid "Open Settings"
|
||||
msgstr "Nastavenia"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat je offline. Skontrolujte svoje sieťové pripojenie."
|
||||
@@ -2971,52 +3004,59 @@ msgstr "Voľby:"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search in this room"
|
||||
msgstr "Otvoriť NeoChat v tejto miestnosti"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Odstrániť miestnosť z obľúbených"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Nastaviť miestnosť ako pbľúbenú"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Otvoriť NeoChat v tejto miestnosti"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Členovia"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search user in room"
|
||||
msgstr "Otvoriť NeoChat v tejto miestnosti"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Pozvať používateľa"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "Invite user to room"
|
||||
msgstr "pozval %1 do miestnosti"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -3026,7 +3066,7 @@ msgstr[0] "%1 Člen"
|
||||
msgstr[1] "%1 Členovia"
|
||||
msgstr[2] "%1 Členov"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3555,14 +3595,6 @@ msgstr "Meno:"
|
||||
msgid "Label:"
|
||||
msgstr "Popis:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3885,8 +3917,9 @@ msgid "General settings"
|
||||
msgstr "Všeobecné nastavenia:"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Zatvoriť do systémovej lišty"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
329
po/sl/neochat.po
329
po/sl/neochat.po
@@ -8,89 +8,89 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 08:32+0200\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 08:37+0200\n"
|
||||
"Last-Translator: Matjaž Jeran <matjaz.jeran@amis.net>\n"
|
||||
"Language-Team: Slovenian <lugos-slo@lugos.si>\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
|
||||
"%100==4 ? 3 : 0);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
||||
"%100<=4 ? 2 : 3);\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Neuspela prijava: Žeton za dostop je neveljaven ali preklican"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Prijava je spodletela: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Napaka omrežja: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Žetona za dostop ni bilo mogoče najti"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Ali je bil mogoče izbrisan?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Dostop do verige ključev je bil zavrnjen."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Dovolite, da NeoChat prebere žeton za dostop"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Nobene verige ključev ni na voljo."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr "Namestite verigo ključev, npr. KWallet ali GNOME Keyring v Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Žetona za dostop ni mogoče prebrati"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Datoteka je prevelika za prenos."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Stopite v stik za podporo z vašim skrbnikom matrixa."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Ustvarjanje sobe ni uspelo: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Ustvarjanje prostora ni uspelo: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Identifikacija sobe, kamor se poskušate pridružiti, ni veljavna"
|
||||
@@ -202,16 +202,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (zgrajeno na %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Odjemalec za komunikacijski protokol matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Podpira matriko: shema url"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "Prezri vse napake SSL npr. nepodpisana potrdila."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -646,27 +651,27 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Lastni čustvenčki"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[To sporočilo je bilo izbrisano]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[To sporočilo je bilo izbrisano: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[PREKRIVANJE PODATKOV]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[PREKRIVANJE PODATKOV: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -675,7 +680,7 @@ msgstr[1] "%1 uporabnika: "
|
||||
msgstr[2] "%1 uporabniki: "
|
||||
msgstr[3] "%1 uporabnikov: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -737,353 +742,353 @@ msgstr "Nizka prednost"
|
||||
msgid "Spaces"
|
||||
msgstr "Presledki"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Danes"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Včeraj"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Predvčerajšnjim"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "datoteka"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "ponovno povabljen %1 v sobo"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "se je pridružil v sobi (ponovno)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "povabljen %1 v sobo"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "se je pridružil v sobi"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "je očistil njihovo ime prikaza"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "je spremenil ime prikaza na %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " in "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "je očistil njihov avatar"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "nastavi avatarja"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "posodobil njihov avatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "nič ni spremenjenega"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "je umaknil povabilo %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "zavrnil povabilo"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "brez prepovedi %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "sama rešena prepovedi"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "je postavil %1 ven iz sobe: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "je zapustil sobo"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "prepovedan %1 iz sobe"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "je prepovedal %1 v sobo: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "samo-prepovedano iz sobe"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "je zahteval povabilo"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "je zahteval povabilo z razlogom: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "je naredil nekaj neznanega"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "je očistil glavni vzdevek sobe"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "nastavi vzdevek sobe na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "je obrisal ime sobe"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "je nastavil ime sobe na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "je očistil temo debate"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "je nastavil temo debate na: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "je spremenil avatar sobe"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "je aktiviral šifriranje od točke do točke"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "je nadgradil sobo na verzijo %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "je ustvaril sobo verzije %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "spremenil ravni moči za to sobo"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "spremenil sezname za nadzor dostopa do strežnika za to sobo"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "dodan gradnik %1"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "odstranjen gradnik %1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "nastavljen gradnik %1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "je posodobil stanje %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "je posodobil stanje %1 za %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Neznan dogodek"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "je poslal sporočilo"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "je poslal nalepko"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "je ponovno povabil nekoga v sobo"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "je povabil nekoga v sobo"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "je spremenil njihovo ime prikaza"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "je umaknil povabilo"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "je umaknil prepoved uporabnika"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "je postavil uporabnika iz sobe"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "je prepovedal uporabniku v sobo"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "je nastavil vzdevek sobe"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "je nastavil ime sobe"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "je nastavil temo debate"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "je nadgradil različico sobe"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "je ustvaril sobo"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "je dodaj gradnik"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "je odstranil gradnik"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "je nastavil gradnik"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "je posodobil stanje"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "je začel glasovanje"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Poročilo uspešno poslano."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1104,7 +1109,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Odpri Neo-chat v tej sobi"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1142,7 +1147,7 @@ msgid "Attachment:"
|
||||
msgstr "Priloga:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1198,7 +1203,7 @@ msgstr "Nastavite napis priloge..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Pošlji sporočilo…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1311,13 +1316,13 @@ msgstr "Ni nalepk"
|
||||
msgid "No emojis"
|
||||
msgstr "Ni emodžijev"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Čustvenčki"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1328,17 +1333,17 @@ msgstr "Nalepke"
|
||||
msgid "View Location"
|
||||
msgstr "Poglej lokacijo"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Zapri"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "To sporočilo je bilo poslano iz verificirane naprave"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reagiraj"
|
||||
@@ -1359,13 +1364,13 @@ msgstr "Zavračam"
|
||||
msgid "Accept"
|
||||
msgstr "Sprejemam"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Lokacije"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Ni deljenih lokacij v tej sobi."
|
||||
@@ -1392,7 +1397,7 @@ msgid "Url:"
|
||||
msgstr "Spletni naslov:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1419,13 +1424,18 @@ msgstr "Vnesite vaš Matrix ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrixov ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrixov ID"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Nalaganje…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Ste že prijavljeni"
|
||||
@@ -1480,6 +1490,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Prijava"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Geslo"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1594,32 +1611,32 @@ msgstr "Glasnost"
|
||||
msgid "Maximize"
|
||||
msgstr "Razpni"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Izberi lokalno datoteko"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Slika odložišča"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Skoči na prvo neprebrano sporočilo"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Skoči na nedavno sporočilo"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Povleci predmete sem, da jih deliš z drugimi"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1958,70 +1975,70 @@ msgstr "Skrbnik (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Potrdi"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Podrobnosti računa"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Ne prezri tega uporabnika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Prezri tega uporabnika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Brcni tega uporabnika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Povabi tega uporabnika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Prepovej tega uporabnika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Prepovej uporabnika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Prekini prepoved temu uporabniku"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Uredi raven moči uporabnika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Odstrani nedavna sporočila tega uporabnika"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Odstrani sporočila"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Odpri zasebni razgovor"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Kopiraj povezavo"
|
||||
@@ -2672,12 +2689,24 @@ msgstr "Pridruži se nekaj sobam za začetek"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Poišči v imeniku sob"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr "Strni %1"
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Razširi %1"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Utišana soba"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Nastavi sobo"
|
||||
@@ -2738,7 +2767,7 @@ msgstr "Preklopi uporabnika"
|
||||
msgid "Open Settings"
|
||||
msgstr "Odpri nastavitve"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat je brez povezave. Preverite omrežno povezavo."
|
||||
@@ -2767,12 +2796,12 @@ msgstr "Debata"
|
||||
#: src/qml/Page/StartChatPage.qml:93
|
||||
#, kde-format
|
||||
msgid "Join existing chat"
|
||||
msgstr "Pridružite se obstoječemu klepetu"
|
||||
msgstr "Pridružite se obstoječem klepetu"
|
||||
|
||||
#: src/qml/Page/StartChatPage.qml:114
|
||||
#, kde-format
|
||||
msgid "Create new chat"
|
||||
msgstr "Ustvari novi klepet"
|
||||
msgstr "Ustvari nov klepet"
|
||||
|
||||
#: src/qml/Page/WelcomePage.qml:56
|
||||
#, kde-format
|
||||
@@ -2814,48 +2843,54 @@ msgstr "Možnosti"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Odpri razvojna orodja"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Išči v tej sobi"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Išči"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Odstrani sobo izmed priljubljenih"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Proglasi sobo za priljubljeno"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Pokaži lokacije za to sobo"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Člani"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Išči uporabnika v sobi"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Povabi uporabnika"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Povabite uporabnika v sobo"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2864,7 +2899,7 @@ msgstr[1] "%1 člana"
|
||||
msgstr[2] "%1 člani"
|
||||
msgstr[3] "%1 članov"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Ni števila članov"
|
||||
@@ -3362,12 +3397,6 @@ msgstr "Ime:"
|
||||
msgid "Label:"
|
||||
msgstr "Oznaka:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Geslo"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3664,8 +3693,8 @@ msgstr "Splošne nastavitve"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Zapri na sistemski pladenj"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Prikaži na sistemskem pladnju"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
340
po/sv/neochat.po
340
po/sv/neochat.po
@@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 06:32+0200\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 06:35+0200\n"
|
||||
"Last-Translator: Stefan Asserhäll <stefan.asserhall@bredband.net>\n"
|
||||
"Language-Team: Swedish <kde-i18n-doc@kde.org>\n"
|
||||
"Language: sv\n"
|
||||
@@ -17,78 +17,78 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 20.08.1\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Inloggning misslyckades: Åtkomstsymbol ogiltig eller återkallad"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Inloggning misslyckades: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Nätverksfel: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Åtkomstsymbol hittades inte"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Kanske har den tagits bort?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Åtkomst till nyckelkedja nekades."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Ge NeoChat tillåtelse att läsa åtkomstsymbolen"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Ingen nyckelkedja tillgänglig."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Installera en nyckelkedja, t.ex. plånboken eller GNOME-nyckelring på Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Kan inte läsa åtkomstsymbol"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Filen är för stor att ladda ner"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Kontakta matrix-serveradministratören för support."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Misslyckades skapa rum: \"%1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Misslyckades skapa utrymme: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Identifikationen för rummet som du försöker gå med i är inte giltig"
|
||||
@@ -200,16 +200,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (byggd med %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Klient för kommunikationsprotokollet Matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Stöder matrix: webbadresschema"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "Ignorera alla SSL-fel, t.ex. osignerade certifikat."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -640,34 +645,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Egna emoji"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Meddelandet har tagits bort]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Meddelandet har tagits bort: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[ÄNDRAD]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ÄNDRAD: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 användare: "
|
||||
msgstr[1] "%1 användare: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -725,353 +730,353 @@ msgstr "Låg prioritet"
|
||||
msgid "Spaces"
|
||||
msgstr "Utrymmen"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Idag"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Igår"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Förrgår"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "en fil"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "bjöd in %1 till rummet igen"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "gick med i rummet (upprepat)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "bjöd in %1 till rummet"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "gick med i rummet"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "tog bort sitt visningsnamn"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "ändrade sitt visningsnamn till %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " och "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "tog bort sin avatar"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "tilldela en avatar"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "uppdaterade sin avatar"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "ändrade ingenting"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "drog tillbaka inbjudan av %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "nekade till inbjudan"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "tog bort bannlysning av %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "tog bort bannlysning av sig själv"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "har flyttat %1 utanför rummet: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "lämnade rummet"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "bannlyste %1 från rummet"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "bannlyste %1 från rummet: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "bannlyste sig själv från rummet"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "frågade efter en inbjudan"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "frågade efter en inbjudan med orsaken: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "gjorde någonting okänt"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "tog bort rummets huvudsakliga alias"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "ställde in rummets huvudsakliga alias till: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "tog bort rummets namn"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "ställ in rummets namn till: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "tog bort ämnet"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "ställ in ämnet till: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "ändrade rummets avatar"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "aktiverade kryptering hela vägen"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "uppgraderade rummet till version %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "skapade rummet, version %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "ändrade rummets effektnivåer"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "ändrade serverns åtkomstkontrollista för rummet"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "lade till grafisk komponent %1"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "tog bort grafisk komponent %1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "ställde in grafisk komponent %1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "uppdaterade tillstånd %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "uppdaterade tillstånd %1 för %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Okänd händelse"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "skickade ett meddelande"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "skickade ett klistermärke"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "bjöd in någon till rummet igen"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "bjöd in någon till rummet"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ändrade sitt visningsnamn"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "drog tillbaka en användares inbjudan"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "tog bort bannlysning av en användare"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "flyttade en användare utan ur rummet"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "bannlyste en användare från rummet"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "ställde in rummets huvudsakliga alias"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "ställde in rummets namn"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "ställde in ämnet"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "uppgraderade rummets version"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "skapade rummet"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "lade till en grafisk komponent"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "tog bort en grafisk komponent"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ställde in en grafisk komponent"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "uppdaterade tillståndet"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "startade en opinionsundersökning"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Rapport skickades med lyckat resultat."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1092,7 +1097,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Öppna NeoChat för rummet"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1130,7 +1135,7 @@ msgid "Attachment:"
|
||||
msgstr "Bilaga:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1186,7 +1191,7 @@ msgstr "Lägg till en rubrik för bilagan..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Skicka ett meddelande…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1299,13 +1304,13 @@ msgstr "Inga klistermärken"
|
||||
msgid "No emojis"
|
||||
msgstr "Inga emoji"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emoji"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1316,17 +1321,17 @@ msgstr "Klistermärken"
|
||||
msgid "View Location"
|
||||
msgstr "Visa plats"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Stäng"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Meddelandet skickades från en verifierad enhet"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Reagera"
|
||||
@@ -1347,13 +1352,13 @@ msgstr "Avslå"
|
||||
msgid "Accept"
|
||||
msgstr "Acceptera"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Platser"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Det finns inga platser delade i rummet."
|
||||
@@ -1380,7 +1385,7 @@ msgid "Url:"
|
||||
msgstr "Webbadress:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1407,13 +1412,18 @@ msgstr "Ange Matrix-identifierare"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix-identifierare"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix-identifierare"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Läser in…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Redan inloggad"
|
||||
@@ -1468,6 +1478,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Logga in"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Lösenord"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1581,32 +1598,32 @@ msgstr "Volym"
|
||||
msgid "Maximize"
|
||||
msgstr "Maximera"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Välj lokal fil"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Klippbordsbild"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Gå till första olästa meddelande"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Gå till sista meddelande"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Dra objekt hit för att dela dem"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1942,70 +1959,70 @@ msgstr "Administratör (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Bekräfta"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Kontoinformation"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Sluta ignorera användaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ignorera användaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Kasta ut användaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Bjud in användaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Bannlys användaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Bannlys användare"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Sluta bannlysa användaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Ställ in användarens maktnivå"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Ta bort senaste meddelanden från användaren"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Ta bort meddelanden"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Starta en privat chatt"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Kopiera länk"
|
||||
@@ -2656,12 +2673,24 @@ msgstr "Gå med i några rum för att komma igång"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Sök i rumkatalog"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr "Dra ihop %1"
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Expandera %1"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Tystat rum"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Anpassa rum"
|
||||
@@ -2722,7 +2751,7 @@ msgstr "Byt användare"
|
||||
msgid "Open Settings"
|
||||
msgstr "Öppna inställningarna"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat är nedkopplat. Kontrollera nätverksanslutningen."
|
||||
@@ -2798,55 +2827,61 @@ msgstr "Alternativ"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Öppna utvecklingsverktyg"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Sök i rummet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Ta bort rum från favoriter"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Gör rum till favorit"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Visa platser för rummet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Medlemmar"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Sök användare i rummet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Bjud in en användare"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Bjöd in användare till ett rum"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 medlem"
|
||||
msgstr[1] "%1 medlemmar"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Ingen medlemsräkning"
|
||||
@@ -3347,12 +3382,6 @@ msgstr "Namn:"
|
||||
msgid "Label:"
|
||||
msgstr "Beteckning:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Lösenord"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3649,8 +3678,8 @@ msgstr "Allmänna inställningar"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Stäng till systembricka"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Visa i systembricka"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
@@ -4023,25 +4052,6 @@ msgstr "Visa"
|
||||
msgid "Quit"
|
||||
msgstr "Avsluta"
|
||||
|
||||
#~ msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
#~ msgstr "Ignorera alla SSL-fel, t.ex. osignerade certifikat."
|
||||
|
||||
#~ msgid "Matrix ID"
|
||||
#~ msgstr "Matrix-identifierare"
|
||||
|
||||
#~ msgctxt "Collapse <section name>"
|
||||
#~ msgid "Collapse %1"
|
||||
#~ msgstr "Dra ihop %1"
|
||||
|
||||
#~ msgctxt "Expand <section name"
|
||||
#~ msgid "Expand %1"
|
||||
#~ msgstr "Expandera %1"
|
||||
|
||||
#~| msgid "Invite a User"
|
||||
#~ msgctxt "@title"
|
||||
#~ msgid "Invite a User"
|
||||
#~ msgstr "Bjud in en användare"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgctxt "their refers to a singular user"
|
||||
#~| msgid "cleared their display name"
|
||||
|
||||
319
po/ta/neochat.po
319
po/ta/neochat.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 14:11+0530\n"
|
||||
"Last-Translator: Kishore G <kishore96@gmail.com>\n"
|
||||
"Language-Team: Tamil <kde-i18n-doc@kde.org>\n"
|
||||
@@ -17,79 +17,79 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 23.04.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
"நுழைவு தோல்வியடைந்தது: Access Token செல்லுபடியாகாதது அல்லது திரும்பப்பெறப்பட்டது"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "நுழைவு தோல்வியடைந்தது: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "பிணைய சிக்கல்: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "அணுகல் டோக்கன் கண்டுபிடிக்கப்படவில்லை"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "நீக்கப்பட்டுள்ளதா?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "சாவிக்கொத்தை அணுக முடியவில்லை"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "அணுகல் டோக்கனை படிக்க நியோச்சாட்டை அனுமதிக்கவும்"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "எந்த சாவிக்கொத்தும் கிடைக்கவில்லை"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"ஓர் சாவிக்கொத்து நிரலை நிறுவுங்கள், எ.கா. லினக்ஸில் KWallet அல்லது GNOME keyring."
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "அணுகல் டோக்கனை படிக்க முடியவில்லை"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "கோப்பு பெரிதாக இருப்பதால் பதிவிறக்க முடியாது."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "உதவிக்கு உங்கள் மேட்ரிக்ஸு சேவையக நிர்வாகியை தொடர்புகொள்ளுங்கள்."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "அரங்கு உருவாக்கம் தோல்வியடைந்தது: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "இட உருவாக்கம் தோல்வியடைந்தது: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "நீங்கள் சேர முயற்சிக்கும் அரங்கு செல்லுபடியாகாதது"
|
||||
@@ -201,16 +201,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (%2 கொண்டு தொகுக்கப்பட்டது)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix தொடர்பு நெறிமுறைக்கான வாங்கி"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "matrix: முகவரி திட்டமுறையை ஆதரிக்கும்"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "அனைத்து SSL சிக்கல்களையும் பொருட்படுத்தாதே (எ.கா. கையொப்பமிடா சான்றிதழ்கள்)."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -643,34 +648,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "சொந்த முகவடிகள்"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[இந்த செய்தி நீக்கப்பட்டது]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[இந்த செய்தி நீக்கப்பட்டது: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[தணிக்கை செய்யப்பட்டது]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[தணிக்கை செய்யப்பட்டது: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "1 பயனர்: "
|
||||
msgstr[1] "%1 பயனர்கள்: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -728,353 +733,353 @@ msgstr "முக்கியமில்லாதவை"
|
||||
msgid "Spaces"
|
||||
msgstr "இடங்கள்"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "இன்று"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "நேற்று"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "நேற்றுக்கு முந்தைய நாள்"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "ஒரு கோப்பு"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "%1 என்பவரை மறுபடியும் அரங்குக்கு வரவழைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "அரங்கில் சேர்ந்தார் (மறுபடியும்)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1 என்பவரை அரங்குக்கு வரவழைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "அரங்கில் சேர்ந்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "அவருடைய காட்டப்படும் பெயரை காலியாக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "அவருடைய காட்டப்படும் பெயரை %1 என்று மாற்றினார்"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " மற்றும் "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "அவருடைய சின்னத்தை காலியாக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "ஒரு சின்னத்தை அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "அவருடைய சின்னத்தை மாற்றினார்"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "எதையும் மாற்றவில்லை"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "%1 என்பவருக்கான அழைப்பை திரும்பப்பெற்றார்"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "அழைப்பை மறுத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "%1 மீதான தடையை நீக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "தன்மேல் உள்ள தடையை நீக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "%1 என்பவரை அரங்குக்கு வெளியே அனுப்பிவிட்டார்: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "அரங்கைவிட்டு வெளியேறினார்"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "%1 என்பவரை அரங்கிலிருந்து தடை செய்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "%1 என்பவரை அரங்கிலிருந்து தடை செய்தார்: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "தன்னை அரங்கிலிருந்து தடை செய்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "வரவழைப்பு கோரினார்"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "இக்காரணங்காட்டி வரவழைப்பு கோரினார்: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "எதையோ தெரியாதவாறு செய்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "அரங்கின் பிரதான மாற்றுப்பெயரை காலியாக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "அரங்கின் மாற்றுப்பெயரை %1 என்று அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "அரங்கின் பெயரை காலியாக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "அரங்கின் பெயரை %1 என்று அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "தலைப்பை காலியாக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "தலைப்பை %1 என்று அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "அரங்கின் சின்னத்தை மாற்றினார்"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "தொடக்கத்திலிருந்து முடிவுவரை மறையாக்கம் பயன்படுத்தப்படுவதை இயக்கியுள்ளார்"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "அரங்கை %1 பதிப்புக்கு மேம்படுத்தினார்"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "அரங்கை உருவாக்கினார், பதிப்பு %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "இந்த அரங்கிற்கான அனுமதிகளை மாற்றினார்"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "இந்த அரங்கிற்கான சேவையக அணுகல் கட்டுப்பாட்டு பட்டியலை மாற்றியுள்ளார்"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "%1 பலகையை சேர்த்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "%1 பலகையை நீக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "%1 பலகையை அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "%1 நிலையை புதுப்பித்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "%2 என்பதற்கு %1 நிலையை புதுப்பித்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "தெரியாத நிகழ்வு"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "செய்தியை அனுப்பினார்"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "ஒட்டியை அனுப்பினார்"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "ஒருவரை மறுபடியும் அரங்குக்கு வரவழைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "எவரையே அரங்குக்கு வரவழைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "தன் காட்சிப்பெயரை மாற்றினார்"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "ஒருவருக்கு விடுத்த வரவழைப்பை திரும்பப்பெற்றார்"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "ஒருவர் மீதான தடையை நீக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "ஒருவரை அரங்குகிலிருந்து வெளியே அனுப்பினார்"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "ஒருவரை அரங்கிலிருந்து தடை செய்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "அரங்கின் மாற்றுப்பெயரை அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "அரங்கின் பெயரை அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "தலைப்பை அமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "அரங்கின் பதிப்பை மேம்படுத்தினார்"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "அரங்கை உருவாக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "ஓர் உட்பொதிநிரலை சேர்த்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "ஓர் உட்பொதிநிரலை நீக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "ஓர் உட்பொதிநிரல் மாற்றியமைத்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "நிலையை புதுப்பித்தார்"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "கருத்தாய்வை துவக்கினார்"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "புகார் வெற்றிகரமாக அனுப்பப்பட்டுள்ளது."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1095,7 +1100,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "இந்த அரங்கில் நியோச்சாட்டை திற"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1133,7 +1138,7 @@ msgid "Attachment:"
|
||||
msgstr "உடனிணைப்பு:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1189,7 +1194,7 @@ msgstr "உடனிணைப்புக்கான தலைப்பை அ
|
||||
msgid "Send a message…"
|
||||
msgstr "செய்தியை அனுப்பு…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1302,13 +1307,13 @@ msgstr "ஒட்டிகள் இல்லை"
|
||||
msgid "No emojis"
|
||||
msgstr "முகவடிகள் இல்லை"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "முகவடிகள்"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1319,17 +1324,17 @@ msgstr "ஒட்டிகள்"
|
||||
msgid "View Location"
|
||||
msgstr "இருப்பிடத்தைக் காட்டு"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "மூடு"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "உறுதிப்படுத்தப்பட்டுள்ள சாதனத்திலிருந்து இச்செய்தி அனுப்பப்பட்டது"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "எதிர்வினையிடு"
|
||||
@@ -1350,13 +1355,13 @@ msgstr "மறு"
|
||||
msgid "Accept"
|
||||
msgstr "ஏற்றுக்கொள்"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "இருப்பிடங்கள்"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "இவ்வரங்கில் எந்த இருப்பிடமும் பகிரப்படவில்லை."
|
||||
@@ -1383,7 +1388,7 @@ msgid "Url:"
|
||||
msgstr "முகவரி:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1410,13 +1415,18 @@ msgstr "உங்கள் Matrix கணக்கின் பெயரை உ
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix கணக்குப்பெயர்:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix கணக்குப்பெயர்"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "ஏற்றப்படுகிறது…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "ஏற்கனவே நுழைந்துள்ளீர்கள்"
|
||||
@@ -1471,6 +1481,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "நுழை"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "கடவுச்சொல்"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1583,32 +1600,32 @@ msgstr "ஒலியளவு"
|
||||
msgid "Maximize"
|
||||
msgstr "அதிகபட்ச பெரிதாக்கு"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "உள்ளமைக் கோப்பைத் தேர்ந்தெடு"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "பிடிப்புப்பலகைப் படம்"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "படிக்காத முதல் செய்திக்குத் தாவு"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "கடைசி செய்திக்குத் தாவு"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "எதையாவது பகிர, அதை இங்கு இழுத்துப் போடுங்கள்"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1932,70 +1949,70 @@ msgstr "நிர்வாகி (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "உறுதிசெய்"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "கணக்கின் விவரங்கள்"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "இந்த பயனரை பொருட்படுத்தாமல் இருந்ததை செயல்தவிர்"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "இந்த பயனரை பொருட்படுத்தாதே"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "இந்த பயனரை வெளியேற்று"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "இந்த பயனரை வரவழை"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "இந்த பயனரை தடை செய்"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "பயனரை தடை செய்வது"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "இப்பயனர் மீதான தடையை நீக்கு"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "பயனரின் உரிமையளவை அமை"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "இப்பயனரின் சமீபத்திய செய்திகளை நீக்கு"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "செய்திகளை நீக்குவது"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "தனிப்பட்ட உரையாடலைத் துவக்கு"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "இணைப்பை நகலெடு"
|
||||
@@ -2646,12 +2663,24 @@ msgstr "தொடங்க, சில அரங்குகளில் சே
|
||||
msgid "Search in room directory"
|
||||
msgstr "அரங்குகளின் பட்டியலில் தேடுங்கள்"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr "%1 தனை சுருக்கு"
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "%1 தனை விரி"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "அடக்கப்பட்டுள்ள அரங்கு"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "அரங்கை அமை"
|
||||
@@ -2712,7 +2741,7 @@ msgstr "பயனரை மாற்று"
|
||||
msgid "Open Settings"
|
||||
msgstr "அமைப்புகளை திற"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "நியோச்சாட் தொடர்பற்று உள்ளது. உங்கள் பிணைய இணைப்பை சரிபாருங்கள்."
|
||||
@@ -2788,55 +2817,61 @@ msgstr "விருப்பங்கள்"
|
||||
msgid "Open developer tools"
|
||||
msgstr "நிரலாக்க கருவிகளைத் திற"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "இவ்வரங்கில் தேடு"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "தேடல்"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "பிடித்தவற்றிலிருந்து அரங்கை நீக்கு"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "அரங்கைப் பிடித்ததாகக் குறி"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "இவ்வரங்கிலுள்ள இருப்பிடங்களைக் காட்டு"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "உறுப்பினர்கள்"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "அரங்கில் பயனரை கண்டுபிடி"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "பயனரை வரவழைப்பது"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "பயனரை ஓர் அரங்குக்கு வரவழை"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 உறுப்பினர்"
|
||||
msgstr[1] "%1 உறுப்பினர்கள்"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "உறுப்பினர்களின் எண்ணிக்கை தெரியாதது"
|
||||
@@ -3330,12 +3365,6 @@ msgstr "பெயர்:"
|
||||
msgid "Label:"
|
||||
msgstr "காட்சிப்பெயர்"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "கடவுச்சொல்"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3632,8 +3661,8 @@ msgstr "பொதுவான அமைப்புகள்"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "மூடும்போது சாதனத் தட்டில் வைத்திரு"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "கணினித் தட்டில் காட்டு"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2022-06-20 03:30+0000\n"
|
||||
"Last-Translator: Weblate Admin <admin@example.com>\n"
|
||||
"Language-Team: Toki Pona <http://weblate.blackquill.cc/projects/ante-toki-pi-"
|
||||
@@ -21,77 +21,77 @@ msgstr ""
|
||||
"%100>=11 && n%100<=14 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 4.10.1\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr ""
|
||||
@@ -207,16 +207,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -665,27 +670,27 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "sitelen Emosi sina"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -694,7 +699,7 @@ msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -756,359 +761,359 @@ msgstr ""
|
||||
msgid "Spaces"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Send message"
|
||||
msgid "sent a message"
|
||||
msgstr "o pana e toki"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Unban this user"
|
||||
msgid "unbanned a user"
|
||||
msgstr "o weka e weka pi jan ni"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Create a Room"
|
||||
msgid "set the room name"
|
||||
msgstr "o pali e tomo toki"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Create a Room"
|
||||
msgid "upgraded the room version"
|
||||
msgstr "o pali e tomo toki"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Create a Room"
|
||||
msgid "created the room"
|
||||
msgstr "o pali e tomo toki"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgid "removed a widget"
|
||||
msgstr "o ante e toki"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1130,7 +1135,7 @@ msgstr ""
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1168,7 +1173,7 @@ msgid "Attachment:"
|
||||
msgstr "lipu:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1224,7 +1229,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "o pana e toki"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1342,14 +1347,14 @@ msgstr ""
|
||||
msgid "No emojis"
|
||||
msgstr "sitelen Emosi sina"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Custom"
|
||||
msgid "Emojis"
|
||||
msgstr "sitelen Emosi sina"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1360,17 +1365,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "o weka"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr ""
|
||||
@@ -1391,13 +1396,13 @@ msgstr ""
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1424,7 +1429,7 @@ msgid "Url:"
|
||||
msgstr "nasin:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1451,13 +1456,19 @@ msgstr "o pana e nimi sina pi ilo Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "nimi pi ilo Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Matrix ID:"
|
||||
msgid "Matrix ID"
|
||||
msgstr "nimi pi ilo Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "mi pali…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1512,6 +1523,15 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "o kama insa"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "nimi len"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1627,32 +1647,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1971,74 +1991,74 @@ msgstr ""
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "o weka e len pi jan ni"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "o len e jan ni"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "o weka e jan ni"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ignore this user"
|
||||
msgid "Invite this user"
|
||||
msgstr "o len e jan ni"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "o weka wawa e jan ni"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ban this user"
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "o weka wawa e jan ni"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "o weka e weka pi jan ni"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Delete recent messages by this user"
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "o weka e toki pi tenpo pini lili tan jan ni"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit Message"
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "o ante e toki"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "o open e tomo toki pi sina tu taso"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Copy"
|
||||
msgid "Copy link"
|
||||
@@ -2697,12 +2717,24 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr ""
|
||||
@@ -2765,7 +2797,7 @@ msgstr ""
|
||||
msgid "Open Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "ilo NeoChat li jo ala e linluwi. o pana e ona tawa ilo."
|
||||
@@ -2843,48 +2875,55 @@ msgstr ""
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Ignore this user"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "o len e jan ni"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2893,7 +2932,7 @@ msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr ""
|
||||
@@ -3394,14 +3433,6 @@ msgstr "nimi:"
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, fuzzy, kde-format
|
||||
#| msgctxt "@title"
|
||||
#| msgid "Password"
|
||||
msgid "Password"
|
||||
msgstr "nimi len"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3704,7 +3735,7 @@ msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
333
po/tr/neochat.po
333
po/tr/neochat.po
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-07 17:47+0300\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-01 12:13+0300\n"
|
||||
"Last-Translator: Emir SARI <emir_sari@icloud.com>\n"
|
||||
"Language-Team: Turkish <kde-l10n-tr@kde.org>\n"
|
||||
"Language: tr\n"
|
||||
@@ -18,78 +18,78 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Lokalize 23.11.70\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
"Oturum açma başarısız: Erişim jetonu geçersiz veya yürürlükten kaldırılmış"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Oturum açma başarısız: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Ağ hatası: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Erişim jetonu bulunamadı"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Silinmiş olabilir mi?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Anahtar zincirine erişim reddedildi."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Lütfen NeoChat'in erişim jetonunu okumasına izin verin"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Kullanılabilir anahtar zinciri yok."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr "Lütfen bir anahtar zinciri kurun; örn. K Cüzdan veya GNOME keyring"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Erişim jetonu okunamıyor"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Dosya, indirmek için pek büyük."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr "Destek için Matrix sunucusu yöneticisine ulaşın."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Oda oluşturulamadı: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Alan oluşturma başarısız: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Katılmaya çalıştığınız oda geçerli değil"
|
||||
@@ -201,16 +201,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (%2 üzerine yapılı)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix iletişim protokolü için istemci"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "matrix: URL şemasını destekler"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "Tüm SSL hatalarını yok say; örn. imzalanmamış sertifikalar."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -641,34 +646,34 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Kendi Emojileriniz"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Bu ileti silindi]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Bu ileti silindi: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[DEĞİŞTİRİLDİ]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[DEĞİŞTİRİLDİ: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] "%1 kullanıcı: "
|
||||
msgstr[1] "%1 kullanıcı: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -726,353 +731,353 @@ msgstr "Düşük öncelik"
|
||||
msgid "Spaces"
|
||||
msgstr "Alanlar"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Bugün"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Dün"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "dünden önceki gün"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "bir dosya"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "%1, odaya yeniden davet edildi"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "odaya katıldı (yinelendi)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "%1, odaya davet edildi"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "odaya katıldı"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "ekran adını sildi"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "ekran adını %1 olarak değiştirdi"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " ve "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "avatarını sildi"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "bir avatar koydu"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "avatarını güncelledi"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "bir şey değiştirmedi"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "%1 kişisinin davetini geri çekti"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "daveti reddetti"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "%1 kişisinin yasağını kaldırdı"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "kendi yasağını kaldırdı"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "%1 kişisini odadan dışarı çıkardı: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "odadan çıktı"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "%1 kişisini odadan yasakladı"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "%1 kişisini odadan yasakladı: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "kendini yasakladı"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "bir davet istedi"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "şu nedenle bir davet istedi: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "bilinmeyen bir şeyler yaptı"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "oda ana armasını sildi"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "oda ana armasını %1 olarak ayarladı"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "oda adını sildi"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "oda adını %1 olarak ayarladı"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "konuyu sildi"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "konuyu %1 olarak ayarladı"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "oda avatarını değiştirdi"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "uçtan uca şifrelemeyi etkinleştirdi"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "odayı %1 sürümüne güncelledi"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "odayı oluşturdu, %1. sürüm"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "bu oda için izin düzeylerini değiştirdi"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "bu oda için sunucu erişim denetim listelerini değiştirdi"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "%1 araç takımını ekledi"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "%1 araç takımını kaldırdı"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "%1 araç takımını yapılandırdı"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "%1 durumunu güncelledi"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "%2 için %1 durumunu güncelledi"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Bilinmeyen olay"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "bir ileti gönderdi"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "bir yapışkan gönderdi"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "birisini odaya yeniden davet etti"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "birisini odaya davet etti"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "ekran adını değiştirdi"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "bir kullanıcının yanıtını geri çevirdi"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "bir kullanıcının yasağını kaldırdı"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "bir kişiyi odadan dışarı çıkardı"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "bir kişiyi odadan yasakladı"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "oda ana armasını ayarladı"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "oda adını ayarladı"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "konuyu ayarladı"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "oda sürümünü yükseltti"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "odayı oluşturdu"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "bir araç takımı ekledi"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "bir araç takımını kaldırdı"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "bir araç takımını yapılandırdı"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "durumu güncelledi"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "bir anket başlattı"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Rapor başarıyla gönderildi."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1093,7 +1098,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Bu odada NeoChat'i açın"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1131,7 +1136,7 @@ msgid "Attachment:"
|
||||
msgstr "İlişik:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1187,7 +1192,7 @@ msgstr "Bir ek alt yazısı ekle..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Bir ileti gönder…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1300,13 +1305,13 @@ msgstr "Yapışkan Yok"
|
||||
msgid "No emojis"
|
||||
msgstr "Emoji yok"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Emojiler"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1317,17 +1322,17 @@ msgstr "Yapışkanlar"
|
||||
msgid "View Location"
|
||||
msgstr "Konumu Görüntüle"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Kapat"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Bu ileti, doğrulanan bir aygıttan gönderildi"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Tepki"
|
||||
@@ -1348,13 +1353,13 @@ msgstr "Reddet"
|
||||
msgid "Accept"
|
||||
msgstr "Kabul Et"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Konumlar"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Bu odada paylaşılmış bir konum yok."
|
||||
@@ -1381,7 +1386,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1408,13 +1413,18 @@ msgstr "Matrix kimliğinizi girin"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix kimliği:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "Matrix Kimliği"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Yükleniyor…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Halihazırda oturum açıldı"
|
||||
@@ -1469,6 +1479,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Oturum Aç"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Parola"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1580,32 +1597,32 @@ msgstr "Ses Düzeyi"
|
||||
msgid "Maximize"
|
||||
msgstr "Son Ses"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Yerel dosya seçin"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Pano görseli"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "İlk okunmamış iletiye atla"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "En son iletiye atla"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Onları paylaşmak için ögeleri buraya sürükleyin"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1943,70 +1960,70 @@ msgstr "Yönetici (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Onayla"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Hesap ayrıntısı"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Bu kullanıcıyı yok saymayı durdur"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Bu kullanıcıyı yok say"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Bu kullanıcıyı kov"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Bu kullanıcıyı davet et"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Bu kullanıcıyı yasakla"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Kullanıcıyı Yasakla"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Bu kullanıcının yasağını kaldır"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Kullanıcı güç düzeyini ayarla"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Bu kullanıcının gönderdiği son iletileri kaldır"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "İletileri Kaldır"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Özel bir sohbet aç"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Bağlantıyı kopyala"
|
||||
@@ -2657,12 +2674,24 @@ msgstr "Başlamak için odalara katılın"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Oda dizininde ara"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr "Daralt: %1"
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Genişlet: %1"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Sessize alınmış oda"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Odayı yapılandır"
|
||||
@@ -2723,7 +2752,7 @@ msgstr "Kullanıcı Değiştir"
|
||||
msgid "Open Settings"
|
||||
msgstr "Ayarları Aç"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat, çevrimdışı. Lütfen ağ bağlantınızı denetleyin."
|
||||
@@ -2750,16 +2779,14 @@ msgid "Chat"
|
||||
msgstr "Sohbet"
|
||||
|
||||
#: src/qml/Page/StartChatPage.qml:93
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Log in to an existing account"
|
||||
#, kde-format
|
||||
msgid "Join existing chat"
|
||||
msgstr "Var olan bir hesaba oturum aç"
|
||||
msgstr "Var olan sohbete katıl"
|
||||
|
||||
#: src/qml/Page/StartChatPage.qml:114
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Create rooms and chats"
|
||||
#, kde-format
|
||||
msgid "Create new chat"
|
||||
msgstr "Odalar ve sohbetler oluştur"
|
||||
msgstr "Yeni sohbet oluştur"
|
||||
|
||||
#: src/qml/Page/WelcomePage.qml:56
|
||||
#, kde-format
|
||||
@@ -2801,55 +2828,61 @@ msgstr "Seçenekler"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Geliştirici araçlarını aç"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Bu odada ara"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Ara"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Odayı sık kullanılanlardan kaldır"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Odayı sık kullanılanlara ekle"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Bu oda için olan konumları göster"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Üyeler"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Kullanıcıyı odada ara"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Bir Kullanıcıyı Davet Et"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Kullanıcıyı odaya davet et"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 üye"
|
||||
msgstr[1] "%1 üye"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Üye sayısı yok"
|
||||
@@ -3347,12 +3380,6 @@ msgstr "Ad:"
|
||||
msgid "Label:"
|
||||
msgstr "Etiket:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Parola"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3494,7 +3521,7 @@ msgstr "Renk teması"
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, son etkinlik: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
@@ -3649,8 +3676,8 @@ msgstr "Genel ayarlar"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Sistem tepsisine kapat"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Sistem tepsisinde göster"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
319
po/uk/neochat.po
319
po/uk/neochat.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 08:32+0300\n"
|
||||
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
|
||||
"Language-Team: Ukrainian <kde-i18n-uk@kde.org>\n"
|
||||
@@ -20,80 +20,80 @@ msgstr ""
|
||||
"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Lokalize 20.12.0\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr "Невдала спроба увійти: жетон доступу є некоректним або його відкликано"
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "Невдала спроба увійти: %1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "Помилка у мережі: %1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr "Не знайдено жетона доступу"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr "Можливо, його вилучено?"
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr "Відмовлено у доступі до засобу керування ключами."
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "Будь ласка, дозвольте NeoChat читання жетона доступу"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "Немає доступних засобів керування ключами."
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"Будь ласка, встановіть засіб керування ключами, наприклад KWallet або GNOME "
|
||||
"keyring у Linux"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "Не вдалося прочитати жетон доступу"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr "Файл є надто великим для отримання."
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
"Зв'яжіться із адміністратором вашого сервера matrix, щоб отримати допомогу."
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr "Не вдалося створити кімнату: %1"
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr "Не вдалося створити простір: %1"
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr "Ідентифікатор кімнати, до якої ви хочете приєднатися, є некоректним"
|
||||
@@ -207,16 +207,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (зібрано з %2)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Клієнт для протоколу обміну даними matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Передбачає підтримку схеми адрес matrix:"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr "Ігнорувати усі помилки SSL, наприклад непідписані сертифікати."
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -653,27 +658,27 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr "Власні емоційки"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[Це повідомлення було вилучено]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[Це повідомлення було вилучено: %1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr "[ЗМІНЕНО]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr "[ЗМІНЕНО: %1]"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
@@ -682,7 +687,7 @@ msgstr[1] "%1 користувачі: "
|
||||
msgstr[2] "%1 користувачів: "
|
||||
msgstr[3] "%1 користувач: "
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -744,353 +749,353 @@ msgstr "Низький пріоритет"
|
||||
msgid "Spaces"
|
||||
msgstr "Простори"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "Сьогодні"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "Вчора"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "Позавчора"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "файл"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "повторно запрошено %1 до кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "долучається до кімнати (повторно)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "запрошено %1 до кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "долучається до кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ": %1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "вилучено своє показане ім'я"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "змінено своє показане ім'я на %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " і "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "вилучено свій аватар"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "встановлено аватар"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "оновлено свій аватар"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "нічого не змінено"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "відкликано запрошення %1"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "відкинуто запрошення"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "розблоковано %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "саморозблоковується"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "викинуто %1 з кімнати: %2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "полишає кімнату"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "заблоковано %1 у кімнаті"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "заблоковано %1 у кімнаті: %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr "самозаблоковується у кімнаті"
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "надіслано запит щодо запрошення"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "надіслано запит щодо запрошення з поясненням причини: %1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr "виконано щось невідоме"
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "вилучено основний варіант назви кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "встановлено основний варіант назви кімнати: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "вилучено назву кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "встановлено назву кімнати: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "вилучено тему"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "встановлено тему: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "змінено аватар кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "активовано наскрізне шифрування"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "оновлено версію кімнати до %1"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "створено кімнату, версія %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr "змінено рівні прав доступу для цієї кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr "Для цієї кімнати змінено списки керування доступом на сервері"
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr "додано віджет %1"
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr "вилучено віджет %1"
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr "налаштовано віджет %1"
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "оновлено стан %1"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "оновлено стан %1 для %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "Невідома подія"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr "надіслав повідомлення"
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr "надіслати наліпку"
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr "повторно запросив когось до кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr "запросив когось до кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr "змінив власне показане ім'я"
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr "відкликав запрошення користувача"
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr "розблокував користувача"
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr "викинув користувача з кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr "заблокував користувача у кімнаті"
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr "встановив основний варіант назви кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr "встановив назву кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr "встановив тему"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr "оновив версію кімнати"
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr "створив кімнату"
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr "додав віджет"
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr "вилучив віджет"
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr "налаштував віджет"
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr "оновив стан"
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr "почав голосування"
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr "Скаргу успішно надіслано."
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1111,7 +1116,7 @@ msgstr "%1: %2"
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "Відкрити NeoChat у цій кімнаті"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1149,7 +1154,7 @@ msgid "Attachment:"
|
||||
msgstr "Долучення:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1205,7 +1210,7 @@ msgstr "Встановити підпис до долучення…"
|
||||
msgid "Send a message…"
|
||||
msgstr "Надіслати повідомлення…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1318,13 +1323,13 @@ msgstr "Немає наліпок"
|
||||
msgid "No emojis"
|
||||
msgstr "Без емодзі"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr "Емоційки"
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1335,17 +1340,17 @@ msgstr "Наліпки"
|
||||
msgid "View Location"
|
||||
msgstr "Надіслати дані місця"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Закрити"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr "Це повідомлення було надіслано із перевіреного пристрою"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "Реагувати"
|
||||
@@ -1366,13 +1371,13 @@ msgstr "Відкинути"
|
||||
msgid "Accept"
|
||||
msgstr "Прийняти"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Місця"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "У цій кімнаті не оприлюднюються місця перебування."
|
||||
@@ -1399,7 +1404,7 @@ msgid "Url:"
|
||||
msgstr "Адреса:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1426,13 +1431,18 @@ msgstr "Введіть ваш ідентифікатор Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Ідентифікатор Matrix:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr "Ід. Matrix"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Завантаження…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Вже увійшли"
|
||||
@@ -1487,6 +1497,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "Увійти"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1602,32 +1619,32 @@ msgstr "Гучність"
|
||||
msgid "Maximize"
|
||||
msgstr "Максимізувати"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "Виберіть локальний файл"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "Зображення з буфера"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "Перейти до першого непрочитаного повідомлення"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "Перейти до останнього повідомлення"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "Перетягніть пункти сюди, щоб оприлюднити їх"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1967,70 +1984,70 @@ msgstr "Адміністратор (100)"
|
||||
msgid "Confirm"
|
||||
msgstr "Підтвердити"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "Параметри облікового запису"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "Скасувати ігнорування цього користувача"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "Ігнорувати цього користувача"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "Викинути цього користувача"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "Запросити цього користувача"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "Заблокувати цього користувача"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "Заблокувати користувача"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "Розблокувати цього користувача"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr "Встановити рівень можливостей користувача"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr "Вилучити нещодавні повідомлення від цього користувача"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr "Вилучення повідомлень"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "Відкрити особисте спілкування"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "Копіювати посилання"
|
||||
@@ -2682,12 +2699,24 @@ msgstr "Спочатку, приєднайтеся до кімнат"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Шукати у каталозі кімнат"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr "Згорнути %1"
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr "Розгорнути %1"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Кімната із вимкненим спілкуванням"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Налаштувати кімнату"
|
||||
@@ -2748,7 +2777,7 @@ msgstr "Змінити користувача"
|
||||
msgid "Open Settings"
|
||||
msgstr "Відкрити налаштування"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr ""
|
||||
@@ -2826,48 +2855,54 @@ msgstr "Параметри"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Відкрити інструменти розробника"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Шукати у цій кімнаті"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Пошук"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Вилучити кімнату з улюблених"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Зробити кімнату улюбленою"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Показувати місця перебування для цієї кімнати"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Учасники"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Шукати користувача у кімнаті"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Запрошення користувача"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Запросити користувача до кімнати"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2876,7 +2911,7 @@ msgstr[1] "%1 учасники"
|
||||
msgstr[2] "%1 учасників"
|
||||
msgstr[3] "%1 учасник"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Немає лічильника учасників"
|
||||
@@ -3380,12 +3415,6 @@ msgstr "Ім'я:"
|
||||
msgid "Label:"
|
||||
msgstr "Мітка:"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3684,8 +3713,8 @@ msgstr "Загальні параметри"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Згорнути до лотка системи"
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Показувати у системному лотку"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kdeorg\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-02 12:45\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-08-02 12:41\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"Language: zh_CN\n"
|
||||
@@ -14,82 +14,82 @@ msgstr ""
|
||||
"X-Crowdin-Project: kdeorg\n"
|
||||
"X-Crowdin-Project-ID: 269464\n"
|
||||
"X-Crowdin-Language: zh-CN\n"
|
||||
"X-Crowdin-File: /kf5-stable/messages/neochat/neochat.pot\n"
|
||||
"X-Crowdin-File-ID: 41945\n"
|
||||
"X-Crowdin-File: /kf5-trunk/messages/neochat/neochat.pot\n"
|
||||
"X-Crowdin-File-ID: 24924\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr "登录失败:%1"
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr "网络错误:%1"
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr "请允许 NeoChat 读取访问令牌"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr "没有可用的钥匙环。"
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr ""
|
||||
"请安装一个钥匙环,例如 Linux 平台上的 KDE 密码库(KWallet)或 GNOME 钥匙圈"
|
||||
"(GNOME keyring)"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr "无法读取访问令牌"
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr ""
|
||||
@@ -205,16 +205,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (使用 %2 构建)"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix 通信协议客户端"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "支持 matrix: URL 协议"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -643,33 +648,33 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr "<i>[这条消息已被删除]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr "<i>[这条消息已被删除:%1]</i>"
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -725,353 +730,353 @@ msgstr "低优先级"
|
||||
msgid "Spaces"
|
||||
msgstr "空间"
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr "今天"
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr "昨天"
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr "前天"
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr "1 个文件"
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr "重新邀请 %1 到聊天室"
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ":%1"
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr "加入了聊天室 (多次)"
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr "发送了将 %1 加入聊天室的邀请"
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr "加入了聊天室"
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ":%1"
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr "清除了显示名称"
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr "将显示名称更改为 %1"
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr " 和 "
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr "清除了头像"
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr "设置头像"
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr "更新了头像"
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr "未更改任何属性"
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr "退回 %1 的邀请"
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr "拒绝邀请"
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr "取消封禁 %1"
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr "自取消封禁"
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr "将 %1 移出了聊天室:%2"
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr "离开聊天室"
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr "从聊天室中封禁了 %1"
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr "从聊天室封禁了 %1 : %2"
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr "希望能被邀请"
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr "希望能被邀请,原因:%1"
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr "清除了聊天室主别名"
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr "设置聊天室主别名为: %1"
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr "清除了聊天室名称"
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr "将聊天室名称设置为: %1"
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr "清除了话题"
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr "将话题设置为: %1"
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr "更改了聊天室头像"
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr "激活了端到端加密"
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr "升级了聊天室到 %1 版本"
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr "创建了聊天室,版本为 %1"
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr "更新了 %1 的状态"
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr "更新了 %1 的状态为 %2"
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr "未知事件"
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1092,7 +1097,7 @@ msgstr ""
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr "在此聊天室打开 NeoChat"
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1130,7 +1135,7 @@ msgid "Attachment:"
|
||||
msgstr "附件:"
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1184,7 +1189,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "发送一条消息..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1297,13 +1302,13 @@ msgstr ""
|
||||
msgid "No emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1314,17 +1319,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "关闭"
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr "回应"
|
||||
@@ -1345,13 +1350,13 @@ msgstr "拒绝"
|
||||
msgid "Accept"
|
||||
msgstr "接受"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1378,7 +1383,7 @@ msgid "Url:"
|
||||
msgstr "链接:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1405,13 +1410,18 @@ msgstr "输入您的 Matrix ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "加载中…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1466,6 +1476,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr "登录"
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "密码"
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1576,32 +1593,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr "选择本地文件"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr "剪贴板图像"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr "跳转到第一条未读消息"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr "跳转到最新消息"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr "拖动项目到此处来分享"
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1913,70 +1930,70 @@ msgstr ""
|
||||
msgid "Confirm"
|
||||
msgstr "确认"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr "账户详情"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr "取消忽略此用户"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr "忽略此用户"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr "踢出此用户"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr "邀请此用户"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr "封禁此用户"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr "封禁用户"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr "解禁此用户"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr "打开私聊"
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr "复制链接"
|
||||
@@ -2625,12 +2642,24 @@ msgstr "加入聊天室,开启畅聊"
|
||||
msgid "Search in room directory"
|
||||
msgstr "在聊天室目录中搜索"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "已静音的聊天室"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "配置聊天室"
|
||||
@@ -2691,7 +2720,7 @@ msgstr "切换用户"
|
||||
msgid "Open Settings"
|
||||
msgstr "打开设置"
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr "NeoChat 处于离线状态。请检查您的网络连接。"
|
||||
@@ -2767,54 +2796,60 @@ msgstr "选项"
|
||||
msgid "Open developer tools"
|
||||
msgstr "打开开发者工具"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "在此聊天室中搜索"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "搜索"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "从收藏夹中移除聊天室"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "收藏聊天室"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "成员"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "邀请用户到聊天室"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr ""
|
||||
@@ -3302,12 +3337,6 @@ msgstr "名称:"
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr "密码"
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3604,8 +3633,8 @@ msgstr "常规设置"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "关闭到系统托盘"
|
||||
msgid "Show in System Tray"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"POT-Creation-Date: 2023-08-06 00:46+0000\n"
|
||||
"PO-Revision-Date: 2022-12-30 18:05+0900\n"
|
||||
"Last-Translator: Kisaragi Hiu <mail@kisaragi-hiu.com>\n"
|
||||
"Language-Team: Traditional Chinese <zh-l10n@linux.org.tw>\n"
|
||||
@@ -20,77 +20,77 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Lokalize 22.12.0\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#: src/controller.cpp:233
|
||||
#, kde-format
|
||||
msgid "Login Failed: Access Token invalid or revoked"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:237 src/controller.cpp:242 src/login.cpp:90
|
||||
#: src/controller.cpp:236 src/controller.cpp:241 src/login.cpp:90
|
||||
#, kde-format
|
||||
msgid "Login Failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:248
|
||||
#: src/controller.cpp:247
|
||||
#, kde-format
|
||||
msgid "Network Error: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Access token wasn't found"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:273
|
||||
#: src/controller.cpp:272
|
||||
#, kde-format
|
||||
msgid "Maybe it was deleted?"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Access to keychain was denied."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:277
|
||||
#: src/controller.cpp:276
|
||||
#, kde-format
|
||||
msgid "Please allow NeoChat to read the access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "No keychain available."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:280
|
||||
#: src/controller.cpp:279
|
||||
#, kde-format
|
||||
msgid "Please install a keychain, e.g. KWallet or GNOME keyring on Linux"
|
||||
msgstr "請安裝一個鑰匙圈,例如 Linux 上的 KWallet 或 GNOME 鑰匙圈"
|
||||
|
||||
#: src/controller.cpp:283
|
||||
#: src/controller.cpp:282
|
||||
#, kde-format
|
||||
msgid "Unable to read access token"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "File too large to download."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:453
|
||||
#: src/controller.cpp:452
|
||||
#, kde-format
|
||||
msgid "Contact your matrix server administrator for support."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:492
|
||||
#: src/controller.cpp:491
|
||||
#, kde-format
|
||||
msgid "Room creation failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:513
|
||||
#: src/controller.cpp:512
|
||||
#, kde-format
|
||||
msgid "Space creation failed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller.cpp:527
|
||||
#: src/controller.cpp:526
|
||||
#, kde-format
|
||||
msgid "The room id you are trying to join is not valid"
|
||||
msgstr ""
|
||||
@@ -202,16 +202,21 @@ msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:324
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#: src/main.cpp:325
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
#, kde-format
|
||||
msgid "Media id '%1' doesn't follow server/mediaId pattern"
|
||||
@@ -640,33 +645,33 @@ msgctxt "As in 'The user's own emojis"
|
||||
msgid "Own Emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:464 src/models/messageeventmodel.cpp:473
|
||||
#: src/models/messageeventmodel.cpp:463 src/models/messageeventmodel.cpp:472
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted]</i>"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:465
|
||||
#: src/models/messageeventmodel.cpp:464
|
||||
#, kde-format
|
||||
msgid "<i>[This message was deleted: %1]</i>"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:541
|
||||
#: src/models/messageeventmodel.cpp:540
|
||||
#, kde-format
|
||||
msgid "[REDACTED: %1]"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:837
|
||||
#: src/models/messageeventmodel.cpp:836
|
||||
#, kde-format
|
||||
msgid "1 user: "
|
||||
msgid_plural "%1 users: "
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/models/messageeventmodel.cpp:840
|
||||
#: src/models/messageeventmodel.cpp:839
|
||||
#, kde-format
|
||||
msgctxt "list separator"
|
||||
msgid ", "
|
||||
@@ -722,353 +727,353 @@ msgstr ""
|
||||
msgid "Spaces"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:251
|
||||
#: src/models/searchmodel.cpp:255
|
||||
#, kde-format
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:254
|
||||
#: src/models/searchmodel.cpp:258
|
||||
#, kde-format
|
||||
msgid "Yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: src/models/searchmodel.cpp:257
|
||||
#: src/models/searchmodel.cpp:261
|
||||
#, kde-format
|
||||
msgid "The day before yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:503
|
||||
#: src/neochatroom.cpp:506
|
||||
#, kde-format
|
||||
msgid "a file"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:549
|
||||
#: src/neochatroom.cpp:552
|
||||
#, kde-format
|
||||
msgid "reinvited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:551
|
||||
#: src/neochatroom.cpp:554
|
||||
#, kde-format
|
||||
msgctxt "Optional reason for an invitation"
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:560 src/neochatroom.cpp:698
|
||||
#: src/neochatroom.cpp:563 src/neochatroom.cpp:701
|
||||
#, kde-format
|
||||
msgid "joined the room (repeated)"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562
|
||||
#: src/neochatroom.cpp:565
|
||||
#, kde-format
|
||||
msgid "invited %1 to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:562 src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:565 src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "joined the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:566
|
||||
#: src/neochatroom.cpp:569
|
||||
#, kde-format
|
||||
msgid ": %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:573 src/neochatroom.cpp:708
|
||||
#: src/neochatroom.cpp:576 src/neochatroom.cpp:711
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:575
|
||||
#: src/neochatroom.cpp:578
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name to %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:580 src/neochatroom.cpp:715
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#, kde-format
|
||||
msgid " and "
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:583 src/neochatroom.cpp:718
|
||||
#: src/neochatroom.cpp:586 src/neochatroom.cpp:721
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "cleared their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:585 src/neochatroom.cpp:720
|
||||
#: src/neochatroom.cpp:588 src/neochatroom.cpp:723
|
||||
#, kde-format
|
||||
msgid "set an avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:587 src/neochatroom.cpp:722
|
||||
#: src/neochatroom.cpp:590 src/neochatroom.cpp:725
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "updated their avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:591 src/neochatroom.cpp:726
|
||||
#: src/neochatroom.cpp:594 src/neochatroom.cpp:729
|
||||
#, kde-format
|
||||
msgctxt "<user> changed nothing"
|
||||
msgid "changed nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597
|
||||
#: src/neochatroom.cpp:600
|
||||
#, kde-format
|
||||
msgid "withdrew %1's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:597 src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:600 src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "rejected the invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:601
|
||||
#: src/neochatroom.cpp:604
|
||||
#, kde-format
|
||||
msgid "unbanned %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:601 src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:604 src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "self-unbanned"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:604
|
||||
#: src/neochatroom.cpp:607
|
||||
#, kde-format
|
||||
msgid "has put %1 out of the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:605 src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:608 src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "left the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:609
|
||||
#: src/neochatroom.cpp:612
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:611
|
||||
#: src/neochatroom.cpp:614
|
||||
#, kde-format
|
||||
msgid "banned %1 from the room: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:614 src/neochatroom.cpp:743
|
||||
#: src/neochatroom.cpp:617 src/neochatroom.cpp:746
|
||||
#, kde-format
|
||||
msgid "self-banned from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618 src/neochatroom.cpp:746
|
||||
#: src/neochatroom.cpp:621 src/neochatroom.cpp:749
|
||||
#, kde-format
|
||||
msgid "requested an invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:618
|
||||
#: src/neochatroom.cpp:621
|
||||
#, kde-format
|
||||
msgid "requested an invite with reason: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:622 src/neochatroom.cpp:750
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#, kde-format
|
||||
msgid "made something unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625 src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "cleared the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:625
|
||||
#: src/neochatroom.cpp:628
|
||||
#, kde-format
|
||||
msgid "set the room main alias to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628 src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "cleared the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:628
|
||||
#: src/neochatroom.cpp:631
|
||||
#, kde-format
|
||||
msgid "set the room name to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:631 src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:634 src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "cleared the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:632
|
||||
#: src/neochatroom.cpp:635
|
||||
#, kde-format
|
||||
msgid "set the topic to: %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:638 src/neochatroom.cpp:762
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#, kde-format
|
||||
msgid "changed the room avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:641 src/neochatroom.cpp:765
|
||||
#: src/neochatroom.cpp:644 src/neochatroom.cpp:768
|
||||
#, kde-format
|
||||
msgid "activated End-to-End Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:644
|
||||
#: src/neochatroom.cpp:647
|
||||
#, kde-format
|
||||
msgid "upgraded the room to version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:645
|
||||
#: src/neochatroom.cpp:648
|
||||
#, kde-format
|
||||
msgid "created the room, version %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:648 src/neochatroom.cpp:771
|
||||
#: src/neochatroom.cpp:651 src/neochatroom.cpp:774
|
||||
#, kde-format
|
||||
msgctxt "'power level' means permission level"
|
||||
msgid "changed the power levels for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:652 src/neochatroom.cpp:775
|
||||
#: src/neochatroom.cpp:655 src/neochatroom.cpp:778
|
||||
#, kde-format
|
||||
msgid "changed the server access control lists for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:656
|
||||
#: src/neochatroom.cpp:659
|
||||
#, kde-format
|
||||
msgctxt "[User] added <name> widget"
|
||||
msgid "added %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:659
|
||||
#: src/neochatroom.cpp:662
|
||||
#, kde-format
|
||||
msgctxt "[User] removed <name> widget"
|
||||
msgid "removed %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:661
|
||||
#: src/neochatroom.cpp:664
|
||||
#, kde-format
|
||||
msgctxt "[User] configured <name> widget"
|
||||
msgid "configured %1 widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:666
|
||||
#: src/neochatroom.cpp:669
|
||||
#, kde-format
|
||||
msgid "updated %1 state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:667
|
||||
#: src/neochatroom.cpp:670
|
||||
#, kde-format
|
||||
msgid "updated %1 state for %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:672 src/neochatroom.cpp:792
|
||||
#: src/neochatroom.cpp:675 src/neochatroom.cpp:795
|
||||
#, kde-format
|
||||
msgid "Unknown event"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:681
|
||||
#: src/neochatroom.cpp:684
|
||||
#, kde-format
|
||||
msgid "sent a message"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:685
|
||||
#: src/neochatroom.cpp:688
|
||||
#, kde-format
|
||||
msgid "sent a sticker"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:691
|
||||
#: src/neochatroom.cpp:694
|
||||
#, kde-format
|
||||
msgid "reinvited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:700
|
||||
#: src/neochatroom.cpp:703
|
||||
#, kde-format
|
||||
msgid "invited someone to the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:710
|
||||
#: src/neochatroom.cpp:713
|
||||
#, kde-format
|
||||
msgctxt "their refers to a singular user"
|
||||
msgid "changed their display name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:732
|
||||
#: src/neochatroom.cpp:735
|
||||
#, kde-format
|
||||
msgid "withdrew a user's invitation"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:736
|
||||
#: src/neochatroom.cpp:739
|
||||
#, kde-format
|
||||
msgid "unbanned a user"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:738
|
||||
#: src/neochatroom.cpp:741
|
||||
#, kde-format
|
||||
msgid "put a user out of the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:741
|
||||
#: src/neochatroom.cpp:744
|
||||
#, kde-format
|
||||
msgid "banned a user from the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:753
|
||||
#: src/neochatroom.cpp:756
|
||||
#, kde-format
|
||||
msgid "set the room main alias"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:756
|
||||
#: src/neochatroom.cpp:759
|
||||
#, kde-format
|
||||
msgid "set the room name"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:759
|
||||
#: src/neochatroom.cpp:762
|
||||
#, kde-format
|
||||
msgid "set the topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "upgraded the room version"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:768
|
||||
#: src/neochatroom.cpp:771
|
||||
#, kde-format
|
||||
msgid "created the room"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:779
|
||||
#: src/neochatroom.cpp:782
|
||||
#, kde-format
|
||||
msgid "added a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:782
|
||||
#: src/neochatroom.cpp:785
|
||||
#, kde-format
|
||||
msgid "removed a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:784
|
||||
#: src/neochatroom.cpp:787
|
||||
#, kde-format
|
||||
msgid "configured a widget"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:786
|
||||
#: src/neochatroom.cpp:789
|
||||
#, kde-format
|
||||
msgid "updated the state"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:790
|
||||
#: src/neochatroom.cpp:793
|
||||
#, kde-format
|
||||
msgid "started a poll"
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1624 src/neochatroom.cpp:1625
|
||||
#: src/neochatroom.cpp:1627 src/neochatroom.cpp:1628
|
||||
#, kde-format
|
||||
msgid "Report sent successfully."
|
||||
msgstr ""
|
||||
|
||||
#: src/neochatroom.cpp:1923 src/neochatroom.cpp:1931
|
||||
#: src/neochatroom.cpp:1927 src/neochatroom.cpp:1935
|
||||
#, kde-format
|
||||
msgctxt "'Lat' and 'Lon' as in Latitude and Longitude"
|
||||
msgid "Lat: %1, Lon: %2"
|
||||
@@ -1089,7 +1094,7 @@ msgstr ""
|
||||
msgid "Open NeoChat in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:103
|
||||
#: src/notificationsmanager.cpp:222 src/qml/Component/HoverActions.qml:109
|
||||
#: src/qml/Menu/Timeline/FileDelegateContextMenu.qml:50
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:36
|
||||
#, kde-format
|
||||
@@ -1127,7 +1132,7 @@ msgid "Attachment:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/ChatBox/AttachmentPane.qml:38
|
||||
#: src/qml/Component/HoverActions.qml:97
|
||||
#: src/qml/Component/HoverActions.qml:103
|
||||
#: src/qml/Menu/Timeline/MessageDelegateContextMenu.qml:27
|
||||
#: src/qml/Page/ImageEditorPage.qml:21
|
||||
#, kde-format
|
||||
@@ -1181,7 +1186,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1294,13 +1299,13 @@ msgstr ""
|
||||
msgid "No emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:47
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:52
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:25
|
||||
#, kde-format
|
||||
msgid "Emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:54
|
||||
#: src/qml/Component/Emoji/EmojiPicker.qml:59
|
||||
#: src/qml/Settings/EmoticonsPage.qml:16 src/qml/Settings/EmoticonsPage.qml:32
|
||||
#, kde-format
|
||||
msgid "Stickers"
|
||||
@@ -1311,17 +1316,17 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:79
|
||||
#: src/qml/Component/HoverActions.qml:85
|
||||
#, kde-format
|
||||
msgid "This message was sent from a verified device"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/HoverActions.qml:92
|
||||
#: src/qml/Component/HoverActions.qml:98
|
||||
#, kde-format
|
||||
msgid "React"
|
||||
msgstr ""
|
||||
@@ -1342,13 +1347,13 @@ msgstr ""
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1375,7 +1380,7 @@ msgid "Url:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1402,13 +1407,18 @@ msgstr ""
|
||||
msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Component/Login/Login.qml:31
|
||||
#, kde-format
|
||||
msgid "Matrix ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1463,6 +1473,13 @@ msgctxt "@action:button"
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Password.qml:41
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Sso.qml:23
|
||||
#, kde-format
|
||||
msgid "Complete the authentication steps in your browser"
|
||||
@@ -1573,32 +1590,32 @@ msgstr ""
|
||||
msgid "Maximize"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:128
|
||||
#: src/qml/Component/TimelineView.qml:140
|
||||
#, kde-format
|
||||
msgid "Choose local file"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:156
|
||||
#: src/qml/Component/TimelineView.qml:168
|
||||
#, kde-format
|
||||
msgid "Clipboard image"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:205
|
||||
#: src/qml/Component/TimelineView.qml:217
|
||||
#, kde-format
|
||||
msgid "Jump to first unread message"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:228
|
||||
#: src/qml/Component/TimelineView.qml:240
|
||||
#, kde-format
|
||||
msgid "Jump to latest message"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:254
|
||||
#: src/qml/Component/TimelineView.qml:266
|
||||
#, kde-format
|
||||
msgid "Drag items here to share them"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/TimelineView.qml:280
|
||||
#: src/qml/Component/TimelineView.qml:292
|
||||
#, kde-format
|
||||
msgctxt "Message displayed when some users are typing"
|
||||
msgid "%2 is typing"
|
||||
@@ -1910,70 +1927,70 @@ msgstr ""
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:29
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:32
|
||||
#, kde-format
|
||||
msgctxt "@title:menu Account detail dialog"
|
||||
msgid "Account detail"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Unignore this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:77
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:80
|
||||
#, kde-format
|
||||
msgid "Ignore this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:89
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:92
|
||||
#, kde-format
|
||||
msgid "Kick this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:102
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:105
|
||||
#, kde-format
|
||||
msgid "Invite this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:114
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:117
|
||||
#, kde-format
|
||||
msgid "Ban this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:119
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:122
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Ban User"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:130
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:133
|
||||
#, kde-format
|
||||
msgid "Unban this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:142
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:145
|
||||
#, kde-format
|
||||
msgid "Set user power level"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:166
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:169
|
||||
#, kde-format
|
||||
msgid "Remove recent messages by this user"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:171
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:174
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Remove Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:181
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:184
|
||||
#, kde-format
|
||||
msgid "Open a private chat"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:191
|
||||
#: src/qml/Dialog/UserDetailDialog.qml:194
|
||||
#, kde-format
|
||||
msgid "Copy link"
|
||||
msgstr ""
|
||||
@@ -2620,12 +2637,24 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Collapse <section name>"
|
||||
msgid "Collapse %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/Page.qml:196
|
||||
#, kde-format
|
||||
msgctxt "Expand <section name"
|
||||
msgid "Expand %1"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr ""
|
||||
@@ -2686,7 +2715,7 @@ msgstr ""
|
||||
msgid "Open Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomPage.qml:50
|
||||
#: src/qml/Page/RoomPage.qml:42
|
||||
#, kde-format
|
||||
msgid "NeoChat is offline. Please check your network connection."
|
||||
msgstr ""
|
||||
@@ -2762,54 +2791,60 @@ msgstr ""
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr ""
|
||||
@@ -3297,12 +3332,6 @@ msgstr ""
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:151
|
||||
#: src/qml/Settings/NetworkProxyPage.qml:99
|
||||
#, kde-format
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/AccountEditorPage.qml:159
|
||||
#, kde-format
|
||||
msgid "Your server doesn't support changing your password"
|
||||
@@ -3599,7 +3628,7 @@ msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
|
||||
configure_file(qml/Page/RoomList/RoomDelegate.qml ${CMAKE_CURRENT_BINARY_DIR}/qml/Page/RoomList/RoomDelegate.qml)
|
||||
configure_file(qml/Component/QuickSwitcher.qml ${CMAKE_CURRENT_BINARY_DIR}/qml/Component/QuickSwitcher.qml)
|
||||
configure_file(qml/Dialog/UserDetailDialog.qml ${CMAKE_CURRENT_BINARY_DIR}/qml/Dialog/UserDetailDialog.qml)
|
||||
configure_file(qml/Dialog/PowerLevelDialog.qml ${CMAKE_CURRENT_BINARY_DIR}/qml/Dialog/PowerLevelDialog.qml)
|
||||
configure_file(qml/Component/Timeline/AudioDelegate.qml ${CMAKE_CURRENT_BINARY_DIR}/qml/Component/Timeline/AudioDelegate.qml)
|
||||
configure_file(qml/Component/Timeline/VideoDelegate.qml ${CMAKE_CURRENT_BINARY_DIR}/qml/Component/Timeline/VideoDelegate.qml)
|
||||
@@ -44,8 +43,6 @@ add_library(neochat STATIC
|
||||
roommanager.h
|
||||
neochatroom.cpp
|
||||
neochatroom.h
|
||||
neochatuser.cpp
|
||||
neochatuser.h
|
||||
models/userlistmodel.cpp
|
||||
models/userlistmodel.h
|
||||
models/userfiltermodel.cpp
|
||||
@@ -127,6 +124,7 @@ add_library(neochat STATIC
|
||||
locationhelper.h
|
||||
events/pollevent.cpp
|
||||
pollhandler.cpp
|
||||
utils.h
|
||||
)
|
||||
|
||||
ecm_qt_declare_logging_category(neochat
|
||||
@@ -175,7 +173,7 @@ else()
|
||||
endif()
|
||||
|
||||
target_include_directories(neochat PRIVATE ${CMAKE_BINARY_DIR})
|
||||
target_link_libraries(neochat PUBLIC Qt::Core Qt::Quick Qt::Qml Qt::Gui Qt::Multimedia Qt::Network Qt::QuickControls2 KF${QT_MAJOR_VERSION}::I18n KF${QT_MAJOR_VERSION}::Kirigami2 KF${QT_MAJOR_VERSION}::Notifications KF${QT_MAJOR_VERSION}::ConfigCore KF${QT_MAJOR_VERSION}::ConfigGui KF${QT_MAJOR_VERSION}::CoreAddons KF${QT_MAJOR_VERSION}::SonnetCore KF${QT_MAJOR_VERSION}::ItemModels Quotient${QUOTIENT_SUFFIX} cmark::cmark ${QTKEYCHAIN_LIBRARIES} QCoro::Core)
|
||||
target_link_libraries(neochat PUBLIC Qt::Core Qt::Quick Qt::Qml Qt::Gui Qt::Multimedia Qt::Network Qt::QuickControls2 KF${QT_MAJOR_VERSION}::I18n KF${QT_MAJOR_VERSION}::Kirigami2 KF${QT_MAJOR_VERSION}::Notifications KF${QT_MAJOR_VERSION}::ConfigCore KF${QT_MAJOR_VERSION}::ConfigGui KF${QT_MAJOR_VERSION}::CoreAddons KF${QT_MAJOR_VERSION}::SonnetCore KF${QT_MAJOR_VERSION}::ItemModels Quotient${QUOTIENT_SUFFIX} cmark::cmark QCoro::Core)
|
||||
kconfig_add_kcfg_files(neochat GENERATE_MOC neochatconfig.kcfgc)
|
||||
|
||||
if(NEOCHAT_FLATPAK)
|
||||
|
||||
@@ -35,15 +35,15 @@
|
||||
#include <Quotient/connection.h>
|
||||
#include <Quotient/csapi/content-repo.h>
|
||||
#include <Quotient/csapi/logout.h>
|
||||
#include <Quotient/csapi/notifications.h>
|
||||
#include <Quotient/csapi/profile.h>
|
||||
#include <Quotient/eventstats.h>
|
||||
#include <Quotient/jobs/downloadfilejob.h>
|
||||
#include <Quotient/qt_connection_util.h>
|
||||
#include <Quotient/csapi/notifications.h>
|
||||
#include <Quotient/eventstats.h>
|
||||
#include <Quotient/user.h>
|
||||
|
||||
#include "neochatconfig.h"
|
||||
#include "neochatroom.h"
|
||||
#include "neochatuser.h"
|
||||
#include "notificationsmanager.h"
|
||||
#include "roommanager.h"
|
||||
#include "windowcontroller.h"
|
||||
@@ -60,7 +60,6 @@ Controller::Controller(QObject *parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
Connection::setRoomType<NeoChatRoom>();
|
||||
Connection::setUserType<NeoChatUser>();
|
||||
|
||||
setApplicationProxy();
|
||||
|
||||
@@ -532,7 +531,7 @@ void Controller::joinRoom(const QString &alias)
|
||||
RoomManager::instance().joinRoom(m_connection, alias, QStringList{knownServer});
|
||||
}
|
||||
|
||||
void Controller::openOrCreateDirectChat(NeoChatUser *user)
|
||||
void Controller::openOrCreateDirectChat(User *user)
|
||||
{
|
||||
const auto existing = activeConnection()->directChats();
|
||||
|
||||
|
||||
@@ -14,7 +14,6 @@
|
||||
#include <Quotient/settings.h>
|
||||
|
||||
class NeoChatRoom;
|
||||
class NeoChatUser;
|
||||
class TrayIcon;
|
||||
class QWindow;
|
||||
class QQuickTextDocument;
|
||||
@@ -23,6 +22,7 @@ namespace Quotient
|
||||
{
|
||||
class Connection;
|
||||
class Room;
|
||||
class User;
|
||||
}
|
||||
|
||||
namespace QKeychain
|
||||
@@ -183,7 +183,7 @@ public:
|
||||
*
|
||||
* If a direct chat with the user doesn't exist one is created and then joined.
|
||||
*/
|
||||
Q_INVOKABLE void openOrCreateDirectChat(NeoChatUser *user);
|
||||
Q_INVOKABLE void openOrCreateDirectChat(Quotient::User *user);
|
||||
|
||||
[[nodiscard]] bool supportSystemTray() const;
|
||||
|
||||
|
||||
19
src/main.cpp
19
src/main.cpp
@@ -4,6 +4,7 @@
|
||||
#include <QCommandLineParser>
|
||||
#include <QIcon>
|
||||
#include <QNetworkProxyFactory>
|
||||
#include <QObject>
|
||||
#include <QQmlApplicationEngine>
|
||||
#include <QQmlContext>
|
||||
#include <QQmlNetworkAccessManagerFactory>
|
||||
@@ -28,10 +29,11 @@
|
||||
|
||||
#include "neochat-version.h"
|
||||
|
||||
#include <Quotient/keyverificationsession.h>
|
||||
#include <Quotient/accountregistry.h>
|
||||
#include <Quotient/keyverificationsession.h>
|
||||
#include <Quotient/networkaccessmanager.h>
|
||||
#include <Quotient/room.h>
|
||||
#include <Quotient/user.h>
|
||||
#include <Quotient/util.h>
|
||||
|
||||
#include "actionshandler.h"
|
||||
@@ -75,7 +77,6 @@
|
||||
#include "models/webshortcutmodel.h"
|
||||
#include "neochatconfig.h"
|
||||
#include "neochatroom.h"
|
||||
#include "neochatuser.h"
|
||||
#include "notificationsmanager.h"
|
||||
#include "pollhandler.h"
|
||||
#include "roommanager.h"
|
||||
@@ -88,7 +89,6 @@
|
||||
#endif
|
||||
#include "models/completionmodel.h"
|
||||
#include "models/statemodel.h"
|
||||
#include "neochatuser.h"
|
||||
|
||||
#ifdef HAVE_RUNNER
|
||||
#include "runner.h"
|
||||
@@ -185,10 +185,8 @@ int main(int argc, char *argv[])
|
||||
initLogging();
|
||||
|
||||
#if Quotient_VERSION_MINOR == 8
|
||||
#ifdef Quotient_E2EE_ENABLED
|
||||
Connection::setEncryptionDefault(true);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef NEOCHAT_FLATPAK
|
||||
// Copy over the included FontConfig configuration to the
|
||||
@@ -261,7 +259,7 @@ int main(int argc, char *argv[])
|
||||
qmlRegisterUncreatableType<PushNotificationState>("org.kde.neochat", 1, 0, "PushNotificationState", "ENUM");
|
||||
qmlRegisterUncreatableType<PushNotificationAction>("org.kde.neochat", 1, 0, "PushNotificationAction", "ENUM");
|
||||
qmlRegisterUncreatableType<NeoChatRoomType>("org.kde.neochat", 1, 0, "NeoChatRoomType", "ENUM");
|
||||
qmlRegisterUncreatableType<NeoChatUser>("org.kde.neochat", 1, 0, "NeoChatUser", {});
|
||||
qmlRegisterUncreatableType<User>("org.kde.neochat", 1, 0, "User", {});
|
||||
qmlRegisterUncreatableType<NeoChatRoom>("org.kde.neochat", 1, 0, "NeoChatRoom", {});
|
||||
|
||||
qRegisterMetaType<User *>("User*");
|
||||
@@ -271,7 +269,7 @@ int main(int argc, char *argv[])
|
||||
qRegisterMetaType<Connection *>("Connection*");
|
||||
qRegisterMetaType<MessageEventType>("MessageEventType");
|
||||
qRegisterMetaType<NeoChatRoom *>("NeoChatRoom*");
|
||||
qRegisterMetaType<NeoChatUser *>("NeoChatUser*");
|
||||
qRegisterMetaType<User *>("User*");
|
||||
qRegisterMetaType<GetRoomEventsJob *>("GetRoomEventsJob*");
|
||||
qRegisterMetaType<QMimeType>("QMimeType");
|
||||
#ifdef Quotient_E2EE_ENABLED
|
||||
@@ -325,11 +323,18 @@ int main(int argc, char *argv[])
|
||||
QCommandLineParser parser;
|
||||
parser.setApplicationDescription(i18n("Client for the matrix communication protocol"));
|
||||
parser.addPositionalArgument(QStringLiteral("urls"), i18n("Supports matrix: url scheme"));
|
||||
parser.addOption(QCommandLineOption("ignore-ssl-errors", i18n("Ignore all SSL Errors, e.g., unsigned certificates.")));
|
||||
|
||||
about.setupCommandLine(&parser);
|
||||
parser.process(app);
|
||||
about.processCommandLine(&parser);
|
||||
|
||||
if (parser.isSet("ignore-ssl-errors")) {
|
||||
QObject::connect(NetworkAccessManager::instance(), &QNetworkAccessManager::sslErrors, NetworkAccessManager::instance(), [](QNetworkReply *reply) {
|
||||
reply->ignoreSslErrors();
|
||||
});
|
||||
}
|
||||
|
||||
engine.addImageProvider(QLatin1String("mxc"), new MatrixImageProvider);
|
||||
engine.addImageProvider(QLatin1String("blurhash"), new BlurhashImageProvider);
|
||||
|
||||
|
||||
@@ -65,7 +65,6 @@ QVariant DevicesModel::data(const QModelIndex &index, int role) const
|
||||
if (device.deviceId == m_connection->deviceId()) {
|
||||
return This;
|
||||
}
|
||||
#ifdef Quotient_E2EE_ENABLED
|
||||
if (!m_connection->isKnownE2eeCapableDevice(m_connection->userId(), device.deviceId)) {
|
||||
return Unencrypted;
|
||||
}
|
||||
@@ -74,9 +73,6 @@ QVariant DevicesModel::data(const QModelIndex &index, int role) const
|
||||
} else {
|
||||
return Unverified;
|
||||
}
|
||||
#else
|
||||
return Unverified;
|
||||
#endif
|
||||
}
|
||||
return {};
|
||||
}
|
||||
@@ -161,7 +157,6 @@ void DevicesModel::setConnection(Connection *connection)
|
||||
Q_EMIT connectionChanged();
|
||||
fetchDevices();
|
||||
|
||||
#ifdef Quotient_E2EE_ENABLED
|
||||
connect(m_connection, &Connection::sessionVerified, this, [this](const QString &userId, const QString &deviceId) {
|
||||
Q_UNUSED(deviceId);
|
||||
if (userId == Controller::instance().activeConnection()->userId()) {
|
||||
@@ -171,7 +166,6 @@ void DevicesModel::setConnection(Connection *connection)
|
||||
connect(m_connection, &Connection::finishedQueryingKeys, this, [this]() {
|
||||
fetchDevices();
|
||||
});
|
||||
#endif
|
||||
}
|
||||
|
||||
#include "moc_devicesmodel.cpp"
|
||||
|
||||
@@ -8,6 +8,8 @@
|
||||
|
||||
#include <QDebug>
|
||||
|
||||
#include <cmath>
|
||||
|
||||
using namespace Quotient;
|
||||
|
||||
bool operator<(const LiveLocationData &lhs, const LiveLocationData &rhs)
|
||||
@@ -88,6 +90,11 @@ QVariant LiveLocationsModel::data(const QModelIndex &index, int roleName) const
|
||||
const auto timeout = data.beaconInfo.value("timeout"_ls).toDouble(600000);
|
||||
return lastTs + timeout >= QDateTime::currentDateTime().toMSecsSinceEpoch();
|
||||
}
|
||||
case HeadingRole: {
|
||||
bool success = false;
|
||||
const auto heading = data.beacon["org.matrix.msc3488.location"_ls].toObject()["org.kde.itinerary.heading"_ls].toString().toDouble(&success);
|
||||
return success ? heading : NAN;
|
||||
}
|
||||
}
|
||||
|
||||
return {};
|
||||
@@ -101,6 +108,7 @@ QHash<int, QByteArray> LiveLocationsModel::roleNames() const
|
||||
r.insert(AssetRole, "asset");
|
||||
r.insert(AuthorRole, "author");
|
||||
r.insert(IsLiveRole, "isLive");
|
||||
r.insert(HeadingRole, "heading");
|
||||
return r;
|
||||
}
|
||||
|
||||
|
||||
@@ -49,6 +49,7 @@ public:
|
||||
AssetRole, /**< Type of location event, e.g. self pin of the user location. */
|
||||
AuthorRole, /**< The author of the event. */
|
||||
IsLiveRole, /**< Boolean that indicates whether a live location beacon is still live. */
|
||||
HeadingRole, /**< Heading in degree (not part of any MSC yet, using an Itinerary extension). */
|
||||
};
|
||||
Q_ENUM(Roles)
|
||||
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
|
||||
#include "locationsmodel.h"
|
||||
|
||||
#include <QGuiApplication>
|
||||
|
||||
using namespace Quotient;
|
||||
|
||||
LocationsModel::LocationsModel(QObject *parent)
|
||||
@@ -43,6 +45,10 @@ LocationsModel::LocationsModel(QObject *parent)
|
||||
});
|
||||
|
||||
connect(this, &LocationsModel::rowsInserted, this, &LocationsModel::boundingBoxChanged);
|
||||
|
||||
connect(static_cast<QGuiApplication *>(QGuiApplication::instance()), &QGuiApplication::paletteChanged, this, [this] {
|
||||
Q_EMIT dataChanged(index(0, 0), index(rowCount() - 1, 0), {AuthorRole});
|
||||
});
|
||||
}
|
||||
|
||||
void LocationsModel::addLocation(const RoomMessageEvent *event)
|
||||
@@ -61,7 +67,7 @@ void LocationsModel::addLocation(const RoomMessageEvent *event)
|
||||
.latitude = latitude,
|
||||
.longitude = longitude,
|
||||
.content = event->contentJson(),
|
||||
.author = dynamic_cast<NeoChatUser *>(m_room->user(event->senderId())),
|
||||
.author = m_room->user(event->senderId()),
|
||||
};
|
||||
endInsertRows();
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
#include "neochatroom.h"
|
||||
|
||||
#include <Quotient/events/roommessageevent.h>
|
||||
#include <Quotient/user.h>
|
||||
|
||||
class LocationsModel : public QAbstractListModel
|
||||
{
|
||||
@@ -51,7 +52,7 @@ private:
|
||||
float latitude;
|
||||
float longitude;
|
||||
QJsonObject content;
|
||||
NeoChatUser *author;
|
||||
Quotient::User *author;
|
||||
};
|
||||
QList<LocationData> m_locations;
|
||||
void addLocation(const Quotient::RoomMessageEvent *event);
|
||||
|
||||
@@ -25,7 +25,6 @@
|
||||
#include <KLocalizedString>
|
||||
|
||||
#include "models/reactionmodel.h"
|
||||
#include "neochatuser.h"
|
||||
#include "texthandler.h"
|
||||
|
||||
using namespace Quotient;
|
||||
@@ -78,7 +77,7 @@ MessageEventModel::MessageEventModel(QObject *parent)
|
||||
: QAbstractListModel(parent)
|
||||
{
|
||||
connect(static_cast<QGuiApplication *>(QGuiApplication::instance()), &QGuiApplication::paletteChanged, this, [this] {
|
||||
Q_EMIT dataChanged(index(0, 0), index(rowCount() - 1, 0), {AuthorRole, ReplyRole});
|
||||
Q_EMIT dataChanged(index(0, 0), index(rowCount() - 1, 0), {AuthorRole, ReplyAuthor, ReadMarkersRole});
|
||||
});
|
||||
}
|
||||
|
||||
@@ -531,7 +530,7 @@ QVariant MessageEventModel::data(const QModelIndex &idx, int role) const
|
||||
}
|
||||
|
||||
if (role == AuthorRole) {
|
||||
auto author = static_cast<NeoChatUser *>(isPending ? m_currentRoom->localUser() : m_currentRoom->user(evt.senderId()));
|
||||
auto author = isPending ? m_currentRoom->localUser() : m_currentRoom->user(evt.senderId());
|
||||
return m_currentRoom->getUser(author);
|
||||
}
|
||||
|
||||
@@ -679,7 +678,7 @@ QVariant MessageEventModel::data(const QModelIndex &idx, int role) const
|
||||
auto replyPtr = m_currentRoom->getReplyForEvent(evt);
|
||||
|
||||
if (replyPtr) {
|
||||
auto replyUser = static_cast<NeoChatUser *>(m_currentRoom->user(replyPtr->senderId()));
|
||||
auto replyUser = m_currentRoom->user(replyPtr->senderId());
|
||||
return m_currentRoom->getUser(replyUser);
|
||||
} else {
|
||||
return m_currentRoom->getUser(nullptr);
|
||||
@@ -808,7 +807,7 @@ QVariant MessageEventModel::data(const QModelIndex &idx, int role) const
|
||||
QVariantList users;
|
||||
users.reserve(userIds.size());
|
||||
for (const auto &userId : userIds) {
|
||||
auto user = static_cast<NeoChatUser *>(m_currentRoom->user(userId));
|
||||
auto user = m_currentRoom->user(userId);
|
||||
users += m_currentRoom->getUser(user);
|
||||
}
|
||||
|
||||
@@ -836,7 +835,7 @@ QVariant MessageEventModel::data(const QModelIndex &idx, int role) const
|
||||
*/
|
||||
QString readMarkersString = i18np("1 user: ", "%1 users: ", userIds.size());
|
||||
for (const auto &userId : userIds) {
|
||||
auto user = static_cast<NeoChatUser *>(m_currentRoom->user(userId));
|
||||
auto user = m_currentRoom->user(userId);
|
||||
readMarkersString += user->displayname(m_currentRoom) + i18nc("list separator", ", ");
|
||||
}
|
||||
readMarkersString.chop(2);
|
||||
@@ -877,7 +876,7 @@ QVariant MessageEventModel::data(const QModelIndex &idx, int role) const
|
||||
}
|
||||
|
||||
if (role == DisplayNameForInitialsRole) {
|
||||
auto user = static_cast<NeoChatUser *>(isPending ? m_currentRoom->localUser() : m_currentRoom->user(evt.senderId()));
|
||||
auto user = isPending ? m_currentRoom->localUser() : m_currentRoom->user(evt.senderId());
|
||||
return user->displayname(m_currentRoom).remove(QStringLiteral(" (%1)").arg(user->id()));
|
||||
}
|
||||
|
||||
@@ -889,7 +888,7 @@ QVariant MessageEventModel::data(const QModelIndex &idx, int role) const
|
||||
}
|
||||
return previousDisplayName;
|
||||
} else {
|
||||
auto author = static_cast<NeoChatUser *>(isPending ? m_currentRoom->localUser() : m_currentRoom->user(evt.senderId()));
|
||||
auto author = isPending ? m_currentRoom->localUser() : m_currentRoom->user(evt.senderId());
|
||||
return m_currentRoom->htmlSafeMemberName(author->id());
|
||||
}
|
||||
}
|
||||
@@ -1062,13 +1061,13 @@ void MessageEventModel::createReactionModelForEvent(const Quotient::RoomMessageE
|
||||
return;
|
||||
};
|
||||
|
||||
QMap<QString, QList<NeoChatUser *>> reactions = {};
|
||||
QMap<QString, QList<Quotient::User *>> reactions = {};
|
||||
for (const auto &a : annotations) {
|
||||
if (a->isRedacted()) { // Just in case?
|
||||
continue;
|
||||
}
|
||||
if (const auto &e = eventCast<const ReactionEvent>(a)) {
|
||||
reactions[e->key()].append(static_cast<NeoChatUser *>(m_currentRoom->user(e->senderId())));
|
||||
reactions[e->key()].append(m_currentRoom->user(e->senderId()));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1095,7 +1094,7 @@ void MessageEventModel::createReactionModelForEvent(const Quotient::RoomMessageE
|
||||
if (m_reactionModels.contains(eventId)) {
|
||||
m_reactionModels[eventId]->setReactions(res);
|
||||
} else if (res.size() > 0) {
|
||||
m_reactionModels[eventId] = new ReactionModel(this, res, static_cast<NeoChatUser *>(m_currentRoom->localUser()));
|
||||
m_reactionModels[eventId] = new ReactionModel(this, res, m_currentRoom->localUser());
|
||||
} else {
|
||||
if (m_reactionModels.contains(eventId)) {
|
||||
delete m_reactionModels[eventId];
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
|
||||
#include <KLocalizedString>
|
||||
|
||||
#include "neochatuser.h"
|
||||
#include <Quotient/user.h>
|
||||
|
||||
ReactionModel::ReactionModel(QObject *parent, QList<Reaction> reactions, NeoChatUser *localUser)
|
||||
ReactionModel::ReactionModel(QObject *parent, QList<Reaction> reactions, Quotient::User *localUser)
|
||||
: QAbstractListModel(parent)
|
||||
, m_localUser(localUser)
|
||||
{
|
||||
|
||||
@@ -5,7 +5,10 @@
|
||||
|
||||
#include <QAbstractListModel>
|
||||
|
||||
class NeoChatUser;
|
||||
namespace Quotient
|
||||
{
|
||||
class User;
|
||||
}
|
||||
|
||||
/**
|
||||
* @class ReactionModel
|
||||
@@ -36,7 +39,7 @@ public:
|
||||
HasLocalUser, /**< Whether the local user is in the list of authors. */
|
||||
};
|
||||
|
||||
explicit ReactionModel(QObject *parent = nullptr, QList<Reaction> reactions = {}, NeoChatUser *localUser = nullptr);
|
||||
explicit ReactionModel(QObject *parent = nullptr, QList<Reaction> reactions = {}, Quotient::User *localUser = nullptr);
|
||||
|
||||
/**
|
||||
* @brief Get the given role value at the given index.
|
||||
@@ -67,6 +70,6 @@ public:
|
||||
private:
|
||||
QList<Reaction> m_reactions;
|
||||
|
||||
NeoChatUser *m_localUser;
|
||||
Quotient::User *m_localUser;
|
||||
};
|
||||
Q_DECLARE_METATYPE(ReactionModel *)
|
||||
|
||||
@@ -5,13 +5,14 @@
|
||||
|
||||
#include "messageeventmodel.h"
|
||||
#include "neochatroom.h"
|
||||
#include "neochatuser.h"
|
||||
|
||||
#include <QGuiApplication>
|
||||
|
||||
#include <Quotient/connection.h>
|
||||
#include <Quotient/events/stickerevent.h>
|
||||
|
||||
#include <KLocalizedString>
|
||||
|
||||
#include <Quotient/connection.h>
|
||||
|
||||
using namespace Quotient;
|
||||
|
||||
// TODO search only in the current room
|
||||
@@ -19,6 +20,9 @@ using namespace Quotient;
|
||||
SearchModel::SearchModel(QObject *parent)
|
||||
: QAbstractListModel(parent)
|
||||
{
|
||||
connect(static_cast<QGuiApplication *>(QGuiApplication::instance()), &QGuiApplication::paletteChanged, this, [this] {
|
||||
Q_EMIT dataChanged(index(0, 0), index(rowCount() - 1, 0), {AuthorRole, ReadMarkersRole});
|
||||
});
|
||||
}
|
||||
|
||||
QString SearchModel::searchText() const
|
||||
@@ -109,7 +113,7 @@ QVariant SearchModel::data(const QModelIndex &index, int role) const
|
||||
return false;
|
||||
case ReplyAuthorRole:
|
||||
if (const auto &replyPtr = m_room->getReplyForEvent(event)) {
|
||||
return m_room->getUser(static_cast<NeoChatUser *>(m_room->user(replyPtr->senderId())));
|
||||
return m_room->getUser(m_room->user(replyPtr->senderId()));
|
||||
} else {
|
||||
return m_room->getUser(nullptr);
|
||||
}
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
|
||||
#include "userlistmodel.h"
|
||||
|
||||
#include <QGuiApplication>
|
||||
|
||||
#include <Quotient/connection.h>
|
||||
#include <Quotient/events/roompowerlevelsevent.h>
|
||||
|
||||
@@ -14,6 +16,9 @@ UserListModel::UserListModel(QObject *parent)
|
||||
: QAbstractListModel(parent)
|
||||
, m_currentRoom(nullptr)
|
||||
{
|
||||
connect(static_cast<QGuiApplication *>(QGuiApplication::instance()), &QGuiApplication::paletteChanged, this, [this]() {
|
||||
refreshAllUsers();
|
||||
});
|
||||
}
|
||||
|
||||
void UserListModel::setRoom(NeoChatRoom *room)
|
||||
@@ -71,8 +76,7 @@ QVariant UserListModel::data(const QModelIndex &index, int role) const
|
||||
return user->id();
|
||||
}
|
||||
if (role == AvatarRole) {
|
||||
auto neoChatUser = static_cast<NeoChatUser *>(user);
|
||||
return m_currentRoom->avatarForMember(neoChatUser);
|
||||
return m_currentRoom->avatarForMember(user);
|
||||
}
|
||||
if (role == ObjectRole) {
|
||||
return QVariant::fromValue(user);
|
||||
|
||||
@@ -4,8 +4,10 @@
|
||||
#include "neochatroom.h"
|
||||
|
||||
#include <QFileInfo>
|
||||
#include <QGuiApplication>
|
||||
#include <QMetaObject>
|
||||
#include <QMimeDatabase>
|
||||
#include <QPalette>
|
||||
#include <QTemporaryFile>
|
||||
#include <QTextDocument>
|
||||
|
||||
@@ -13,6 +15,7 @@
|
||||
#include <QMediaPlayer>
|
||||
|
||||
#include <Quotient/jobs/basejob.h>
|
||||
#include <Quotient/user.h>
|
||||
#include <qcoro/qcorosignal.h>
|
||||
|
||||
#include <Quotient/connection.h>
|
||||
@@ -43,6 +46,7 @@
|
||||
#include "neochatconfig.h"
|
||||
#include "notificationsmanager.h"
|
||||
#include "texthandler.h"
|
||||
#include "utils.h"
|
||||
|
||||
#include <KConfig>
|
||||
#include <KConfigGroup>
|
||||
@@ -412,11 +416,11 @@ QVariantList NeoChatRoom::getUsers(const QString &keyword, int limit) const
|
||||
int count = 0;
|
||||
for (const auto u : userList) {
|
||||
if (u->displayname(this).contains(keyword, Qt::CaseInsensitive)) {
|
||||
NeoChatUser user(u->id(), u->connection());
|
||||
Quotient::User user(u->id(), u->connection());
|
||||
QVariantMap userVariant{{QStringLiteral("id"), user.id()},
|
||||
{QStringLiteral("displayName"), user.displayname(this)},
|
||||
{QStringLiteral("avatarMediaId"), user.avatarMediaId(this)},
|
||||
{QStringLiteral("color"), user.color()}};
|
||||
{QStringLiteral("color"), Utils::getUserColor(user.hueF())}};
|
||||
|
||||
matchedList.append(QVariant::fromValue(userVariant));
|
||||
count++;
|
||||
@@ -442,11 +446,10 @@ static const QVariantMap emptyUser = {
|
||||
|
||||
QVariantMap NeoChatRoom::getUser(const QString &userID) const
|
||||
{
|
||||
NeoChatUser *userObject = static_cast<NeoChatUser *>(user(userID));
|
||||
return getUser(userObject);
|
||||
return getUser(user(userID));
|
||||
}
|
||||
|
||||
QVariantMap NeoChatRoom::getUser(NeoChatUser *user) const
|
||||
QVariantMap NeoChatRoom::getUser(User *user) const
|
||||
{
|
||||
if (user == nullptr) {
|
||||
return emptyUser;
|
||||
@@ -458,7 +461,7 @@ QVariantMap NeoChatRoom::getUser(NeoChatUser *user) const
|
||||
{QStringLiteral("displayName"), user->displayname(this)},
|
||||
{QStringLiteral("avatarSource"), avatarForMember(user)},
|
||||
{QStringLiteral("avatarMediaId"), user->avatarMediaId(this)},
|
||||
{QStringLiteral("color"), user->color()},
|
||||
{QStringLiteral("color"), Utils::getUserColor(user->hueF())},
|
||||
{QStringLiteral("object"), QVariant::fromValue(user)},
|
||||
};
|
||||
}
|
||||
@@ -539,7 +542,7 @@ QString NeoChatRoom::eventToString(const RoomEvent &evt, Qt::TextFormat format,
|
||||
|
||||
if (prettyPrint) {
|
||||
subjectName = QStringLiteral("<a href=\"https://matrix.to/#/%1\" style=\"color: %2\">%3</a>")
|
||||
.arg(e.userId(), static_cast<NeoChatUser *>(user(e.userId()))->color().name(), subjectName);
|
||||
.arg(e.userId(), Utils::getUserColor(user(e.userId())->hueF()).name(), subjectName);
|
||||
}
|
||||
|
||||
// The below code assumes senderName output in AuthorRole
|
||||
@@ -1682,7 +1685,7 @@ QVariantMap NeoChatRoom::chatBoxReplyUser() const
|
||||
if (m_chatBoxReplyId.isEmpty()) {
|
||||
return emptyUser;
|
||||
}
|
||||
return getUser(static_cast<NeoChatUser *>(user((*findInTimeline(m_chatBoxReplyId))->senderId())));
|
||||
return getUser(user((*findInTimeline(m_chatBoxReplyId))->senderId()));
|
||||
}
|
||||
|
||||
QString NeoChatRoom::chatBoxReplyMessage() const
|
||||
@@ -1698,7 +1701,7 @@ QVariantMap NeoChatRoom::chatBoxEditUser() const
|
||||
if (m_chatBoxEditId.isEmpty()) {
|
||||
return emptyUser;
|
||||
}
|
||||
return getUser(static_cast<NeoChatUser *>(user((*findInTimeline(m_chatBoxEditId))->senderId())));
|
||||
return getUser(user((*findInTimeline(m_chatBoxEditId))->senderId()));
|
||||
}
|
||||
|
||||
QString NeoChatRoom::chatBoxEditMessage() const
|
||||
@@ -1904,9 +1907,10 @@ int NeoChatRoom::maxRoomVersion() const
|
||||
}
|
||||
return maxVersion;
|
||||
}
|
||||
NeoChatUser *NeoChatRoom::directChatRemoteUser() const
|
||||
|
||||
Quotient::User *NeoChatRoom::directChatRemoteUser() const
|
||||
{
|
||||
return dynamic_cast<NeoChatUser *>(connection()->directChatUsers(this)[0]);
|
||||
return connection()->directChatUsers(this)[0];
|
||||
}
|
||||
|
||||
void NeoChatRoom::sendLocation(float lat, float lon, const QString &description)
|
||||
@@ -1938,7 +1942,7 @@ QByteArray NeoChatRoom::roomAcountDataJson(const QString &eventType)
|
||||
return QJsonDocument(accountData(eventType)->fullJson()).toJson();
|
||||
}
|
||||
|
||||
QUrl NeoChatRoom::avatarForMember(NeoChatUser *user) const
|
||||
QUrl NeoChatRoom::avatarForMember(Quotient::User *user) const
|
||||
{
|
||||
const auto &url = memberAvatarUrl(user->id());
|
||||
if (url.isEmpty() || url.scheme() != "mxc"_ls) {
|
||||
|
||||
@@ -10,10 +10,15 @@
|
||||
#include <QTextCursor>
|
||||
|
||||
#include <QCoroTask>
|
||||
#include <Quotient/user.h>
|
||||
|
||||
#include "neochatuser.h"
|
||||
#include "pollhandler.h"
|
||||
|
||||
namespace Quotient
|
||||
{
|
||||
class User;
|
||||
}
|
||||
|
||||
class PushNotificationState : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
@@ -64,7 +69,7 @@ class NeoChatRoom : public Quotient::Room
|
||||
*
|
||||
* The list does not include the local user.
|
||||
*
|
||||
* This is different to getting a list of NeoChatUser objects or Quotient::User objects
|
||||
* This is different to getting a list of Quotient::User objects
|
||||
* as neither of those can provide details like the displayName or avatarMediaId
|
||||
* without the room context as these can vary from room to room. This function
|
||||
* provides the room context and puts the result as a list of QVariantMap objects.
|
||||
@@ -76,7 +81,7 @@ class NeoChatRoom : public Quotient::Room
|
||||
* - displayName - Display name in the context of this room.
|
||||
* - display - Name in the context of this room.
|
||||
*
|
||||
* @sa Quotient::User, NeoChatUser
|
||||
* @sa Quotient::User
|
||||
*/
|
||||
Q_PROPERTY(QVariantList usersTyping READ getUsersTyping NOTIFY typingChanged)
|
||||
|
||||
@@ -119,7 +124,7 @@ class NeoChatRoom : public Quotient::Room
|
||||
/**
|
||||
* @brief Get a user object for the other person in a direct chat.
|
||||
*/
|
||||
Q_PROPERTY(NeoChatUser *directChatRemoteUser READ directChatRemoteUser CONSTANT)
|
||||
Q_PROPERTY(Quotient::User *directChatRemoteUser READ directChatRemoteUser CONSTANT)
|
||||
|
||||
/**
|
||||
* @brief If the room is a space.
|
||||
@@ -316,7 +321,7 @@ class NeoChatRoom : public Quotient::Room
|
||||
/**
|
||||
* @brief Get the user for the message being replied to.
|
||||
*
|
||||
* This is different to getting a NeoChatUser object or Quotient::User object
|
||||
* This is different to getting a Quotient::User object
|
||||
* as neither of those can provide details like the displayName or avatarMediaId
|
||||
* without the room context as these can vary from room to room.
|
||||
*
|
||||
@@ -329,9 +334,9 @@ class NeoChatRoom : public Quotient::Room
|
||||
* - avatarSource - The mxc URL for the user's avatar in the current room.
|
||||
* - avatarMediaId - Avatar id in the context of this room.
|
||||
* - color - Color for the user.
|
||||
* - object - The NeoChatUser object for the user.
|
||||
* - object - The Quotient::User object for the user.
|
||||
*
|
||||
* @sa getUser, Quotient::User, NeoChatUser
|
||||
* @sa getUser, Quotient::User
|
||||
*/
|
||||
Q_PROPERTY(QVariantMap chatBoxReplyUser READ chatBoxReplyUser NOTIFY chatBoxReplyIdChanged)
|
||||
|
||||
@@ -345,7 +350,7 @@ class NeoChatRoom : public Quotient::Room
|
||||
/**
|
||||
* @brief Get the user for the message being edited.
|
||||
*
|
||||
* This is different to getting a NeoChatUser object or Quotient::User object
|
||||
* This is different to getting a Quotient::User object
|
||||
* as neither of those can provide details like the displayName or avatarMediaId
|
||||
* without the room context as these can vary from room to room.
|
||||
*
|
||||
@@ -358,9 +363,9 @@ class NeoChatRoom : public Quotient::Room
|
||||
* - avatarSource - The mxc URL for the user's avatar in the current room.
|
||||
* - avatarMediaId - Avatar id in the context of this room.
|
||||
* - color - Color for the user.
|
||||
* - object - The NeoChatUser object for the user.
|
||||
* - object - The Quotient::User object for the user.
|
||||
*
|
||||
* @sa getUser, Quotient::User, NeoChatUser
|
||||
* @sa getUser, Quotient::User
|
||||
*/
|
||||
Q_PROPERTY(QVariantMap chatBoxEditUser READ chatBoxEditUser NOTIFY chatBoxEditIdChanged)
|
||||
|
||||
@@ -392,7 +397,7 @@ public:
|
||||
/**
|
||||
* @brief Get a list of users in the context of this room.
|
||||
*
|
||||
* This is different to getting a list of NeoChatUser objects or Quotient::User objects
|
||||
* This is different to getting a list of Quotient::User objects
|
||||
* as neither of those can provide details like the displayName or avatarMediaId
|
||||
* without the room context as these can vary from room to room. This function
|
||||
* provides the room context and returns the result as a list of QVariantMap objects.
|
||||
@@ -407,14 +412,14 @@ public:
|
||||
* - avatarMediaId - Avatar id in the context of this room.
|
||||
* - color - Color for the user.
|
||||
*
|
||||
* @sa Quotient::User, NeoChatUser
|
||||
* @sa Quotient::User
|
||||
*/
|
||||
Q_INVOKABLE [[nodiscard]] QVariantList getUsers(const QString &keyword, int limit = -1) const;
|
||||
|
||||
/**
|
||||
* @brief Get a user in the context of this room.
|
||||
*
|
||||
* This is different to getting a NeoChatUser object or Quotient::User object
|
||||
* This is different to getting a Quotient::User object
|
||||
* as neither of those can provide details like the displayName or avatarMediaId
|
||||
* without the room context as these can vary from room to room. This function
|
||||
* provides the room context and outputs the result as QVariantMap.
|
||||
@@ -431,16 +436,16 @@ public:
|
||||
* - avatarSource - The mxc URL for the user's avatar in the current room.
|
||||
* - avatarMediaId - Avatar id in the context of this room.
|
||||
* - color - Color for the user.
|
||||
* - object - The NeoChatUser object for the user.
|
||||
* - object - The Quotient::User object for the user.
|
||||
*
|
||||
* @sa Quotient::User, NeoChatUser
|
||||
* @sa Quotient::User
|
||||
*/
|
||||
Q_INVOKABLE [[nodiscard]] QVariantMap getUser(const QString &userID) const;
|
||||
|
||||
/**
|
||||
* @brief Get a user in the context of this room.
|
||||
*
|
||||
* This is different to getting a NeoChatUser object or Quotient::User object
|
||||
* This is different to getting a Quotient::User object
|
||||
* as neither of those can provide details like the displayName or avatarMediaId
|
||||
* without the room context as these can vary from room to room. This function
|
||||
* provides the room context and outputs the result as QVariantMap.
|
||||
@@ -457,11 +462,11 @@ public:
|
||||
* - avatarSource - The mxc URL for the user's avatar in the current room.
|
||||
* - avatarMediaId - Avatar id in the context of this room.
|
||||
* - color - Color for the user.
|
||||
* - object - The NeoChatUser object for the user.
|
||||
* - object - The Quotient::User object for the user.
|
||||
*
|
||||
* @sa Quotient::User, NeoChatUser
|
||||
* @sa Quotient::User
|
||||
*/
|
||||
Q_INVOKABLE [[nodiscard]] QVariantMap getUser(NeoChatUser *user) const;
|
||||
Q_INVOKABLE [[nodiscard]] QVariantMap getUser(Quotient::User *user) const;
|
||||
|
||||
[[nodiscard]] QVariantList getUsersTyping() const;
|
||||
|
||||
@@ -602,7 +607,7 @@ public:
|
||||
|
||||
[[nodiscard]] QString avatarMediaId() const;
|
||||
|
||||
NeoChatUser *directChatRemoteUser() const;
|
||||
Quotient::User *directChatRemoteUser() const;
|
||||
|
||||
[[nodiscard]] bool isSpace();
|
||||
|
||||
@@ -818,7 +823,7 @@ public:
|
||||
*/
|
||||
Q_INVOKABLE QByteArray roomAcountDataJson(const QString &eventType);
|
||||
|
||||
Q_INVOKABLE [[nodiscard]] QUrl avatarForMember(NeoChatUser *user) const;
|
||||
Q_INVOKABLE [[nodiscard]] QUrl avatarForMember(Quotient::User *user) const;
|
||||
|
||||
/**
|
||||
* @brief Returns the event that is being replied to. This includes events that were manually loaded using NeoChatRoom::loadReply.
|
||||
|
||||
@@ -1,43 +0,0 @@
|
||||
// SPDX-FileCopyrightText: 2019 Black Hat <bhat@encom.eu.org>
|
||||
// SPDX-License-Identifier: GPL-3.0-only
|
||||
|
||||
#include "neochatuser.h"
|
||||
|
||||
#include <QGuiApplication>
|
||||
#include <QJsonObject>
|
||||
#include <QPalette>
|
||||
|
||||
#include <Quotient/connection.h>
|
||||
|
||||
using namespace Quotient;
|
||||
|
||||
NeoChatUser::NeoChatUser(QString userId, Connection *connection)
|
||||
: User(std::move(userId), connection)
|
||||
{
|
||||
connect(static_cast<QGuiApplication *>(QGuiApplication::instance()), &QGuiApplication::paletteChanged, this, &NeoChatUser::polishColor);
|
||||
polishColor();
|
||||
}
|
||||
|
||||
QColor NeoChatUser::color()
|
||||
{
|
||||
return m_color;
|
||||
}
|
||||
|
||||
void NeoChatUser::setColor(const QColor &color)
|
||||
{
|
||||
if (m_color == color) {
|
||||
return;
|
||||
}
|
||||
|
||||
m_color = color;
|
||||
Q_EMIT colorChanged(m_color);
|
||||
}
|
||||
|
||||
void NeoChatUser::polishColor()
|
||||
{
|
||||
const auto lightness = static_cast<QGuiApplication *>(QGuiApplication::instance())->palette().color(QPalette::Active, QPalette::Window).lightnessF();
|
||||
// https://github.com/quotient-im/libQuotient/wiki/User-color-coding-standard-draft-proposal
|
||||
setColor(QColor::fromHslF(hueF(), 1, -0.7 * lightness + 0.9, 1));
|
||||
}
|
||||
|
||||
#include "moc_neochatuser.cpp"
|
||||
@@ -1,39 +0,0 @@
|
||||
// SPDX-FileCopyrightText: 2018-2019 Black Hat <bhat@encom.eu.org>
|
||||
// SPDX-License-Identifier: GPL-3.0-only
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QObject>
|
||||
|
||||
#include <Quotient/user.h>
|
||||
|
||||
/**
|
||||
* @class NeoChatUser
|
||||
*
|
||||
* A class inherited from Quotient::User to add a user color function.
|
||||
*
|
||||
* @sa Quotient::User
|
||||
*/
|
||||
class NeoChatUser : public Quotient::User
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
/**
|
||||
* @brief The color to use for the user.
|
||||
*/
|
||||
Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged)
|
||||
public:
|
||||
explicit NeoChatUser(QString userId, Quotient::Connection *connection);
|
||||
|
||||
public Q_SLOTS:
|
||||
QColor color();
|
||||
void setColor(const QColor &color);
|
||||
|
||||
Q_SIGNALS:
|
||||
void colorChanged(QColor _t1);
|
||||
|
||||
private:
|
||||
QColor m_color;
|
||||
|
||||
void polishColor();
|
||||
};
|
||||
@@ -36,7 +36,7 @@ QQC2.Control {
|
||||
/**
|
||||
* @brief The current room that user is viewing.
|
||||
*/
|
||||
property NeoChatRoom currentRoom
|
||||
required property NeoChatRoom currentRoom
|
||||
|
||||
/**
|
||||
* @brief The QQC2.TextArea object.
|
||||
@@ -55,10 +55,10 @@ QQC2.Control {
|
||||
Kirigami.Action {
|
||||
id: attachmentAction
|
||||
|
||||
property bool isBusy: currentRoom && currentRoom.hasFileUploading
|
||||
property bool isBusy: root.currentRoom && root.currentRoom.hasFileUploading
|
||||
|
||||
// Matrix does not allow sending attachments in replies
|
||||
visible: currentRoom.chatBoxReplyId.length === 0 && currentRoom.chatBoxAttachmentPath.length === 0
|
||||
visible: root.currentRoom.chatBoxReplyId.length === 0 && root.currentRoom.chatBoxAttachmentPath.length === 0
|
||||
icon.name: "mail-attachment"
|
||||
text: i18n("Attach an image or file")
|
||||
displayHint: Kirigami.DisplayHint.IconOnly
|
||||
@@ -72,7 +72,7 @@ QQC2.Control {
|
||||
if (!path) {
|
||||
return;
|
||||
}
|
||||
currentRoom.chatBoxAttachmentPath = path;
|
||||
root.currentRoom.chatBoxAttachmentPath = path;
|
||||
})
|
||||
fileDialog.open()
|
||||
}
|
||||
@@ -106,7 +106,7 @@ QQC2.Control {
|
||||
displayHint: QQC2.AbstractButton.IconOnly
|
||||
|
||||
onTriggered: {
|
||||
locationChooserComponent.createObject(QQC2.ApplicationWindow.overlay, {room: currentRoom}).open()
|
||||
locationChooserComponent.createObject(QQC2.ApplicationWindow.overlay, {room: root.currentRoom}).open()
|
||||
}
|
||||
},
|
||||
Kirigami.Action {
|
||||
@@ -162,10 +162,12 @@ QQC2.Control {
|
||||
leftPadding: LayoutMirroring.enabled ? actionsRow.width : Kirigami.Units.largeSpacing
|
||||
rightPadding: LayoutMirroring.enabled ? Kirigami.Units.largeSpacing : actionsRow.width + x * 2 + Kirigami.Units.largeSpacing * 2
|
||||
|
||||
placeholderText: readOnly ? i18n("This room is encrypted. Build libQuotient with encryption enabled to send encrypted messages.") : currentRoom.usesEncryption ? i18n("Send an encrypted message…") : currentRoom.chatBoxAttachmentPath.length > 0 ? i18n("Set an attachment caption...") : i18n("Send a message…")
|
||||
placeholderText: readOnly ? i18n("This room is encrypted. Build libQuotient with encryption enabled to send encrypted messages.") : root.currentRoom.usesEncryption ? i18n("Send an encrypted message…") : root.currentRoom.chatBoxAttachmentPath.length > 0 ? i18n("Set an attachment caption...") : i18n("Send a message…")
|
||||
verticalAlignment: TextEdit.AlignVCenter
|
||||
wrapMode: Text.Wrap
|
||||
readOnly: (currentRoom.usesEncryption && !Controller.encryptionSupported)
|
||||
readOnly: (root.currentRoom.usesEncryption && !Controller.encryptionSupported)
|
||||
|
||||
Accessible.description: placeholderText
|
||||
|
||||
Timer {
|
||||
id: repeatTimer
|
||||
@@ -175,10 +177,10 @@ QQC2.Control {
|
||||
onTextChanged: {
|
||||
if (!repeatTimer.running && Config.typingNotifications) {
|
||||
var textExists = text.length > 0
|
||||
currentRoom.sendTypingNotification(textExists)
|
||||
root.currentRoom.sendTypingNotification(textExists)
|
||||
textExists ? repeatTimer.start() : repeatTimer.stop()
|
||||
}
|
||||
currentRoom.chatBoxText = text
|
||||
root.currentRoom.chatBoxText = text
|
||||
}
|
||||
onCursorRectangleChanged: chatBarScrollView.ensureVisible(cursorRectangle)
|
||||
onSelectedTextChanged: {
|
||||
@@ -205,7 +207,7 @@ QQC2.Control {
|
||||
remove(cursorPosition, cursorPosition + 1)
|
||||
}
|
||||
if (textField.text == selectedText || textField.text.length <= 1) {
|
||||
currentRoom.sendTypingNotification(false)
|
||||
root.currentRoom.sendTypingNotification(false)
|
||||
repeatTimer.stop()
|
||||
}
|
||||
if (quickFormatBar.visible) {
|
||||
@@ -239,16 +241,16 @@ QQC2.Control {
|
||||
if (event.key === Qt.Key_V && event.modifiers & Qt.ControlModifier) {
|
||||
root.pasteImage();
|
||||
} else if (event.key === Qt.Key_Up && event.modifiers & Qt.ControlModifier) {
|
||||
currentRoom.replyLastMessage();
|
||||
root.currentRoom.replyLastMessage();
|
||||
} else if (event.key === Qt.Key_Up && textField.text.length === 0) {
|
||||
currentRoom.editLastMessage();
|
||||
root.currentRoom.editLastMessage();
|
||||
} else if (event.key === Qt.Key_Up && completionMenu.visible) {
|
||||
completionMenu.decrementIndex()
|
||||
} else if (event.key === Qt.Key_Down && completionMenu.visible) {
|
||||
completionMenu.incrementIndex()
|
||||
} else if (event.key === Qt.Key_Backspace) {
|
||||
if (textField.text == selectedText || textField.text.length <= 1) {
|
||||
currentRoom.sendTypingNotification(false)
|
||||
root.currentRoom.sendTypingNotification(false)
|
||||
repeatTimer.stop()
|
||||
}
|
||||
if (quickFormatBar.visible && selectedText.length > 0) {
|
||||
@@ -280,19 +282,19 @@ QQC2.Control {
|
||||
Component {
|
||||
id: replyPane
|
||||
ReplyPane {
|
||||
userName: currentRoom.chatBoxReplyUser.displayName
|
||||
userColor: currentRoom.chatBoxReplyUser.color
|
||||
userAvatar: currentRoom.chatBoxReplyUser.avatarSource
|
||||
text: currentRoom.chatBoxReplyMessage
|
||||
userName: root.currentRoom.chatBoxReplyUser.displayName
|
||||
userColor: root.currentRoom.chatBoxReplyUser.color
|
||||
userAvatar: root.currentRoom.chatBoxReplyUser.avatarSource
|
||||
text: root.currentRoom.chatBoxReplyMessage
|
||||
}
|
||||
}
|
||||
Component {
|
||||
id: attachmentPane
|
||||
AttachmentPane {
|
||||
attachmentPath: currentRoom.chatBoxAttachmentPath
|
||||
attachmentPath: root.currentRoom.chatBoxAttachmentPath
|
||||
|
||||
onAttachmentCancelled: {
|
||||
currentRoom.chatBoxAttachmentPath = "";
|
||||
root.currentRoom.chatBoxAttachmentPath = "";
|
||||
root.forceActiveFocus()
|
||||
}
|
||||
}
|
||||
@@ -344,8 +346,8 @@ QQC2.Control {
|
||||
text: i18nc("@action:button", "Cancel reply")
|
||||
icon.name: "dialog-close"
|
||||
onTriggered: {
|
||||
currentRoom.chatBoxReplyId = "";
|
||||
currentRoom.chatBoxAttachmentPath = "";
|
||||
root.currentRoom.chatBoxReplyId = "";
|
||||
root.currentRoom.chatBoxAttachmentPath = "";
|
||||
root.forceActiveFocus()
|
||||
}
|
||||
}
|
||||
@@ -386,7 +388,7 @@ QQC2.Control {
|
||||
|
||||
PieProgressBar {
|
||||
visible: modelData.isBusy
|
||||
progress: currentRoom.fileUploadingProgress
|
||||
progress: root.currentRoom.fileUploadingProgress
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -401,6 +403,8 @@ QQC2.Control {
|
||||
includeCustom: true
|
||||
closeOnChosen: false
|
||||
|
||||
currentRoom: root.currentRoom
|
||||
|
||||
onChosen: insertText(emoji)
|
||||
onClosed: if (emojiButton.checked) emojiButton.checked = false
|
||||
}
|
||||
@@ -466,15 +470,15 @@ QQC2.Control {
|
||||
if (localPath.length === 0) {
|
||||
return;
|
||||
}
|
||||
currentRoom.chatBoxAttachmentPath = localPath
|
||||
root.currentRoom.chatBoxAttachmentPath = localPath
|
||||
}
|
||||
|
||||
function postMessage() {
|
||||
actionsHandler.handleNewMessage();
|
||||
repeatTimer.stop()
|
||||
currentRoom.markAllMessagesAsRead();
|
||||
root.currentRoom.markAllMessagesAsRead();
|
||||
textField.clear();
|
||||
currentRoom.chatBoxReplyId = "";
|
||||
root.currentRoom.chatBoxReplyId = "";
|
||||
messageSent()
|
||||
}
|
||||
|
||||
|
||||
@@ -30,12 +30,12 @@ import org.kde.neochat 1.0
|
||||
* @sa ChatBar
|
||||
*/
|
||||
ColumnLayout {
|
||||
id: chatBox
|
||||
id: root
|
||||
|
||||
/**
|
||||
* @brief The current room that user is viewing.
|
||||
*/
|
||||
property NeoChatRoom currentRoom
|
||||
required property NeoChatRoom currentRoom
|
||||
|
||||
/**
|
||||
* @brief A message has been sent from the chat bar.
|
||||
@@ -63,7 +63,7 @@ ColumnLayout {
|
||||
ChatBar {
|
||||
id: chatBar
|
||||
|
||||
visible: currentRoom.canSendEvent("m.room.message")
|
||||
visible: root.currentRoom.canSendEvent("m.room.message")
|
||||
|
||||
Layout.fillWidth: true
|
||||
Layout.minimumHeight: Math.max(Kirigami.Units.gridUnit * 2, implicitHeight + Kirigami.Units.largeSpacing)
|
||||
@@ -78,7 +78,7 @@ ColumnLayout {
|
||||
}
|
||||
|
||||
onMessageSent: {
|
||||
chatBox.messageSent();
|
||||
root.messageSent();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -10,8 +10,14 @@ import org.kde.neochat 1.0
|
||||
ColumnLayout {
|
||||
id: root
|
||||
|
||||
/**
|
||||
* @brief The current room that user is viewing.
|
||||
*/
|
||||
property NeoChatRoom currentRoom
|
||||
|
||||
property bool includeCustom: false
|
||||
property bool showQuickReaction: false
|
||||
property NeoChatRoom currentRoom
|
||||
|
||||
readonly property var currentEmojiModel: {
|
||||
if (includeCustom) {
|
||||
@@ -151,7 +157,7 @@ ColumnLayout {
|
||||
|
||||
ImagePacksModel {
|
||||
id: stickerPackModel
|
||||
room: currentRoom
|
||||
room: root.currentRoom
|
||||
showStickers: true
|
||||
showEmoticons: false
|
||||
}
|
||||
@@ -160,7 +166,7 @@ ColumnLayout {
|
||||
id: stickerModel
|
||||
model: stickerPackModel
|
||||
packIndex: 0
|
||||
room: currentRoom
|
||||
room: root.currentRoom
|
||||
}
|
||||
|
||||
EmoticonFilterModel {
|
||||
|
||||
@@ -46,6 +46,7 @@ ApplicationWindow {
|
||||
asset: root.asset
|
||||
author: root.author
|
||||
isLive: true
|
||||
heading: NaN
|
||||
visible: !isNaN(root.latitude) && !isNaN(root.longitude)
|
||||
}
|
||||
MapItemView {
|
||||
|
||||
@@ -6,6 +6,7 @@ import QtQuick.Controls 2.15 as QQC2
|
||||
import QtQuick.Layouts 1.15
|
||||
|
||||
import org.kde.kirigami 2.15 as Kirigami
|
||||
import org.kde.neochat 1.0
|
||||
|
||||
/**
|
||||
* @brief A component that provides a set of actions when a message is hovered in the timeline.
|
||||
@@ -16,6 +17,11 @@ import org.kde.kirigami 2.15 as Kirigami
|
||||
QQC2.Control {
|
||||
id: root
|
||||
|
||||
/**
|
||||
* @brief The current room that user is viewing.
|
||||
*/
|
||||
required property NeoChatRoom currentRoom
|
||||
|
||||
/**
|
||||
* @brief Whether the actions should be shown.
|
||||
*/
|
||||
@@ -108,6 +114,7 @@ QQC2.Control {
|
||||
|
||||
EmojiDialog {
|
||||
id: emojiDialog
|
||||
currentRoom: root.currentRoom
|
||||
showQuickReaction: true
|
||||
onChosen: (emoji) => root.reactClicked(emoji)
|
||||
}
|
||||
|
||||
@@ -24,11 +24,14 @@ MapQuickItem {
|
||||
|
||||
required property bool isLive
|
||||
|
||||
required property real heading
|
||||
|
||||
anchorPoint.x: sourceItem.width / 2
|
||||
anchorPoint.y: sourceItem.height
|
||||
coordinate: QtPositioning.coordinate(root.latitude, root.longitude)
|
||||
autoFadeIn: false
|
||||
sourceItem: Kirigami.Icon {
|
||||
id: mainIcon
|
||||
width: height
|
||||
height: Kirigami.Units.iconSizes.huge
|
||||
source: "gps"
|
||||
@@ -55,5 +58,19 @@ MapQuickItem {
|
||||
source: root.author.avatarSource
|
||||
color: root.author.color
|
||||
}
|
||||
|
||||
Kirigami.Icon {
|
||||
id: headingIcon
|
||||
source: "go-up-symbolic"
|
||||
color: parent.color
|
||||
visible: !isNaN(root.heading) && root.isLive
|
||||
anchors.bottom: mainIcon.top
|
||||
anchors.horizontalCenter: mainIcon.horizontalCenter
|
||||
transform: Rotation {
|
||||
origin.x: headingIcon.width/2
|
||||
origin.y: headingIcon.height + mainIcon.height/2
|
||||
angle: root.heading
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,6 +36,7 @@ Kirigami.Page {
|
||||
}
|
||||
delegate: LocationMapItem {
|
||||
isLive: true
|
||||
heading: NaN
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -28,6 +28,7 @@ LoginStep {
|
||||
id: matrixIdField
|
||||
Kirigami.FormData.label: i18n("Matrix ID:")
|
||||
placeholderText: "@user:matrix.org"
|
||||
Accessible.name: i18n("Matrix ID")
|
||||
onTextChanged: {
|
||||
LoginHelper.matrixId = text
|
||||
}
|
||||
|
||||
@@ -38,6 +38,7 @@ LoginStep {
|
||||
id: passwordField
|
||||
onTextChanged: LoginHelper.password = text
|
||||
enabled: !LoginHelper.isLoggingIn
|
||||
Accessible.name: i18n("Password")
|
||||
|
||||
Component.onCompleted: {
|
||||
passwordField.forceActiveFocus()
|
||||
|
||||
@@ -57,6 +57,7 @@ TimelineContainer {
|
||||
asset: root.asset
|
||||
author: root.author
|
||||
isLive: true
|
||||
heading: NaN
|
||||
}
|
||||
|
||||
TapHandler {
|
||||
|
||||
@@ -50,6 +50,12 @@ TimelineContainer {
|
||||
isReply: root.isReply
|
||||
|
||||
textMessage: root.display
|
||||
|
||||
TapHandler {
|
||||
enabled: !label.hoveredLink
|
||||
acceptedButtons: Qt.LeftButton
|
||||
onLongPressed: root.openContextMenu()
|
||||
}
|
||||
}
|
||||
Loader {
|
||||
Layout.fillWidth: true
|
||||
|
||||
@@ -34,9 +34,9 @@ Item {
|
||||
* - displayName - The display name of the reply author.
|
||||
* - display - The name of the reply author.
|
||||
* - color - The color for the reply author.
|
||||
* - object - The NeoChatUser object for the reply author.
|
||||
* - object - The Quotient::User object for the reply author.
|
||||
*
|
||||
* @sa NeoChatUser
|
||||
* @sa Quotient::User
|
||||
*/
|
||||
required property var author
|
||||
|
||||
|
||||
@@ -27,12 +27,7 @@ TextEdit {
|
||||
/**
|
||||
* @brief Regex for detecting a message with a single emoji.
|
||||
*/
|
||||
readonly property var isEmojiRegex: /^(<span style='.*'>)?(\u00a9|\u00ae|[\u20D0-\u2fff]|[\u3190-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff])+(<\/span>)?$/
|
||||
|
||||
/**
|
||||
* @brief Whether the message is an emoji
|
||||
*/
|
||||
readonly property var isEmoji: isEmojiRegex.test(textMessage)
|
||||
readonly property var isEmoji: /^(<span style='.*'>)?(\u00a9|\u00ae|[\u20D0-\u2fff]|[\u3190-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff])+(<\/span>)?$/
|
||||
|
||||
/**
|
||||
* @brief Regex for detecting a message with a spoiler.
|
||||
@@ -90,10 +85,7 @@ a{
|
||||
color: Kirigami.Theme.textColor
|
||||
selectedTextColor: Kirigami.Theme.highlightedTextColor
|
||||
selectionColor: Kirigami.Theme.highlightColor
|
||||
font {
|
||||
pointSize: !root.isReply && root.isEmoji ? Kirigami.Theme.defaultFont.pointSize * 4 : Kirigami.Theme.defaultFont.pointSize
|
||||
family: root.isEmoji ? 'emoji' : Kirigami.Theme.defaultFont.family
|
||||
}
|
||||
font.pointSize: !root.isReply && isEmoji.test(textMessage) ? Kirigami.Theme.defaultFont.pointSize * 4 : Kirigami.Theme.defaultFont.pointSize
|
||||
selectByMouse: !Kirigami.Settings.isMobile
|
||||
readOnly: true
|
||||
wrapMode: Text.Wrap
|
||||
|
||||
@@ -54,9 +54,9 @@ ColumnLayout {
|
||||
* - displayName - The display name of the author.
|
||||
* - display - The name of the author.
|
||||
* - color - The color for the author.
|
||||
* - object - The NeoChatUser object for the author.
|
||||
* - object - The Quotient::User object for the author.
|
||||
*
|
||||
* @sa NeoChatUser
|
||||
* @sa Quotient::User
|
||||
*/
|
||||
required property var author
|
||||
|
||||
@@ -137,9 +137,9 @@ ColumnLayout {
|
||||
* - displayName - The display name of the reply author.
|
||||
* - display - The name of the reply author.
|
||||
* - color - The color for the reply author.
|
||||
* - object - The NeoChatUser object for the reply author.
|
||||
* - object - The Quotient::User object for the reply author.
|
||||
*
|
||||
* @sa NeoChatUser
|
||||
* @sa Quotient::User
|
||||
*/
|
||||
required property var replyAuthor
|
||||
|
||||
@@ -485,7 +485,7 @@ ColumnLayout {
|
||||
|
||||
Layout.maximumWidth: contentMaxWidth
|
||||
|
||||
active: root.isReply
|
||||
active: root.isReply && root.reply
|
||||
visible: active
|
||||
|
||||
sourceComponent: ReplyComponent {
|
||||
|
||||
@@ -16,9 +16,19 @@ import org.kde.neochat 1.0
|
||||
QQC2.ScrollView {
|
||||
id: root
|
||||
required property NeoChatRoom currentRoom
|
||||
readonly property bool isLoaded: root.width * root.height > 10
|
||||
onCurrentRoomChanged: {
|
||||
roomChanging = true;
|
||||
applicationWindow().hoverLinkIndicator.text = "";
|
||||
messageListView.positionViewAtBeginning();
|
||||
hasScrolledUpBefore = false;
|
||||
roomChanging = true;
|
||||
}
|
||||
property bool roomChanging: false
|
||||
readonly property bool atYEnd: messageListView.atYEnd
|
||||
|
||||
/// Used to determine if scrolling to the bottom should mark the message as unread
|
||||
property bool hasScrolledUpBefore: false;
|
||||
|
||||
signal focusChatBox()
|
||||
|
||||
ListView {
|
||||
@@ -38,7 +48,7 @@ QQC2.ScrollView {
|
||||
interactive: Kirigami.Settings.isMobile
|
||||
bottomMargin: Kirigami.Units.largeSpacing + Math.round(Kirigami.Theme.defaultFont.pointSize * 2)
|
||||
|
||||
model: !isLoaded ? undefined : collapseStateProxyModel
|
||||
model: collapseStateProxyModel
|
||||
|
||||
MessageEventModel {
|
||||
id: messageEventModel
|
||||
@@ -70,13 +80,15 @@ QQC2.ScrollView {
|
||||
messageEventModel.fetchMore(messageEventModel.index(0, 0));
|
||||
}
|
||||
|
||||
onAtYEndChanged: if (atYEnd && hasScrolledUpBefore) {
|
||||
if (QQC2.ApplicationWindow.window && (QQC2.ApplicationWindow.window.visibility !== QQC2.ApplicationWindow.Hidden)) {
|
||||
root.currentRoom.markAllMessagesAsRead();
|
||||
onAtYEndChanged: if (!root.roomChanging) {
|
||||
if (atYEnd && root.hasScrolledUpBefore) {
|
||||
if (QQC2.ApplicationWindow.window && (QQC2.ApplicationWindow.window.visibility !== QQC2.ApplicationWindow.Hidden)) {
|
||||
root.currentRoom.markAllMessagesAsRead();
|
||||
}
|
||||
root.hasScrolledUpBefore = false;
|
||||
} else if (!atYEnd) {
|
||||
root.hasScrolledUpBefore = true;
|
||||
}
|
||||
hasScrolledUpBefore = false;
|
||||
} else if (!atYEnd) {
|
||||
hasScrolledUpBefore = true;
|
||||
}
|
||||
|
||||
// Not rendered because the sections are part of the TimelineContainer.qml, this is only so that items have the section property available for use by sectionBanner.
|
||||
@@ -310,6 +322,7 @@ QQC2.ScrollView {
|
||||
y: delegate ? delegate.mapToItem(parent, 0, 0).y + delegate.bubbleY - height + Kirigami.Units.smallSpacing : 0
|
||||
width: delegate ? delegate.bubbleWidth : Kirigami.Units.gridUnit * 4
|
||||
|
||||
currentRoom: root.currentRoom
|
||||
showActions: delegate && delegate.hovered
|
||||
verified: delegate && delegate.verified
|
||||
editable: delegate && delegate.author.isLocalUser && (delegate.delegateType === MessageEventModel.Emote || delegate.delegateType === MessageEventModel.Message)
|
||||
|
||||
@@ -11,6 +11,11 @@ import org.kde.neochat 1.0
|
||||
QQC2.Popup {
|
||||
id: emojiPopup
|
||||
|
||||
/**
|
||||
* @brief The current room that user is viewing.
|
||||
*/
|
||||
property NeoChatRoom currentRoom
|
||||
|
||||
property bool includeCustom: false
|
||||
property bool closeOnChosen: true
|
||||
property bool showQuickReaction: false
|
||||
@@ -52,8 +57,10 @@ QQC2.Popup {
|
||||
contentItem: EmojiPicker {
|
||||
id: emojiPicker
|
||||
height: 400
|
||||
currentRoom: root.currentRoom
|
||||
includeCustom: emojiPopup.includeCustom
|
||||
showQuickReaction: emojiPopup.showQuickReaction
|
||||
currentRoom: RoomManager.currentRoom
|
||||
onChosen: {
|
||||
emojiPopup.chosen(emoji)
|
||||
if (emojiPopup.closeOnChosen) emojiPopup.close()
|
||||
|
||||
@@ -11,7 +11,7 @@ import org.kde.kirigamiaddons.labs.components 1.0 as KirigamiComponents
|
||||
|
||||
import org.kde.neochat 1.0
|
||||
|
||||
Kirigami.OverlaySheet {
|
||||
Kirigami.Dialog {
|
||||
id: root
|
||||
|
||||
signal closed()
|
||||
@@ -26,6 +26,9 @@ Kirigami.OverlaySheet {
|
||||
topPadding: 0
|
||||
bottomPadding: 0
|
||||
|
||||
standardButtons: Kirigami.Dialog.NoButton
|
||||
|
||||
width: Math.min(applicationWindow().width, Kirigami.Units.gridUnit * 24)
|
||||
title: i18nc("@title:menu Account detail dialog", "Account detail")
|
||||
|
||||
contentItem: ColumnLayout {
|
||||
@@ -196,10 +199,5 @@ Kirigami.OverlaySheet {
|
||||
}
|
||||
}
|
||||
}
|
||||
@OVERLAYSHEET_OPEN@: {
|
||||
if (!sheetOpen) {
|
||||
closed()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -193,6 +193,12 @@ Kirigami.Page {
|
||||
width: Kirigami.Units.iconSizes.small
|
||||
height: Kirigami.Units.iconSizes.small
|
||||
}
|
||||
text: roomListModel.categoryVisible(section) ? i18nc("Collapse <section name>", "Collapse %1", roomListModel.categoryName(section)) : i18nc("Expand <section name", "Expand %1", roomListModel.categoryName(section))
|
||||
display: QQC2.Button.IconOnly
|
||||
|
||||
QQC2.ToolTip.text: text
|
||||
QQC2.ToolTip.visible: hovered
|
||||
QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay
|
||||
|
||||
onClicked: roomListModel.setCategoryVisible(section, !roomListModel.categoryVisible(section))
|
||||
}
|
||||
|
||||
@@ -31,6 +31,8 @@ Delegates.RoundedItemDelegate {
|
||||
|
||||
readonly property bool hasNotifications: notificationCount > 0
|
||||
|
||||
Accessible.name: root.displayName
|
||||
|
||||
onPressAndHold: createRoomListContextMenu()
|
||||
|
||||
TapHandler {
|
||||
@@ -65,7 +67,6 @@ Delegates.RoundedItemDelegate {
|
||||
text: root.displayName
|
||||
elide: Text.ElideRight
|
||||
font.weight: root.hasNotifications ? Font.Bold : Font.Normal
|
||||
textFormat: Text.PlainText
|
||||
|
||||
Layout.fillWidth: true
|
||||
Layout.alignment: subtitle.visible ? Qt.AlignLeft | Qt.AlignBottom : Qt.AlignLeft | Qt.AlignVCenter
|
||||
|
||||
@@ -19,25 +19,17 @@ Kirigami.Page {
|
||||
/// Not readonly because of the separate window view.
|
||||
property NeoChatRoom currentRoom: RoomManager.currentRoom
|
||||
property bool loading: !root.currentRoom || (root.currentRoom.timelineSize === 0 && !root.currentRoom.allHistoryLoaded)
|
||||
/// Used to determine if scrolling to the bottom should mark the message as unread
|
||||
property bool hasScrolledUpBefore: false;
|
||||
|
||||
/// Disable cancel shortcut. Used by the separate window since it provides its own cancel implementation.
|
||||
property bool disableCancelShortcut: false
|
||||
|
||||
title: currentRoom.displayName
|
||||
title: root.currentRoom.displayName
|
||||
focus: true
|
||||
padding: 0
|
||||
|
||||
KeyNavigation.left: pageStack.get(0)
|
||||
|
||||
onCurrentRoomChanged: {
|
||||
if (!timelineViewLoader.item) {
|
||||
return
|
||||
}
|
||||
applicationWindow().hoverLinkIndicator.text = "";
|
||||
timelineViewLoader.item.positionViewAtBeginning();
|
||||
hasScrolledUpBefore = false;
|
||||
if (!Kirigami.Settings.isMobile && chatBoxLoader.item) {
|
||||
chatBoxLoader.item.forceActiveFocus();
|
||||
}
|
||||
@@ -66,7 +58,7 @@ Kirigami.Page {
|
||||
Loader {
|
||||
id: timelineViewLoader
|
||||
anchors.fill: parent
|
||||
active: currentRoom && !currentRoom.isInvite && !root.loading
|
||||
active: root.currentRoom && !root.currentRoom.isInvite && !root.loading
|
||||
sourceComponent: TimelineView {
|
||||
id: timelineView
|
||||
currentRoom: root.currentRoom
|
||||
@@ -80,7 +72,7 @@ Kirigami.Page {
|
||||
|
||||
Loader {
|
||||
id: invitationLoader
|
||||
active: currentRoom && currentRoom.isInvite
|
||||
active: root.currentRoom && root.currentRoom.isInvite
|
||||
anchors.centerIn: parent
|
||||
sourceComponent: InvitationView {
|
||||
currentRoom: root.currentRoom
|
||||
@@ -106,7 +98,7 @@ Kirigami.Page {
|
||||
sourceComponent: ChatBox {
|
||||
id: chatBox
|
||||
width: parent.width
|
||||
currentRoom: currentRoom
|
||||
currentRoom: root.currentRoom
|
||||
onMessageSent: {
|
||||
if (!timelineViewLoader.item.atYEnd) {
|
||||
timelineViewLoader.item.goToLastMessage();
|
||||
@@ -140,9 +132,9 @@ Kirigami.Page {
|
||||
Shortcut {
|
||||
sequence: StandardKey.Cancel
|
||||
onActivated: {
|
||||
if (!timelineViewLoader.item.atYEnd || currentRoom.hasUnreadMessages) {
|
||||
if (!timelineViewLoader.item.atYEnd || root.currentRoom.hasUnreadMessages) {
|
||||
goToLastMessage();
|
||||
currentRoom.markAllMessagesAsRead();
|
||||
root.currentRoom.markAllMessagesAsRead();
|
||||
} else {
|
||||
applicationWindow().pageStack.get(0).forceActiveFocus();
|
||||
}
|
||||
|
||||
@@ -156,8 +156,7 @@ Kirigami.OverlayDrawer {
|
||||
Layout.fillWidth: true
|
||||
|
||||
onClicked: {
|
||||
applicationWindow().pageStack.layers.push("qrc:/DevtoolsPage.qml", {room: room}, {title: i18n("Developer Tools")})
|
||||
roomDrawer.close();
|
||||
applicationWindow().pageStack.pushDialogLayer("qrc:/DevtoolsPage.qml", {room: room}, {title: i18n("Developer Tools")})
|
||||
}
|
||||
}
|
||||
|
||||
@@ -229,8 +228,7 @@ Kirigami.OverlayDrawer {
|
||||
icon.name: "list-add-user"
|
||||
|
||||
onClicked: {
|
||||
applicationWindow().pageStack.layers.push("qrc:/InviteUserPage.qml", {room: roomDrawer.room})
|
||||
roomDrawer.close();
|
||||
applicationWindow().pageStack.pushDialogLayer("qrc:/InviteUserPage.qml", {room: roomDrawer.room}, {title: i18nc("@title", "Invite a User")})
|
||||
}
|
||||
|
||||
QQC2.ToolTip.text: i18n("Invite user to room")
|
||||
|
||||
@@ -30,7 +30,7 @@ Kirigami.ScrollablePage {
|
||||
|
||||
MobileForm.FormCheckDelegate {
|
||||
id: closeDelegate
|
||||
text: i18n("Close to system tray")
|
||||
text: i18n("Show in System Tray")
|
||||
checked: Config.systemTray
|
||||
visible: Controller.supportSystemTray
|
||||
enabled: !Config.isSystemTrayImmutable
|
||||
|
||||
@@ -74,7 +74,7 @@
|
||||
<file alias="RoomDrawer.qml">qml/Panel/RoomDrawer.qml</file>
|
||||
<file alias="DirectChatDrawerHeader.qml">qml/Panel/DirectChatDrawerHeader.qml</file>
|
||||
<file alias="GroupChatDrawerHeader.qml">qml/Panel/GroupChatDrawerHeader.qml</file>
|
||||
<file alias="UserDetailDialog.qml">@CMAKE_CURRENT_BINARY_DIR@/qml/Dialog/UserDetailDialog.qml</file>
|
||||
<file alias="UserDetailDialog.qml">qml/Dialog/UserDetailDialog.qml</file>
|
||||
<file alias="CreateRoomDialog.qml">qml/Dialog/CreateRoomDialog.qml</file>
|
||||
<file alias="CreateSpaceDialog.qml">qml/Dialog/CreateSpaceDialog.qml</file>
|
||||
<file alias="EmojiDialog.qml">qml/Dialog/EmojiDialog.qml</file>
|
||||
|
||||
@@ -4,8 +4,9 @@
|
||||
#include "texthandler.h"
|
||||
|
||||
#include <QDebug>
|
||||
#include <QUrl>
|
||||
#include <QGuiApplication>
|
||||
#include <QStringLiteral>
|
||||
#include <QUrl>
|
||||
|
||||
#include <Quotient/events/roommessageevent.h>
|
||||
#include <Quotient/util.h>
|
||||
@@ -15,6 +16,8 @@
|
||||
|
||||
#include <Kirigami/PlatformTheme>
|
||||
|
||||
#include "utils.h"
|
||||
|
||||
static const QStringList allowedTags = {
|
||||
QStringLiteral("font"), QStringLiteral("del"), QStringLiteral("h1"), QStringLiteral("h2"), QStringLiteral("h3"), QStringLiteral("h4"),
|
||||
QStringLiteral("h5"), QStringLiteral("h6"), QStringLiteral("blockquote"), QStringLiteral("p"), QStringLiteral("a"), QStringLiteral("ul"),
|
||||
@@ -135,9 +138,9 @@ QString TextHandler::handleRecieveRichText(Qt::TextFormat inputFormat, const Neo
|
||||
if (event != nullptr) {
|
||||
auto e = eventCast<const Quotient::RoomMessageEvent>(event);
|
||||
if (e->msgtype() == Quotient::MessageEventType::Emote) {
|
||||
auto author = static_cast<NeoChatUser *>(room->user(e->senderId()));
|
||||
auto author = room->user(e->senderId());
|
||||
QString emoteString = QStringLiteral("* <a href=\"https://matrix.to/#/") + e->senderId() + QStringLiteral("\" style=\"color:")
|
||||
+ author->color().name() + QStringLiteral("\">") + author->displayname(room) + QStringLiteral("</a> ");
|
||||
+ Utils::getUserColor(author->hueF()).name() + QStringLiteral("\">") + author->displayname(room) + QStringLiteral("</a> ");
|
||||
if (outputString.startsWith(QStringLiteral("<p>"))) {
|
||||
outputString.insert(3, emoteString);
|
||||
} else {
|
||||
|
||||
23
src/utils.h
Normal file
23
src/utils.h
Normal file
@@ -0,0 +1,23 @@
|
||||
// SPDX-FileCopyrightText: 2023 James Graham <james.h.graham@protonmail.com>
|
||||
// SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
||||
|
||||
#include <QColor>
|
||||
#include <QGuiApplication>
|
||||
#include <QPalette>
|
||||
|
||||
namespace Utils
|
||||
{
|
||||
|
||||
/**
|
||||
* @brief Get a color for a user from a hueF value.
|
||||
*
|
||||
* The lightness of the color will be modified depending on the current palette in
|
||||
* order to maintain contrast.
|
||||
*/
|
||||
inline QColor getUserColor(qreal hueF)
|
||||
{
|
||||
const auto lightness = static_cast<QGuiApplication *>(QGuiApplication::instance())->palette().color(QPalette::Active, QPalette::Window).lightnessF();
|
||||
// https://github.com/quotient-im/libQuotient/wiki/User-color-coding-standard-draft-proposal
|
||||
return QColor::fromHslF(hueF, 1, -0.7 * lightness + 0.9, 1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user